repo_name
stringclasses 6
values | pr_number
int64 512
78.9k
| pr_title
stringlengths 3
144
| pr_description
stringlengths 0
30.3k
| author
stringlengths 2
21
| date_created
timestamp[ns, tz=UTC] | date_merged
timestamp[ns, tz=UTC] | previous_commit
stringlengths 40
40
| pr_commit
stringlengths 40
40
| query
stringlengths 17
30.4k
| filepath
stringlengths 9
210
| before_content
stringlengths 0
112M
| after_content
stringlengths 0
112M
| label
int64 -1
1
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M13-RTM/b91230/b91230.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//COMMAND LINE: csc /nologo /optimize+ /debug- /w:0 bug.cs
using System;
public struct AA
{
static int Main()
{
sbyte local2 = 0;
while (
(new bool[5, 5])[Math.Max(local2, local2), local2]
) { }
return 100;
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//COMMAND LINE: csc /nologo /optimize+ /debug- /w:0 bug.cs
using System;
public struct AA
{
static int Main()
{
sbyte local2 = 0;
while (
(new bool[5, 5])[Math.Max(local2, local2), local2]
) { }
return 100;
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/Common/src/System/Data/Common/SQLResource.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//------------------------------------------------------------------------------
namespace System.Data.SqlTypes
{
internal static class SQLResource
{
internal static string NullString => SR.SqlMisc_NullString;
internal static string MessageString => SR.SqlMisc_MessageString;
internal static string ArithOverflowMessage => SR.SqlMisc_ArithOverflowMessage;
internal static string DivideByZeroMessage => SR.SqlMisc_DivideByZeroMessage;
internal static string NullValueMessage => SR.SqlMisc_NullValueMessage;
internal static string TruncationMessage => SR.SqlMisc_TruncationMessage;
internal static string DateTimeOverflowMessage => SR.SqlMisc_DateTimeOverflowMessage;
internal static string ConcatDiffCollationMessage => SR.SqlMisc_ConcatDiffCollationMessage;
internal static string CompareDiffCollationMessage => SR.SqlMisc_CompareDiffCollationMessage;
internal static string InvalidFlagMessage => SR.SqlMisc_InvalidFlagMessage;
internal static string NumeToDecOverflowMessage => SR.SqlMisc_NumeToDecOverflowMessage;
internal static string ConversionOverflowMessage => SR.SqlMisc_ConversionOverflowMessage;
internal static string InvalidDateTimeMessage => SR.SqlMisc_InvalidDateTimeMessage;
internal static string TimeZoneSpecifiedMessage => SR.SqlMisc_TimeZoneSpecifiedMessage;
internal static string InvalidArraySizeMessage => SR.SqlMisc_InvalidArraySizeMessage;
internal static string InvalidPrecScaleMessage => SR.SqlMisc_InvalidPrecScaleMessage;
internal static string FormatMessage => SR.SqlMisc_FormatMessage;
internal static string NotFilledMessage => SR.SqlMisc_NotFilledMessage;
internal static string AlreadyFilledMessage => SR.SqlMisc_AlreadyFilledMessage;
internal static string ClosedXmlReaderMessage => SR.SqlMisc_ClosedXmlReaderMessage;
internal static string InvalidOpStreamClosed(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamClosed, method);
}
internal static string InvalidOpStreamNonWritable(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamNonWritable, method);
}
internal static string InvalidOpStreamNonReadable(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamNonReadable, method);
}
internal static string InvalidOpStreamNonSeekable(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamNonSeekable, method);
}
} // SqlResource
} // namespace System
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//------------------------------------------------------------------------------
namespace System.Data.SqlTypes
{
internal static class SQLResource
{
internal static string NullString => SR.SqlMisc_NullString;
internal static string MessageString => SR.SqlMisc_MessageString;
internal static string ArithOverflowMessage => SR.SqlMisc_ArithOverflowMessage;
internal static string DivideByZeroMessage => SR.SqlMisc_DivideByZeroMessage;
internal static string NullValueMessage => SR.SqlMisc_NullValueMessage;
internal static string TruncationMessage => SR.SqlMisc_TruncationMessage;
internal static string DateTimeOverflowMessage => SR.SqlMisc_DateTimeOverflowMessage;
internal static string ConcatDiffCollationMessage => SR.SqlMisc_ConcatDiffCollationMessage;
internal static string CompareDiffCollationMessage => SR.SqlMisc_CompareDiffCollationMessage;
internal static string InvalidFlagMessage => SR.SqlMisc_InvalidFlagMessage;
internal static string NumeToDecOverflowMessage => SR.SqlMisc_NumeToDecOverflowMessage;
internal static string ConversionOverflowMessage => SR.SqlMisc_ConversionOverflowMessage;
internal static string InvalidDateTimeMessage => SR.SqlMisc_InvalidDateTimeMessage;
internal static string TimeZoneSpecifiedMessage => SR.SqlMisc_TimeZoneSpecifiedMessage;
internal static string InvalidArraySizeMessage => SR.SqlMisc_InvalidArraySizeMessage;
internal static string InvalidPrecScaleMessage => SR.SqlMisc_InvalidPrecScaleMessage;
internal static string FormatMessage => SR.SqlMisc_FormatMessage;
internal static string NotFilledMessage => SR.SqlMisc_NotFilledMessage;
internal static string AlreadyFilledMessage => SR.SqlMisc_AlreadyFilledMessage;
internal static string ClosedXmlReaderMessage => SR.SqlMisc_ClosedXmlReaderMessage;
internal static string InvalidOpStreamClosed(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamClosed, method);
}
internal static string InvalidOpStreamNonWritable(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamNonWritable, method);
}
internal static string InvalidOpStreamNonReadable(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamNonReadable, method);
}
internal static string InvalidOpStreamNonSeekable(string method)
{
return SR.Format(SR.SqlMisc_InvalidOpStreamNonSeekable, method);
}
} // SqlResource
} // namespace System
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/MultiplyBySelectedScalarWideningUpperAndAdd.Vector128.Int32.Vector64.Int32.1.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.Arm;
namespace JIT.HardwareIntrinsics.Arm
{
public static partial class Program
{
private static void MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1()
{
var test = new SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1();
if (test.IsSupported)
{
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates basic functionality works, using Load
test.RunBasicScenario_Load();
}
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates calling via reflection works, using Load
test.RunReflectionScenario_Load();
}
// Validates passing a static member works
test.RunClsVarScenario();
if (AdvSimd.IsSupported)
{
// Validates passing a static member works, using pinning and Load
test.RunClsVarScenario_Load();
}
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates passing a local works, using Load
test.RunLclVarScenario_Load();
}
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local class works, using pinning and Load
test.RunClassLclFldScenario_Load();
}
// Validates passing an instance member of a class works
test.RunClassFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a class works, using pinning and Load
test.RunClassFldScenario_Load();
}
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local struct works, using pinning and Load
test.RunStructLclFldScenario_Load();
}
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a struct works, using pinning and Load
test.RunStructFldScenario_Load();
}
}
else
{
// Validates we throw on unsupported hardware
test.RunUnsupportedScenario();
}
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] inArray3;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle inHandle3;
private GCHandle outHandle;
private ulong alignment;
public DataTable(Int64[] inArray1, Int32[] inArray2, Int32[] inArray3, Int64[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int64>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int32>();
int sizeOfinArray3 = inArray3.Length * Unsafe.SizeOf<Int32>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int64>();
if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfinArray3 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.inArray3 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.inHandle3 = GCHandle.Alloc(this.inArray3, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int64, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int32, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray3Ptr), ref Unsafe.As<Int32, byte>(ref inArray3[0]), (uint)sizeOfinArray3);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray3Ptr => Align((byte*)(inHandle3.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
inHandle3.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<Int64> _fld1;
public Vector128<Int32> _fld2;
public Vector64<Int32> _fld3;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref testStruct._fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int32>, byte>(ref testStruct._fld2), ref Unsafe.As<Int32, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int32>>());
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int32>, byte>(ref testStruct._fld3), ref Unsafe.As<Int32, byte>(ref _data3[0]), (uint)Unsafe.SizeOf<Vector64<Int32>>());
return testStruct;
}
public void RunStructFldScenario(SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1 testClass)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(_fld1, _fld2, _fld3, 1);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, _fld3, testClass._dataTable.outArrayPtr);
}
public void RunStructFldScenario_Load(SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1 testClass)
{
fixed (Vector128<Int64>* pFld1 = &_fld1)
fixed (Vector128<Int32>* pFld2 = &_fld2)
fixed (Vector64<Int32>* pFld3 = &_fld3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pFld1)),
AdvSimd.LoadVector128((Int32*)(pFld2)),
AdvSimd.LoadVector64((Int32*)(pFld3)),
1
);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, _fld3, testClass._dataTable.outArrayPtr);
}
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Int64>>() / sizeof(Int64);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Int32>>() / sizeof(Int32);
private static readonly int Op3ElementCount = Unsafe.SizeOf<Vector64<Int32>>() / sizeof(Int32);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Int64>>() / sizeof(Int64);
private static readonly byte Imm = 1;
private static Int64[] _data1 = new Int64[Op1ElementCount];
private static Int32[] _data2 = new Int32[Op2ElementCount];
private static Int32[] _data3 = new Int32[Op3ElementCount];
private static Vector128<Int64> _clsVar1;
private static Vector128<Int32> _clsVar2;
private static Vector64<Int32> _clsVar3;
private Vector128<Int64> _fld1;
private Vector128<Int32> _fld2;
private Vector64<Int32> _fld3;
private DataTable _dataTable;
static SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _clsVar1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int32>, byte>(ref _clsVar2), ref Unsafe.As<Int32, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int32>>());
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int32>, byte>(ref _clsVar3), ref Unsafe.As<Int32, byte>(ref _data3[0]), (uint)Unsafe.SizeOf<Vector64<Int32>>());
}
public SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int32>, byte>(ref _fld2), ref Unsafe.As<Int32, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int32>>());
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int32>, byte>(ref _fld3), ref Unsafe.As<Int32, byte>(ref _data3[0]), (uint)Unsafe.SizeOf<Vector64<Int32>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
_dataTable = new DataTable(_data1, _data2, _data3, new Int64[RetElementCount], LargestVectorSize);
}
public bool IsSupported => AdvSimd.IsSupported;
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
Unsafe.Read<Vector128<Int64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int32>>(_dataTable.inArray2Ptr),
Unsafe.Read<Vector64<Int32>>(_dataTable.inArray3Ptr),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunBasicScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((Int32*)(_dataTable.inArray2Ptr)),
AdvSimd.LoadVector64((Int32*)(_dataTable.inArray3Ptr)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd), new Type[] { typeof(Vector128<Int64>), typeof(Vector128<Int32>), typeof(Vector64<Int32>), typeof(byte) })
.Invoke(null, new object[] {
Unsafe.Read<Vector128<Int64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int32>>(_dataTable.inArray2Ptr),
Unsafe.Read<Vector64<Int32>>(_dataTable.inArray3Ptr),
(byte)1
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Int64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load));
var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd), new Type[] { typeof(Vector128<Int64>), typeof(Vector128<Int32>), typeof(Vector64<Int32>), typeof(byte) })
.Invoke(null, new object[] {
AdvSimd.LoadVector128((Int64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((Int32*)(_dataTable.inArray2Ptr)),
AdvSimd.LoadVector64((Int32*)(_dataTable.inArray3Ptr)),
(byte)1
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Int64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
_clsVar1,
_clsVar2,
_clsVar3,
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _clsVar3, _dataTable.outArrayPtr);
}
public void RunClsVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load));
fixed (Vector128<Int64>* pClsVar1 = &_clsVar1)
fixed (Vector128<Int32>* pClsVar2 = &_clsVar2)
fixed (Vector64<Int32>* pClsVar3 = &_clsVar3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pClsVar1)),
AdvSimd.LoadVector128((Int32*)(pClsVar2)),
AdvSimd.LoadVector64((Int32*)(pClsVar3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _clsVar3, _dataTable.outArrayPtr);
}
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<Int64>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<Int32>>(_dataTable.inArray2Ptr);
var op3 = Unsafe.Read<Vector64<Int32>>(_dataTable.inArray3Ptr);
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(op1, op2, op3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, op3, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load));
var op1 = AdvSimd.LoadVector128((Int64*)(_dataTable.inArray1Ptr));
var op2 = AdvSimd.LoadVector128((Int32*)(_dataTable.inArray2Ptr));
var op3 = AdvSimd.LoadVector64((Int32*)(_dataTable.inArray3Ptr));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(op1, op2, op3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, op3, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1();
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(test._fld1, test._fld2, test._fld3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load));
var test = new SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1();
fixed (Vector128<Int64>* pFld1 = &test._fld1)
fixed (Vector128<Int32>* pFld2 = &test._fld2)
fixed (Vector64<Int32>* pFld3 = &test._fld3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pFld1)),
AdvSimd.LoadVector128((Int32*)(pFld2)),
AdvSimd.LoadVector64((Int32*)(pFld3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(_fld1, _fld2, _fld3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _fld3, _dataTable.outArrayPtr);
}
public void RunClassFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load));
fixed (Vector128<Int64>* pFld1 = &_fld1)
fixed (Vector128<Int32>* pFld2 = &_fld2)
fixed (Vector64<Int32>* pFld3 = &_fld3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pFld1)),
AdvSimd.LoadVector128((Int32*)(pFld2)),
AdvSimd.LoadVector64((Int32*)(pFld3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _fld3, _dataTable.outArrayPtr);
}
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(test._fld1, test._fld2, test._fld3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load));
var test = TestStruct.Create();
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(&test._fld1)),
AdvSimd.LoadVector128((Int32*)(&test._fld2)),
AdvSimd.LoadVector64((Int32*)(&test._fld3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
public void RunStructFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load));
var test = TestStruct.Create();
test.RunStructFldScenario_Load(this);
}
public void RunUnsupportedScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario));
bool succeeded = false;
try
{
RunBasicScenario_UnsafeRead();
}
catch (PlatformNotSupportedException)
{
succeeded = true;
}
if (!succeeded)
{
Succeeded = false;
}
}
private void ValidateResult(Vector128<Int64> op1, Vector128<Int32> op2, Vector64<Int32> op3, void* result, [CallerMemberName] string method = "")
{
Int64[] inArray1 = new Int64[Op1ElementCount];
Int32[] inArray2 = new Int32[Op2ElementCount];
Int32[] inArray3 = new Int32[Op3ElementCount];
Int64[] outArray = new Int64[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<Int32, byte>(ref inArray2[0]), op2);
Unsafe.WriteUnaligned(ref Unsafe.As<Int32, byte>(ref inArray3[0]), op3);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int64>>());
ValidateResult(inArray1, inArray2, inArray3, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* op3, void* result, [CallerMemberName] string method = "")
{
Int64[] inArray1 = new Int64[Op1ElementCount];
Int32[] inArray2 = new Int32[Op2ElementCount];
Int32[] inArray3 = new Int32[Op3ElementCount];
Int64[] outArray = new Int64[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Int64>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int32, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Int32>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int32, byte>(ref inArray3[0]), ref Unsafe.AsRef<byte>(op3), (uint)Unsafe.SizeOf<Vector64<Int32>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int64>>());
ValidateResult(inArray1, inArray2, inArray3, outArray, method);
}
private void ValidateResult(Int64[] firstOp, Int32[] secondOp, Int32[] thirdOp, Int64[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
for (var i = 0; i < RetElementCount; i++)
{
if (Helpers.MultiplyByScalarWideningUpperAndAdd(firstOp, secondOp, thirdOp[Imm], i) != result[i])
{
succeeded = false;
break;
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd)}.{nameof(AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd)}<Int64>(Vector128<Int64>, Vector128<Int32>, Vector64<Int32>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" firstOp: ({string.Join(", ", firstOp)})");
TestLibrary.TestFramework.LogInformation($"secondOp: ({string.Join(", ", secondOp)})");
TestLibrary.TestFramework.LogInformation($" thirdOp: ({string.Join(", ", thirdOp)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.Arm;
namespace JIT.HardwareIntrinsics.Arm
{
public static partial class Program
{
private static void MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1()
{
var test = new SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1();
if (test.IsSupported)
{
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates basic functionality works, using Load
test.RunBasicScenario_Load();
}
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates calling via reflection works, using Load
test.RunReflectionScenario_Load();
}
// Validates passing a static member works
test.RunClsVarScenario();
if (AdvSimd.IsSupported)
{
// Validates passing a static member works, using pinning and Load
test.RunClsVarScenario_Load();
}
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates passing a local works, using Load
test.RunLclVarScenario_Load();
}
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local class works, using pinning and Load
test.RunClassLclFldScenario_Load();
}
// Validates passing an instance member of a class works
test.RunClassFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a class works, using pinning and Load
test.RunClassFldScenario_Load();
}
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local struct works, using pinning and Load
test.RunStructLclFldScenario_Load();
}
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a struct works, using pinning and Load
test.RunStructFldScenario_Load();
}
}
else
{
// Validates we throw on unsupported hardware
test.RunUnsupportedScenario();
}
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] inArray3;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle inHandle3;
private GCHandle outHandle;
private ulong alignment;
public DataTable(Int64[] inArray1, Int32[] inArray2, Int32[] inArray3, Int64[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int64>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int32>();
int sizeOfinArray3 = inArray3.Length * Unsafe.SizeOf<Int32>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int64>();
if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfinArray3 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.inArray3 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.inHandle3 = GCHandle.Alloc(this.inArray3, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int64, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int32, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray3Ptr), ref Unsafe.As<Int32, byte>(ref inArray3[0]), (uint)sizeOfinArray3);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray3Ptr => Align((byte*)(inHandle3.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
inHandle3.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<Int64> _fld1;
public Vector128<Int32> _fld2;
public Vector64<Int32> _fld3;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref testStruct._fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int32>, byte>(ref testStruct._fld2), ref Unsafe.As<Int32, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int32>>());
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int32>, byte>(ref testStruct._fld3), ref Unsafe.As<Int32, byte>(ref _data3[0]), (uint)Unsafe.SizeOf<Vector64<Int32>>());
return testStruct;
}
public void RunStructFldScenario(SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1 testClass)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(_fld1, _fld2, _fld3, 1);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, _fld3, testClass._dataTable.outArrayPtr);
}
public void RunStructFldScenario_Load(SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1 testClass)
{
fixed (Vector128<Int64>* pFld1 = &_fld1)
fixed (Vector128<Int32>* pFld2 = &_fld2)
fixed (Vector64<Int32>* pFld3 = &_fld3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pFld1)),
AdvSimd.LoadVector128((Int32*)(pFld2)),
AdvSimd.LoadVector64((Int32*)(pFld3)),
1
);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, _fld3, testClass._dataTable.outArrayPtr);
}
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Int64>>() / sizeof(Int64);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Int32>>() / sizeof(Int32);
private static readonly int Op3ElementCount = Unsafe.SizeOf<Vector64<Int32>>() / sizeof(Int32);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Int64>>() / sizeof(Int64);
private static readonly byte Imm = 1;
private static Int64[] _data1 = new Int64[Op1ElementCount];
private static Int32[] _data2 = new Int32[Op2ElementCount];
private static Int32[] _data3 = new Int32[Op3ElementCount];
private static Vector128<Int64> _clsVar1;
private static Vector128<Int32> _clsVar2;
private static Vector64<Int32> _clsVar3;
private Vector128<Int64> _fld1;
private Vector128<Int32> _fld2;
private Vector64<Int32> _fld3;
private DataTable _dataTable;
static SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _clsVar1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int32>, byte>(ref _clsVar2), ref Unsafe.As<Int32, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int32>>());
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int32>, byte>(ref _clsVar3), ref Unsafe.As<Int32, byte>(ref _data3[0]), (uint)Unsafe.SizeOf<Vector64<Int32>>());
}
public SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int32>, byte>(ref _fld2), ref Unsafe.As<Int32, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int32>>());
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int32>, byte>(ref _fld3), ref Unsafe.As<Int32, byte>(ref _data3[0]), (uint)Unsafe.SizeOf<Vector64<Int32>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt32(); }
for (var i = 0; i < Op3ElementCount; i++) { _data3[i] = TestLibrary.Generator.GetInt32(); }
_dataTable = new DataTable(_data1, _data2, _data3, new Int64[RetElementCount], LargestVectorSize);
}
public bool IsSupported => AdvSimd.IsSupported;
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
Unsafe.Read<Vector128<Int64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int32>>(_dataTable.inArray2Ptr),
Unsafe.Read<Vector64<Int32>>(_dataTable.inArray3Ptr),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunBasicScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((Int32*)(_dataTable.inArray2Ptr)),
AdvSimd.LoadVector64((Int32*)(_dataTable.inArray3Ptr)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd), new Type[] { typeof(Vector128<Int64>), typeof(Vector128<Int32>), typeof(Vector64<Int32>), typeof(byte) })
.Invoke(null, new object[] {
Unsafe.Read<Vector128<Int64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int32>>(_dataTable.inArray2Ptr),
Unsafe.Read<Vector64<Int32>>(_dataTable.inArray3Ptr),
(byte)1
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Int64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load));
var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd), new Type[] { typeof(Vector128<Int64>), typeof(Vector128<Int32>), typeof(Vector64<Int32>), typeof(byte) })
.Invoke(null, new object[] {
AdvSimd.LoadVector128((Int64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((Int32*)(_dataTable.inArray2Ptr)),
AdvSimd.LoadVector64((Int32*)(_dataTable.inArray3Ptr)),
(byte)1
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Int64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.inArray3Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
_clsVar1,
_clsVar2,
_clsVar3,
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _clsVar3, _dataTable.outArrayPtr);
}
public void RunClsVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load));
fixed (Vector128<Int64>* pClsVar1 = &_clsVar1)
fixed (Vector128<Int32>* pClsVar2 = &_clsVar2)
fixed (Vector64<Int32>* pClsVar3 = &_clsVar3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pClsVar1)),
AdvSimd.LoadVector128((Int32*)(pClsVar2)),
AdvSimd.LoadVector64((Int32*)(pClsVar3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _clsVar3, _dataTable.outArrayPtr);
}
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<Int64>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<Int32>>(_dataTable.inArray2Ptr);
var op3 = Unsafe.Read<Vector64<Int32>>(_dataTable.inArray3Ptr);
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(op1, op2, op3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, op3, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load));
var op1 = AdvSimd.LoadVector128((Int64*)(_dataTable.inArray1Ptr));
var op2 = AdvSimd.LoadVector128((Int32*)(_dataTable.inArray2Ptr));
var op3 = AdvSimd.LoadVector64((Int32*)(_dataTable.inArray3Ptr));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(op1, op2, op3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, op3, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1();
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(test._fld1, test._fld2, test._fld3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load));
var test = new SimpleTernaryOpTest__MultiplyBySelectedScalarWideningUpperAndAdd_Vector128_Int32_Vector64_Int32_1();
fixed (Vector128<Int64>* pFld1 = &test._fld1)
fixed (Vector128<Int32>* pFld2 = &test._fld2)
fixed (Vector64<Int32>* pFld3 = &test._fld3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pFld1)),
AdvSimd.LoadVector128((Int32*)(pFld2)),
AdvSimd.LoadVector64((Int32*)(pFld3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(_fld1, _fld2, _fld3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _fld3, _dataTable.outArrayPtr);
}
public void RunClassFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load));
fixed (Vector128<Int64>* pFld1 = &_fld1)
fixed (Vector128<Int32>* pFld2 = &_fld2)
fixed (Vector64<Int32>* pFld3 = &_fld3)
{
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(pFld1)),
AdvSimd.LoadVector128((Int32*)(pFld2)),
AdvSimd.LoadVector64((Int32*)(pFld3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _fld3, _dataTable.outArrayPtr);
}
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(test._fld1, test._fld2, test._fld3, 1);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load));
var test = TestStruct.Create();
var result = AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd(
AdvSimd.LoadVector128((Int64*)(&test._fld1)),
AdvSimd.LoadVector128((Int32*)(&test._fld2)),
AdvSimd.LoadVector64((Int32*)(&test._fld3)),
1
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, test._fld3, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
public void RunStructFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load));
var test = TestStruct.Create();
test.RunStructFldScenario_Load(this);
}
public void RunUnsupportedScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario));
bool succeeded = false;
try
{
RunBasicScenario_UnsafeRead();
}
catch (PlatformNotSupportedException)
{
succeeded = true;
}
if (!succeeded)
{
Succeeded = false;
}
}
private void ValidateResult(Vector128<Int64> op1, Vector128<Int32> op2, Vector64<Int32> op3, void* result, [CallerMemberName] string method = "")
{
Int64[] inArray1 = new Int64[Op1ElementCount];
Int32[] inArray2 = new Int32[Op2ElementCount];
Int32[] inArray3 = new Int32[Op3ElementCount];
Int64[] outArray = new Int64[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<Int32, byte>(ref inArray2[0]), op2);
Unsafe.WriteUnaligned(ref Unsafe.As<Int32, byte>(ref inArray3[0]), op3);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int64>>());
ValidateResult(inArray1, inArray2, inArray3, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* op3, void* result, [CallerMemberName] string method = "")
{
Int64[] inArray1 = new Int64[Op1ElementCount];
Int32[] inArray2 = new Int32[Op2ElementCount];
Int32[] inArray3 = new Int32[Op3ElementCount];
Int64[] outArray = new Int64[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Int64>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int32, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Int32>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int32, byte>(ref inArray3[0]), ref Unsafe.AsRef<byte>(op3), (uint)Unsafe.SizeOf<Vector64<Int32>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int64>>());
ValidateResult(inArray1, inArray2, inArray3, outArray, method);
}
private void ValidateResult(Int64[] firstOp, Int32[] secondOp, Int32[] thirdOp, Int64[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
for (var i = 0; i < RetElementCount; i++)
{
if (Helpers.MultiplyByScalarWideningUpperAndAdd(firstOp, secondOp, thirdOp[Imm], i) != result[i])
{
succeeded = false;
break;
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd)}.{nameof(AdvSimd.MultiplyBySelectedScalarWideningUpperAndAdd)}<Int64>(Vector128<Int64>, Vector128<Int32>, Vector64<Int32>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" firstOp: ({string.Join(", ", firstOp)})");
TestLibrary.TestFramework.LogInformation($"secondOp: ({string.Join(", ", secondOp)})");
TestLibrary.TestFramework.LogInformation($" thirdOp: ({string.Join(", ", thirdOp)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/coreclr/tools/aot/ILCompiler.ReadyToRun/Compiler/ReadyToRunCodegenCompilation.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using Internal.IL;
using Internal.IL.Stubs;
using Internal.JitInterface;
using Internal.ReadyToRunConstants;
using Internal.TypeSystem;
using ILCompiler.DependencyAnalysis;
using ILCompiler.DependencyAnalysis.ReadyToRun;
using ILCompiler.DependencyAnalysisFramework;
using Internal.TypeSystem.Ecma;
namespace ILCompiler
{
public abstract class Compilation : ICompilation, IDisposable
{
protected readonly DependencyAnalyzerBase<NodeFactory> _dependencyGraph;
protected readonly NodeFactory _nodeFactory;
protected readonly Logger _logger;
private readonly DevirtualizationManager _devirtualizationManager;
protected ILCache _methodILCache;
private readonly HashSet<ModuleDesc> _modulesBeingInstrumented;
public NameMangler NameMangler => _nodeFactory.NameMangler;
public NodeFactory NodeFactory => _nodeFactory;
public CompilerTypeSystemContext TypeSystemContext => NodeFactory.TypeSystemContext;
public Logger Logger => _logger;
public InstructionSetSupport InstructionSetSupport { get; }
protected Compilation(
DependencyAnalyzerBase<NodeFactory> dependencyGraph,
NodeFactory nodeFactory,
IEnumerable<ICompilationRootProvider> compilationRoots,
ILProvider ilProvider,
DevirtualizationManager devirtualizationManager,
IEnumerable<ModuleDesc> modulesBeingInstrumented,
Logger logger,
InstructionSetSupport instructionSetSupport)
{
InstructionSetSupport = instructionSetSupport;
_dependencyGraph = dependencyGraph;
_nodeFactory = nodeFactory;
_logger = logger;
_devirtualizationManager = devirtualizationManager;
_modulesBeingInstrumented = new HashSet<ModuleDesc>(modulesBeingInstrumented);
_dependencyGraph.ComputeDependencyRoutine += ComputeDependencyNodeDependencies;
NodeFactory.AttachToDependencyGraph(_dependencyGraph);
var rootingService = new RootingServiceProvider(nodeFactory, _dependencyGraph.AddRoot);
foreach (var rootProvider in compilationRoots)
rootProvider.AddCompilationRoots(rootingService);
_methodILCache = new ILCache(ilProvider, NodeFactory.CompilationModuleGroup);
}
public abstract void Dispose();
public abstract void Compile(string outputFileName);
public abstract void WriteDependencyLog(string outputFileName);
protected abstract void ComputeDependencyNodeDependencies(List<DependencyNodeCore<NodeFactory>> obj);
public bool CanInline(MethodDesc caller, MethodDesc callee)
{
if (JitConfigProvider.Instance.HasFlag(CorJitFlag.CORJIT_FLAG_DEBUG_CODE))
{
// If the callee wants debuggable code, don't allow it to be inlined
return false;
}
if (callee.IsNoInlining)
{
return false;
}
// Check to see if the method requires a security object. This means they call demand and
// shouldn't be inlined.
if (callee.RequireSecObject)
{
return false;
}
// If the method is MethodImpl'd by another method within the same type, then we have
// an issue that the importer will import the wrong body. In this case, we'll just
// disallow inlining because getFunctionEntryPoint will do the right thing.
if (callee.IsVirtual)
{
MethodDesc calleeMethodImpl = callee.OwningType.FindVirtualFunctionTargetMethodOnObjectType(callee);
if (calleeMethodImpl != callee)
{
return false;
}
}
return NodeFactory.CompilationModuleGroup.CanInline(caller, callee);
}
public virtual MethodIL GetMethodIL(MethodDesc method)
{
return _methodILCache.GetOrCreateValue(method).MethodIL;
}
public bool IsEffectivelySealed(TypeDesc type)
{
return _devirtualizationManager.IsEffectivelySealed(type);
}
public bool IsEffectivelySealed(MethodDesc method)
{
return _devirtualizationManager.IsEffectivelySealed(method);
}
public MethodDesc ResolveVirtualMethod(MethodDesc declMethod, TypeDesc implType, out CORINFO_DEVIRTUALIZATION_DETAIL devirtualizationDetail)
{
return _devirtualizationManager.ResolveVirtualMethod(declMethod, implType, out devirtualizationDetail);
}
public bool IsModuleInstrumented(ModuleDesc module)
{
return _modulesBeingInstrumented.Contains(module);
}
public sealed class ILCache : LockFreeReaderHashtable<MethodDesc, ILCache.MethodILData>
{
public ILProvider ILProvider { get; }
private readonly CompilationModuleGroup _compilationModuleGroup;
public ILCache(ILProvider provider, CompilationModuleGroup compilationModuleGroup)
{
ILProvider = provider;
_compilationModuleGroup = compilationModuleGroup;
}
protected override int GetKeyHashCode(MethodDesc key)
{
return key.GetHashCode();
}
protected override int GetValueHashCode(MethodILData value)
{
return value.Method.GetHashCode();
}
protected override bool CompareKeyToValue(MethodDesc key, MethodILData value)
{
return Object.ReferenceEquals(key, value.Method);
}
protected override bool CompareValueToValue(MethodILData value1, MethodILData value2)
{
return Object.ReferenceEquals(value1.Method, value2.Method);
}
protected override MethodILData CreateValueFromKey(MethodDesc key)
{
MethodIL methodIL = ILProvider.GetMethodIL(key);
if (methodIL == null
&& key.IsPInvoke
&& _compilationModuleGroup.GeneratesPInvoke(key))
{
methodIL = PInvokeILEmitter.EmitIL(key);
}
return new MethodILData() { Method = key, MethodIL = methodIL };
}
public class MethodILData
{
public MethodDesc Method;
public MethodIL MethodIL;
}
}
private delegate void RootAdder(object o, string reason);
private class RootingServiceProvider : IRootingServiceProvider
{
private readonly NodeFactory _factory;
private readonly RootAdder _rootAdder;
private readonly DeferredTillPhaseNode _deferredPhaseNode = new DeferredTillPhaseNode(1);
public RootingServiceProvider(NodeFactory factory, RootAdder rootAdder)
{
_factory = factory;
_rootAdder = rootAdder;
_rootAdder(_deferredPhaseNode, "Deferred nodes");
}
public void AddCompilationRoot(MethodDesc method, bool rootMinimalDependencies, string reason)
{
MethodDesc canonMethod = method.GetCanonMethodTarget(CanonicalFormKind.Specific);
if (_factory.CompilationModuleGroup.ContainsMethodBody(canonMethod, false))
{
IMethodNode methodEntryPoint = _factory.CompiledMethodNode(canonMethod);
if (rootMinimalDependencies)
{
_deferredPhaseNode.AddDependency((DependencyNodeCore<NodeFactory>)methodEntryPoint);
}
else
{
_rootAdder(methodEntryPoint, reason);
}
}
}
}
}
public interface ICompilation
{
void Compile(string outputFileName);
void WriteDependencyLog(string outputFileName);
void Dispose();
}
public sealed class ReadyToRunCodegenCompilation : Compilation
{
/// <summary>
/// We only need one CorInfoImpl per thread, and we don't want to unnecessarily construct them
/// because their construction takes a significant amount of time.
/// </summary>
private readonly ConditionalWeakTable<Thread, CorInfoImpl> _corInfoImpls;
/// <summary>
/// Input MSIL file names.
/// </summary>
private readonly IEnumerable<string> _inputFiles;
private readonly string _compositeRootPath;
private readonly bool _resilient;
private readonly int _parallelism;
private readonly bool _generateMapFile;
private readonly bool _generateMapCsvFile;
private readonly bool _generatePdbFile;
private readonly string _pdbPath;
private readonly bool _generatePerfMapFile;
private readonly string _perfMapPath;
private readonly int _perfMapFormatVersion;
private readonly bool _generateProfileFile;
private readonly Func<MethodDesc, string> _printReproInstructions;
private readonly ProfileDataManager _profileData;
private readonly ReadyToRunFileLayoutOptimizer _fileLayoutOptimizer;
public ProfileDataManager ProfileData => _profileData;
public ReadyToRunSymbolNodeFactory SymbolNodeFactory { get; }
public ReadyToRunCompilationModuleGroupBase CompilationModuleGroup { get; }
private readonly int _customPESectionAlignment;
/// <summary>
/// Determining whether a type's layout is fixed is a little expensive and the question can be asked many times
/// for the same type during compilation so preserve the computed value.
/// </summary>
private ConcurrentDictionary<TypeDesc, bool> _computedFixedLayoutTypes = new ConcurrentDictionary<TypeDesc, bool>();
internal ReadyToRunCodegenCompilation(
DependencyAnalyzerBase<NodeFactory> dependencyGraph,
NodeFactory nodeFactory,
IEnumerable<ICompilationRootProvider> roots,
ILProvider ilProvider,
Logger logger,
DevirtualizationManager devirtualizationManager,
IEnumerable<string> inputFiles,
string compositeRootPath,
InstructionSetSupport instructionSetSupport,
bool resilient,
bool generateMapFile,
bool generateMapCsvFile,
bool generatePdbFile,
Func<MethodDesc, string> printReproInstructions,
string pdbPath,
bool generatePerfMapFile,
string perfMapPath,
int perfMapFormatVersion,
bool generateProfileFile,
int parallelism,
ProfileDataManager profileData,
ReadyToRunMethodLayoutAlgorithm methodLayoutAlgorithm,
ReadyToRunFileLayoutAlgorithm fileLayoutAlgorithm,
int customPESectionAlignment,
bool verifyTypeAndFieldLayout)
: base(
dependencyGraph,
nodeFactory,
roots,
ilProvider,
devirtualizationManager,
modulesBeingInstrumented: nodeFactory.CompilationModuleGroup.CompilationModuleSet,
logger,
instructionSetSupport)
{
_resilient = resilient;
_parallelism = parallelism;
_generateMapFile = generateMapFile;
_generateMapCsvFile = generateMapCsvFile;
_generatePdbFile = generatePdbFile;
_pdbPath = pdbPath;
_generatePerfMapFile = generatePerfMapFile;
_perfMapPath = perfMapPath;
_perfMapFormatVersion = perfMapFormatVersion;
_generateProfileFile = generateProfileFile;
_customPESectionAlignment = customPESectionAlignment;
SymbolNodeFactory = new ReadyToRunSymbolNodeFactory(nodeFactory, verifyTypeAndFieldLayout);
if (nodeFactory.InstrumentationDataTable != null)
nodeFactory.InstrumentationDataTable.Initialize(SymbolNodeFactory);
_corInfoImpls = new ConditionalWeakTable<Thread, CorInfoImpl>();
_inputFiles = inputFiles;
_compositeRootPath = compositeRootPath;
_printReproInstructions = printReproInstructions;
CompilationModuleGroup = (ReadyToRunCompilationModuleGroupBase)nodeFactory.CompilationModuleGroup;
// Generate baseline support specification for InstructionSetSupport. This will prevent usage of the generated
// code if the runtime environment doesn't support the specified instruction set
string instructionSetSupportString = ReadyToRunInstructionSetSupportSignature.ToInstructionSetSupportString(instructionSetSupport);
ReadyToRunInstructionSetSupportSignature instructionSetSupportSig = new ReadyToRunInstructionSetSupportSignature(instructionSetSupportString);
_dependencyGraph.AddRoot(new Import(NodeFactory.EagerImports, instructionSetSupportSig), "Baseline instruction set support");
_profileData = profileData;
_fileLayoutOptimizer = new ReadyToRunFileLayoutOptimizer(logger, methodLayoutAlgorithm, fileLayoutAlgorithm, profileData, _nodeFactory);
}
private readonly static string s_folderUpPrefix = ".." + Path.DirectorySeparatorChar;
public override void Compile(string outputFile)
{
_dependencyGraph.ComputeMarkedNodes();
var nodes = _dependencyGraph.MarkedNodeList;
nodes = _fileLayoutOptimizer.ApplyProfilerGuidedMethodSort(nodes);
using (PerfEventSource.StartStopEvents.EmittingEvents())
{
NodeFactory.SetMarkingComplete();
ReadyToRunObjectWriter.EmitObject(
outputFile,
componentModule: null,
inputFiles: _inputFiles,
nodes,
NodeFactory,
generateMapFile: _generateMapFile,
generateMapCsvFile: _generateMapCsvFile,
generatePdbFile: _generatePdbFile,
pdbPath: _pdbPath,
generatePerfMapFile: _generatePerfMapFile,
perfMapPath: _perfMapPath,
perfMapFormatVersion: _perfMapFormatVersion,
generateProfileFile: _generateProfileFile,
callChainProfile: _profileData.CallChainProfile,
_customPESectionAlignment);
CompilationModuleGroup moduleGroup = _nodeFactory.CompilationModuleGroup;
if (moduleGroup.IsCompositeBuildMode)
{
// In composite mode with standalone MSIL we rewrite all input MSIL assemblies to the
// output folder, adding a formal R2R header to them with forwarding information to
// the composite executable.
string outputDirectory = Path.GetDirectoryName(outputFile);
string ownerExecutableName = Path.GetFileName(outputFile);
foreach (string inputFile in _inputFiles)
{
string relativeMsilPath = Path.GetRelativePath(_compositeRootPath, inputFile);
if (relativeMsilPath == inputFile || relativeMsilPath.StartsWith(s_folderUpPrefix, StringComparison.Ordinal))
{
// Input file not under the composite root, emit to root output folder
relativeMsilPath = Path.GetFileName(inputFile);
}
string standaloneMsilOutputFile = Path.Combine(outputDirectory, relativeMsilPath);
RewriteComponentFile(inputFile: inputFile, outputFile: standaloneMsilOutputFile, ownerExecutableName: ownerExecutableName);
}
}
}
}
private void RewriteComponentFile(string inputFile, string outputFile, string ownerExecutableName)
{
EcmaModule inputModule = NodeFactory.TypeSystemContext.GetModuleFromPath(inputFile);
Directory.CreateDirectory(Path.GetDirectoryName(outputFile));
ReadyToRunFlags flags =
ReadyToRunFlags.READYTORUN_FLAG_Component |
ReadyToRunFlags.READYTORUN_FLAG_NonSharedPInvokeStubs;
if (inputModule.IsPlatformNeutral)
{
flags |= ReadyToRunFlags.READYTORUN_FLAG_PlatformNeutralSource;
}
CopiedCorHeaderNode copiedCorHeader = new CopiedCorHeaderNode(inputModule);
// Re-written components shouldn't have any additional diagnostic information - only information about the forwards.
// Even with all of this, we might be modifying the image in a silly manner - adding a directory when if didn't have one.
DebugDirectoryNode debugDirectory = new DebugDirectoryNode(inputModule, outputFile, shouldAddNiPdb: false, shouldGeneratePerfmap: false);
NodeFactory componentFactory = new NodeFactory(
_nodeFactory.TypeSystemContext,
_nodeFactory.CompilationModuleGroup,
null,
_nodeFactory.NameMangler,
copiedCorHeader,
debugDirectory,
win32Resources: new Win32Resources.ResourceData(inputModule),
flags);
IComparer<DependencyNodeCore<NodeFactory>> comparer = new SortableDependencyNode.ObjectNodeComparer(new CompilerComparer());
DependencyAnalyzerBase<NodeFactory> componentGraph = new DependencyAnalyzer<NoLogStrategy<NodeFactory>, NodeFactory>(componentFactory, comparer);
componentGraph.AddRoot(componentFactory.Header, "Component module R2R header");
OwnerCompositeExecutableNode ownerExecutableNode = new OwnerCompositeExecutableNode(_nodeFactory.Target, ownerExecutableName);
componentGraph.AddRoot(ownerExecutableNode, "Owner composite executable name");
componentGraph.AddRoot(copiedCorHeader, "Copied COR header");
componentGraph.AddRoot(debugDirectory, "Debug directory");
if (componentFactory.Win32ResourcesNode != null)
{
componentGraph.AddRoot(componentFactory.Win32ResourcesNode, "Win32 resources");
}
componentGraph.ComputeMarkedNodes();
componentFactory.Header.Add(Internal.Runtime.ReadyToRunSectionType.OwnerCompositeExecutable, ownerExecutableNode, ownerExecutableNode);
ReadyToRunObjectWriter.EmitObject(
outputFile,
componentModule: inputModule,
inputFiles: new string[] { inputFile },
componentGraph.MarkedNodeList,
componentFactory,
generateMapFile: false,
generateMapCsvFile: false,
generatePdbFile: false,
pdbPath: null,
generatePerfMapFile: false,
perfMapPath: null,
perfMapFormatVersion: _perfMapFormatVersion,
generateProfileFile: false,
_profileData.CallChainProfile,
customPESectionAlignment: 0);
}
public override void WriteDependencyLog(string outputFileName)
{
using (FileStream dgmlOutput = new FileStream(outputFileName, FileMode.Create))
{
DgmlWriter.WriteDependencyGraphToStream(dgmlOutput, _dependencyGraph, _nodeFactory);
dgmlOutput.Flush();
}
}
private bool IsLayoutFixedInCurrentVersionBubbleInternal(TypeDesc type)
{
// Primitive types and enums have fixed layout
if (type.IsPrimitive || type.IsEnum)
{
return true;
}
if (!(type is MetadataType defType))
{
// Non metadata backed types have layout defined in all version bubbles
return true;
}
if (!NodeFactory.CompilationModuleGroup.VersionsWithModule(defType.Module))
{
if (!type.IsValueType)
{
// Eventually, we may respect the non-versionable attribute for reference types too. For now, we are going
// to play it safe and ignore it.
return false;
}
// Valuetypes with non-versionable attribute are candidates for fixed layout. Reject the rest.
return type is MetadataType metadataType && metadataType.IsNonVersionable();
}
// If the above condition passed, check that all instance fields have fixed layout as well. In particular,
// it is important for generic types with non-versionable layout (e.g. Nullable<T>)
foreach (var field in type.GetFields())
{
// Only instance fields matter here
if (field.IsStatic)
continue;
var fieldType = field.FieldType;
if (!fieldType.IsValueType)
continue;
if (!IsLayoutFixedInCurrentVersionBubble(fieldType))
{
return false;
}
}
return true;
}
public bool IsLayoutFixedInCurrentVersionBubble(TypeDesc type) =>
_computedFixedLayoutTypes.GetOrAdd(type, (t) => IsLayoutFixedInCurrentVersionBubbleInternal(t));
public bool IsInheritanceChainLayoutFixedInCurrentVersionBubble(TypeDesc type)
{
// This method is not expected to be called for value types
Debug.Assert(!type.IsValueType);
if (type.IsObject)
return true;
if (!IsLayoutFixedInCurrentVersionBubble(type))
{
return false;
}
type = type.BaseType;
if (type != null)
{
// If there are multiple inexact compilation units in the layout of the type, then the exact offset
// of a derived given field is unknown as there may or may not be alignment inserted between a type and its base
if (CompilationModuleGroup.TypeLayoutCompilationUnits(type).HasMultipleInexactCompilationUnits)
return false;
while (!type.IsObject && type != null)
{
if (!IsLayoutFixedInCurrentVersionBubble(type))
{
return false;
}
type = type.BaseType;
}
}
return true;
}
// Compilation is broken into phases which interact with dependency analysis
// Phase 0: All compilations which are driven by our standard heuristics and dependency expansion model
// Phase 1: A helper phase which works in tandem with the DeferredTillPhaseNode to gather work to be done in phase 2
// Phase 2: A phase where all compilations are not allowed to add dependencies that can trigger further compilations.
// The _finishedFirstCompilationRunInPhase2 variable works in concert some checking to ensure that we don't violate any of this model
private bool _finishedFirstCompilationRunInPhase2 = false;
protected override void ComputeDependencyNodeDependencies(List<DependencyNodeCore<NodeFactory>> obj)
{
using (PerfEventSource.StartStopEvents.JitEvents())
{
Action<DependencyNodeCore<NodeFactory>> compileOneMethod = (DependencyNodeCore<NodeFactory> dependency) =>
{
MethodWithGCInfo methodCodeNodeNeedingCode = dependency as MethodWithGCInfo;
if (methodCodeNodeNeedingCode == null)
{
if (dependency is DeferredTillPhaseNode deferredPhaseNode)
{
if (Logger.IsVerbose)
_logger.Writer.WriteLine($"Moved to phase {_nodeFactory.CompilationCurrentPhase}");
deferredPhaseNode.NotifyCurrentPhase(_nodeFactory.CompilationCurrentPhase);
return;
}
}
Debug.Assert((_nodeFactory.CompilationCurrentPhase == 0) || ((_nodeFactory.CompilationCurrentPhase == 2) && !_finishedFirstCompilationRunInPhase2));
MethodDesc method = methodCodeNodeNeedingCode.Method;
if (Logger.IsVerbose)
{
string methodName = method.ToString();
Logger.Writer.WriteLine("Compiling " + methodName);
}
if (_printReproInstructions != null)
{
Logger.Writer.WriteLine($"Single method repro args:{_printReproInstructions(method)}");
}
try
{
using (PerfEventSource.StartStopEvents.JitMethodEvents())
{
// Create only 1 CorInfoImpl per thread.
// This allows SuperPMI to rely on non-reuse of handles in ObjectToHandle
CorInfoImpl corInfoImpl = _corInfoImpls.GetValue(Thread.CurrentThread, thread => new CorInfoImpl(this));
corInfoImpl.CompileMethod(methodCodeNodeNeedingCode, Logger);
}
}
catch (TypeSystemException ex)
{
// If compilation fails, don't emit code for this method. It will be Jitted at runtime
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Warning: Method `{method}` was not compiled because: {ex.Message}");
}
catch (RequiresRuntimeJitException ex)
{
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Info: Method `{method}` was not compiled because `{ex.Message}` requires runtime JIT");
}
catch (CodeGenerationFailedException ex) when (_resilient)
{
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Warning: Method `{method}` was not compiled because `{ex.Message}` requires runtime JIT");
}
};
// Use only main thread to compile if parallelism is 1. This allows SuperPMI to rely on non-reuse of handles in ObjectToHandle
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Processing {obj.Count} dependencies");
if (_parallelism == 1)
{
foreach (var dependency in obj)
compileOneMethod(dependency);
}
else
{
ParallelOptions options = new ParallelOptions
{
MaxDegreeOfParallelism = _parallelism
};
Parallel.ForEach(obj, options, compileOneMethod);
}
}
if (_methodILCache.Count > 1000)
{
_methodILCache = new ILCache(_methodILCache.ILProvider, NodeFactory.CompilationModuleGroup);
}
if (_nodeFactory.CompilationCurrentPhase == 2)
{
_finishedFirstCompilationRunInPhase2 = true;
}
}
public ISymbolNode GetFieldRvaData(FieldDesc field) => NodeFactory.CopiedFieldRva(field);
public override void Dispose()
{
_corInfoImpls?.Clear();
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using Internal.IL;
using Internal.IL.Stubs;
using Internal.JitInterface;
using Internal.ReadyToRunConstants;
using Internal.TypeSystem;
using ILCompiler.DependencyAnalysis;
using ILCompiler.DependencyAnalysis.ReadyToRun;
using ILCompiler.DependencyAnalysisFramework;
using Internal.TypeSystem.Ecma;
namespace ILCompiler
{
public abstract class Compilation : ICompilation, IDisposable
{
protected readonly DependencyAnalyzerBase<NodeFactory> _dependencyGraph;
protected readonly NodeFactory _nodeFactory;
protected readonly Logger _logger;
private readonly DevirtualizationManager _devirtualizationManager;
protected ILCache _methodILCache;
private readonly HashSet<ModuleDesc> _modulesBeingInstrumented;
public NameMangler NameMangler => _nodeFactory.NameMangler;
public NodeFactory NodeFactory => _nodeFactory;
public CompilerTypeSystemContext TypeSystemContext => NodeFactory.TypeSystemContext;
public Logger Logger => _logger;
public InstructionSetSupport InstructionSetSupport { get; }
protected Compilation(
DependencyAnalyzerBase<NodeFactory> dependencyGraph,
NodeFactory nodeFactory,
IEnumerable<ICompilationRootProvider> compilationRoots,
ILProvider ilProvider,
DevirtualizationManager devirtualizationManager,
IEnumerable<ModuleDesc> modulesBeingInstrumented,
Logger logger,
InstructionSetSupport instructionSetSupport)
{
InstructionSetSupport = instructionSetSupport;
_dependencyGraph = dependencyGraph;
_nodeFactory = nodeFactory;
_logger = logger;
_devirtualizationManager = devirtualizationManager;
_modulesBeingInstrumented = new HashSet<ModuleDesc>(modulesBeingInstrumented);
_dependencyGraph.ComputeDependencyRoutine += ComputeDependencyNodeDependencies;
NodeFactory.AttachToDependencyGraph(_dependencyGraph);
var rootingService = new RootingServiceProvider(nodeFactory, _dependencyGraph.AddRoot);
foreach (var rootProvider in compilationRoots)
rootProvider.AddCompilationRoots(rootingService);
_methodILCache = new ILCache(ilProvider, NodeFactory.CompilationModuleGroup);
}
public abstract void Dispose();
public abstract void Compile(string outputFileName);
public abstract void WriteDependencyLog(string outputFileName);
protected abstract void ComputeDependencyNodeDependencies(List<DependencyNodeCore<NodeFactory>> obj);
public bool CanInline(MethodDesc caller, MethodDesc callee)
{
if (JitConfigProvider.Instance.HasFlag(CorJitFlag.CORJIT_FLAG_DEBUG_CODE))
{
// If the callee wants debuggable code, don't allow it to be inlined
return false;
}
if (callee.IsNoInlining)
{
return false;
}
// Check to see if the method requires a security object. This means they call demand and
// shouldn't be inlined.
if (callee.RequireSecObject)
{
return false;
}
// If the method is MethodImpl'd by another method within the same type, then we have
// an issue that the importer will import the wrong body. In this case, we'll just
// disallow inlining because getFunctionEntryPoint will do the right thing.
if (callee.IsVirtual)
{
MethodDesc calleeMethodImpl = callee.OwningType.FindVirtualFunctionTargetMethodOnObjectType(callee);
if (calleeMethodImpl != callee)
{
return false;
}
}
return NodeFactory.CompilationModuleGroup.CanInline(caller, callee);
}
public virtual MethodIL GetMethodIL(MethodDesc method)
{
return _methodILCache.GetOrCreateValue(method).MethodIL;
}
public bool IsEffectivelySealed(TypeDesc type)
{
return _devirtualizationManager.IsEffectivelySealed(type);
}
public bool IsEffectivelySealed(MethodDesc method)
{
return _devirtualizationManager.IsEffectivelySealed(method);
}
public MethodDesc ResolveVirtualMethod(MethodDesc declMethod, TypeDesc implType, out CORINFO_DEVIRTUALIZATION_DETAIL devirtualizationDetail)
{
return _devirtualizationManager.ResolveVirtualMethod(declMethod, implType, out devirtualizationDetail);
}
public bool IsModuleInstrumented(ModuleDesc module)
{
return _modulesBeingInstrumented.Contains(module);
}
public sealed class ILCache : LockFreeReaderHashtable<MethodDesc, ILCache.MethodILData>
{
public ILProvider ILProvider { get; }
private readonly CompilationModuleGroup _compilationModuleGroup;
public ILCache(ILProvider provider, CompilationModuleGroup compilationModuleGroup)
{
ILProvider = provider;
_compilationModuleGroup = compilationModuleGroup;
}
protected override int GetKeyHashCode(MethodDesc key)
{
return key.GetHashCode();
}
protected override int GetValueHashCode(MethodILData value)
{
return value.Method.GetHashCode();
}
protected override bool CompareKeyToValue(MethodDesc key, MethodILData value)
{
return Object.ReferenceEquals(key, value.Method);
}
protected override bool CompareValueToValue(MethodILData value1, MethodILData value2)
{
return Object.ReferenceEquals(value1.Method, value2.Method);
}
protected override MethodILData CreateValueFromKey(MethodDesc key)
{
MethodIL methodIL = ILProvider.GetMethodIL(key);
if (methodIL == null
&& key.IsPInvoke
&& _compilationModuleGroup.GeneratesPInvoke(key))
{
methodIL = PInvokeILEmitter.EmitIL(key);
}
return new MethodILData() { Method = key, MethodIL = methodIL };
}
public class MethodILData
{
public MethodDesc Method;
public MethodIL MethodIL;
}
}
private delegate void RootAdder(object o, string reason);
private class RootingServiceProvider : IRootingServiceProvider
{
private readonly NodeFactory _factory;
private readonly RootAdder _rootAdder;
private readonly DeferredTillPhaseNode _deferredPhaseNode = new DeferredTillPhaseNode(1);
public RootingServiceProvider(NodeFactory factory, RootAdder rootAdder)
{
_factory = factory;
_rootAdder = rootAdder;
_rootAdder(_deferredPhaseNode, "Deferred nodes");
}
public void AddCompilationRoot(MethodDesc method, bool rootMinimalDependencies, string reason)
{
MethodDesc canonMethod = method.GetCanonMethodTarget(CanonicalFormKind.Specific);
if (_factory.CompilationModuleGroup.ContainsMethodBody(canonMethod, false))
{
IMethodNode methodEntryPoint = _factory.CompiledMethodNode(canonMethod);
if (rootMinimalDependencies)
{
_deferredPhaseNode.AddDependency((DependencyNodeCore<NodeFactory>)methodEntryPoint);
}
else
{
_rootAdder(methodEntryPoint, reason);
}
}
}
}
}
public interface ICompilation
{
void Compile(string outputFileName);
void WriteDependencyLog(string outputFileName);
void Dispose();
}
public sealed class ReadyToRunCodegenCompilation : Compilation
{
/// <summary>
/// We only need one CorInfoImpl per thread, and we don't want to unnecessarily construct them
/// because their construction takes a significant amount of time.
/// </summary>
private readonly ConditionalWeakTable<Thread, CorInfoImpl> _corInfoImpls;
/// <summary>
/// Input MSIL file names.
/// </summary>
private readonly IEnumerable<string> _inputFiles;
private readonly string _compositeRootPath;
private readonly bool _resilient;
private readonly int _parallelism;
private readonly bool _generateMapFile;
private readonly bool _generateMapCsvFile;
private readonly bool _generatePdbFile;
private readonly string _pdbPath;
private readonly bool _generatePerfMapFile;
private readonly string _perfMapPath;
private readonly int _perfMapFormatVersion;
private readonly bool _generateProfileFile;
private readonly Func<MethodDesc, string> _printReproInstructions;
private readonly ProfileDataManager _profileData;
private readonly ReadyToRunFileLayoutOptimizer _fileLayoutOptimizer;
public ProfileDataManager ProfileData => _profileData;
public ReadyToRunSymbolNodeFactory SymbolNodeFactory { get; }
public ReadyToRunCompilationModuleGroupBase CompilationModuleGroup { get; }
private readonly int _customPESectionAlignment;
/// <summary>
/// Determining whether a type's layout is fixed is a little expensive and the question can be asked many times
/// for the same type during compilation so preserve the computed value.
/// </summary>
private ConcurrentDictionary<TypeDesc, bool> _computedFixedLayoutTypes = new ConcurrentDictionary<TypeDesc, bool>();
internal ReadyToRunCodegenCompilation(
DependencyAnalyzerBase<NodeFactory> dependencyGraph,
NodeFactory nodeFactory,
IEnumerable<ICompilationRootProvider> roots,
ILProvider ilProvider,
Logger logger,
DevirtualizationManager devirtualizationManager,
IEnumerable<string> inputFiles,
string compositeRootPath,
InstructionSetSupport instructionSetSupport,
bool resilient,
bool generateMapFile,
bool generateMapCsvFile,
bool generatePdbFile,
Func<MethodDesc, string> printReproInstructions,
string pdbPath,
bool generatePerfMapFile,
string perfMapPath,
int perfMapFormatVersion,
bool generateProfileFile,
int parallelism,
ProfileDataManager profileData,
ReadyToRunMethodLayoutAlgorithm methodLayoutAlgorithm,
ReadyToRunFileLayoutAlgorithm fileLayoutAlgorithm,
int customPESectionAlignment,
bool verifyTypeAndFieldLayout)
: base(
dependencyGraph,
nodeFactory,
roots,
ilProvider,
devirtualizationManager,
modulesBeingInstrumented: nodeFactory.CompilationModuleGroup.CompilationModuleSet,
logger,
instructionSetSupport)
{
_resilient = resilient;
_parallelism = parallelism;
_generateMapFile = generateMapFile;
_generateMapCsvFile = generateMapCsvFile;
_generatePdbFile = generatePdbFile;
_pdbPath = pdbPath;
_generatePerfMapFile = generatePerfMapFile;
_perfMapPath = perfMapPath;
_perfMapFormatVersion = perfMapFormatVersion;
_generateProfileFile = generateProfileFile;
_customPESectionAlignment = customPESectionAlignment;
SymbolNodeFactory = new ReadyToRunSymbolNodeFactory(nodeFactory, verifyTypeAndFieldLayout);
if (nodeFactory.InstrumentationDataTable != null)
nodeFactory.InstrumentationDataTable.Initialize(SymbolNodeFactory);
_corInfoImpls = new ConditionalWeakTable<Thread, CorInfoImpl>();
_inputFiles = inputFiles;
_compositeRootPath = compositeRootPath;
_printReproInstructions = printReproInstructions;
CompilationModuleGroup = (ReadyToRunCompilationModuleGroupBase)nodeFactory.CompilationModuleGroup;
// Generate baseline support specification for InstructionSetSupport. This will prevent usage of the generated
// code if the runtime environment doesn't support the specified instruction set
string instructionSetSupportString = ReadyToRunInstructionSetSupportSignature.ToInstructionSetSupportString(instructionSetSupport);
ReadyToRunInstructionSetSupportSignature instructionSetSupportSig = new ReadyToRunInstructionSetSupportSignature(instructionSetSupportString);
_dependencyGraph.AddRoot(new Import(NodeFactory.EagerImports, instructionSetSupportSig), "Baseline instruction set support");
_profileData = profileData;
_fileLayoutOptimizer = new ReadyToRunFileLayoutOptimizer(logger, methodLayoutAlgorithm, fileLayoutAlgorithm, profileData, _nodeFactory);
}
private readonly static string s_folderUpPrefix = ".." + Path.DirectorySeparatorChar;
public override void Compile(string outputFile)
{
_dependencyGraph.ComputeMarkedNodes();
var nodes = _dependencyGraph.MarkedNodeList;
nodes = _fileLayoutOptimizer.ApplyProfilerGuidedMethodSort(nodes);
using (PerfEventSource.StartStopEvents.EmittingEvents())
{
NodeFactory.SetMarkingComplete();
ReadyToRunObjectWriter.EmitObject(
outputFile,
componentModule: null,
inputFiles: _inputFiles,
nodes,
NodeFactory,
generateMapFile: _generateMapFile,
generateMapCsvFile: _generateMapCsvFile,
generatePdbFile: _generatePdbFile,
pdbPath: _pdbPath,
generatePerfMapFile: _generatePerfMapFile,
perfMapPath: _perfMapPath,
perfMapFormatVersion: _perfMapFormatVersion,
generateProfileFile: _generateProfileFile,
callChainProfile: _profileData.CallChainProfile,
_customPESectionAlignment);
CompilationModuleGroup moduleGroup = _nodeFactory.CompilationModuleGroup;
if (moduleGroup.IsCompositeBuildMode)
{
// In composite mode with standalone MSIL we rewrite all input MSIL assemblies to the
// output folder, adding a formal R2R header to them with forwarding information to
// the composite executable.
string outputDirectory = Path.GetDirectoryName(outputFile);
string ownerExecutableName = Path.GetFileName(outputFile);
foreach (string inputFile in _inputFiles)
{
string relativeMsilPath = Path.GetRelativePath(_compositeRootPath, inputFile);
if (relativeMsilPath == inputFile || relativeMsilPath.StartsWith(s_folderUpPrefix, StringComparison.Ordinal))
{
// Input file not under the composite root, emit to root output folder
relativeMsilPath = Path.GetFileName(inputFile);
}
string standaloneMsilOutputFile = Path.Combine(outputDirectory, relativeMsilPath);
RewriteComponentFile(inputFile: inputFile, outputFile: standaloneMsilOutputFile, ownerExecutableName: ownerExecutableName);
}
}
}
}
private void RewriteComponentFile(string inputFile, string outputFile, string ownerExecutableName)
{
EcmaModule inputModule = NodeFactory.TypeSystemContext.GetModuleFromPath(inputFile);
Directory.CreateDirectory(Path.GetDirectoryName(outputFile));
ReadyToRunFlags flags =
ReadyToRunFlags.READYTORUN_FLAG_Component |
ReadyToRunFlags.READYTORUN_FLAG_NonSharedPInvokeStubs;
if (inputModule.IsPlatformNeutral)
{
flags |= ReadyToRunFlags.READYTORUN_FLAG_PlatformNeutralSource;
}
CopiedCorHeaderNode copiedCorHeader = new CopiedCorHeaderNode(inputModule);
// Re-written components shouldn't have any additional diagnostic information - only information about the forwards.
// Even with all of this, we might be modifying the image in a silly manner - adding a directory when if didn't have one.
DebugDirectoryNode debugDirectory = new DebugDirectoryNode(inputModule, outputFile, shouldAddNiPdb: false, shouldGeneratePerfmap: false);
NodeFactory componentFactory = new NodeFactory(
_nodeFactory.TypeSystemContext,
_nodeFactory.CompilationModuleGroup,
null,
_nodeFactory.NameMangler,
copiedCorHeader,
debugDirectory,
win32Resources: new Win32Resources.ResourceData(inputModule),
flags);
IComparer<DependencyNodeCore<NodeFactory>> comparer = new SortableDependencyNode.ObjectNodeComparer(new CompilerComparer());
DependencyAnalyzerBase<NodeFactory> componentGraph = new DependencyAnalyzer<NoLogStrategy<NodeFactory>, NodeFactory>(componentFactory, comparer);
componentGraph.AddRoot(componentFactory.Header, "Component module R2R header");
OwnerCompositeExecutableNode ownerExecutableNode = new OwnerCompositeExecutableNode(_nodeFactory.Target, ownerExecutableName);
componentGraph.AddRoot(ownerExecutableNode, "Owner composite executable name");
componentGraph.AddRoot(copiedCorHeader, "Copied COR header");
componentGraph.AddRoot(debugDirectory, "Debug directory");
if (componentFactory.Win32ResourcesNode != null)
{
componentGraph.AddRoot(componentFactory.Win32ResourcesNode, "Win32 resources");
}
componentGraph.ComputeMarkedNodes();
componentFactory.Header.Add(Internal.Runtime.ReadyToRunSectionType.OwnerCompositeExecutable, ownerExecutableNode, ownerExecutableNode);
ReadyToRunObjectWriter.EmitObject(
outputFile,
componentModule: inputModule,
inputFiles: new string[] { inputFile },
componentGraph.MarkedNodeList,
componentFactory,
generateMapFile: false,
generateMapCsvFile: false,
generatePdbFile: false,
pdbPath: null,
generatePerfMapFile: false,
perfMapPath: null,
perfMapFormatVersion: _perfMapFormatVersion,
generateProfileFile: false,
_profileData.CallChainProfile,
customPESectionAlignment: 0);
}
public override void WriteDependencyLog(string outputFileName)
{
using (FileStream dgmlOutput = new FileStream(outputFileName, FileMode.Create))
{
DgmlWriter.WriteDependencyGraphToStream(dgmlOutput, _dependencyGraph, _nodeFactory);
dgmlOutput.Flush();
}
}
private bool IsLayoutFixedInCurrentVersionBubbleInternal(TypeDesc type)
{
// Primitive types and enums have fixed layout
if (type.IsPrimitive || type.IsEnum)
{
return true;
}
if (!(type is MetadataType defType))
{
// Non metadata backed types have layout defined in all version bubbles
return true;
}
if (!NodeFactory.CompilationModuleGroup.VersionsWithModule(defType.Module))
{
if (!type.IsValueType)
{
// Eventually, we may respect the non-versionable attribute for reference types too. For now, we are going
// to play it safe and ignore it.
return false;
}
// Valuetypes with non-versionable attribute are candidates for fixed layout. Reject the rest.
return type is MetadataType metadataType && metadataType.IsNonVersionable();
}
// If the above condition passed, check that all instance fields have fixed layout as well. In particular,
// it is important for generic types with non-versionable layout (e.g. Nullable<T>)
foreach (var field in type.GetFields())
{
// Only instance fields matter here
if (field.IsStatic)
continue;
var fieldType = field.FieldType;
if (!fieldType.IsValueType)
continue;
if (!IsLayoutFixedInCurrentVersionBubble(fieldType))
{
return false;
}
}
return true;
}
public bool IsLayoutFixedInCurrentVersionBubble(TypeDesc type) =>
_computedFixedLayoutTypes.GetOrAdd(type, (t) => IsLayoutFixedInCurrentVersionBubbleInternal(t));
public bool IsInheritanceChainLayoutFixedInCurrentVersionBubble(TypeDesc type)
{
// This method is not expected to be called for value types
Debug.Assert(!type.IsValueType);
if (type.IsObject)
return true;
if (!IsLayoutFixedInCurrentVersionBubble(type))
{
return false;
}
type = type.BaseType;
if (type != null)
{
// If there are multiple inexact compilation units in the layout of the type, then the exact offset
// of a derived given field is unknown as there may or may not be alignment inserted between a type and its base
if (CompilationModuleGroup.TypeLayoutCompilationUnits(type).HasMultipleInexactCompilationUnits)
return false;
while (!type.IsObject && type != null)
{
if (!IsLayoutFixedInCurrentVersionBubble(type))
{
return false;
}
type = type.BaseType;
}
}
return true;
}
// Compilation is broken into phases which interact with dependency analysis
// Phase 0: All compilations which are driven by our standard heuristics and dependency expansion model
// Phase 1: A helper phase which works in tandem with the DeferredTillPhaseNode to gather work to be done in phase 2
// Phase 2: A phase where all compilations are not allowed to add dependencies that can trigger further compilations.
// The _finishedFirstCompilationRunInPhase2 variable works in concert some checking to ensure that we don't violate any of this model
private bool _finishedFirstCompilationRunInPhase2 = false;
protected override void ComputeDependencyNodeDependencies(List<DependencyNodeCore<NodeFactory>> obj)
{
using (PerfEventSource.StartStopEvents.JitEvents())
{
Action<DependencyNodeCore<NodeFactory>> compileOneMethod = (DependencyNodeCore<NodeFactory> dependency) =>
{
MethodWithGCInfo methodCodeNodeNeedingCode = dependency as MethodWithGCInfo;
if (methodCodeNodeNeedingCode == null)
{
if (dependency is DeferredTillPhaseNode deferredPhaseNode)
{
if (Logger.IsVerbose)
_logger.Writer.WriteLine($"Moved to phase {_nodeFactory.CompilationCurrentPhase}");
deferredPhaseNode.NotifyCurrentPhase(_nodeFactory.CompilationCurrentPhase);
return;
}
}
Debug.Assert((_nodeFactory.CompilationCurrentPhase == 0) || ((_nodeFactory.CompilationCurrentPhase == 2) && !_finishedFirstCompilationRunInPhase2));
MethodDesc method = methodCodeNodeNeedingCode.Method;
if (Logger.IsVerbose)
{
string methodName = method.ToString();
Logger.Writer.WriteLine("Compiling " + methodName);
}
if (_printReproInstructions != null)
{
Logger.Writer.WriteLine($"Single method repro args:{_printReproInstructions(method)}");
}
try
{
using (PerfEventSource.StartStopEvents.JitMethodEvents())
{
// Create only 1 CorInfoImpl per thread.
// This allows SuperPMI to rely on non-reuse of handles in ObjectToHandle
CorInfoImpl corInfoImpl = _corInfoImpls.GetValue(Thread.CurrentThread, thread => new CorInfoImpl(this));
corInfoImpl.CompileMethod(methodCodeNodeNeedingCode, Logger);
}
}
catch (TypeSystemException ex)
{
// If compilation fails, don't emit code for this method. It will be Jitted at runtime
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Warning: Method `{method}` was not compiled because: {ex.Message}");
}
catch (RequiresRuntimeJitException ex)
{
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Info: Method `{method}` was not compiled because `{ex.Message}` requires runtime JIT");
}
catch (CodeGenerationFailedException ex) when (_resilient)
{
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Warning: Method `{method}` was not compiled because `{ex.Message}` requires runtime JIT");
}
};
// Use only main thread to compile if parallelism is 1. This allows SuperPMI to rely on non-reuse of handles in ObjectToHandle
if (Logger.IsVerbose)
Logger.Writer.WriteLine($"Processing {obj.Count} dependencies");
if (_parallelism == 1)
{
foreach (var dependency in obj)
compileOneMethod(dependency);
}
else
{
ParallelOptions options = new ParallelOptions
{
MaxDegreeOfParallelism = _parallelism
};
Parallel.ForEach(obj, options, compileOneMethod);
}
}
if (_methodILCache.Count > 1000)
{
_methodILCache = new ILCache(_methodILCache.ILProvider, NodeFactory.CompilationModuleGroup);
}
if (_nodeFactory.CompilationCurrentPhase == 2)
{
_finishedFirstCompilationRunInPhase2 = true;
}
}
public ISymbolNode GetFieldRvaData(FieldDesc field) => NodeFactory.CopiedFieldRva(field);
public override void Dispose()
{
_corInfoImpls?.Clear();
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.IO.FileSystem/tests/File/ReadWriteAllBytesAsync.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
using System.IO.Pipes;
namespace System.IO.Tests
{
public class File_ReadWriteAllBytesAsync : FileSystemTest
{
[Fact]
public async Task NullParametersAsync()
{
string path = GetTestFilePath();
await Assert.ThrowsAsync<ArgumentNullException>("path", async () => await File.WriteAllBytesAsync(null, new byte[0]));
await Assert.ThrowsAsync<ArgumentNullException>("bytes", async () => await File.WriteAllBytesAsync(path, null));
await Assert.ThrowsAsync<ArgumentNullException>("path", async () => await File.ReadAllBytesAsync(null));
}
[Fact]
public async Task InvalidParametersAsync()
{
await Assert.ThrowsAsync<ArgumentException>("path", async () => await File.WriteAllBytesAsync(string.Empty, new byte[0]));
await Assert.ThrowsAsync<ArgumentException>("path", async () => await File.ReadAllBytesAsync(string.Empty));
}
[Fact]
public Task Read_FileNotFoundAsync()
{
string path = GetTestFilePath();
return Assert.ThrowsAsync<FileNotFoundException>(async () => await File.ReadAllBytesAsync(path));
}
[Fact]
public async Task EmptyContentCreatesFileAsync()
{
string path = GetTestFilePath();
await File.WriteAllBytesAsync(path, new byte[0]);
Assert.True(File.Exists(path));
Assert.Empty(await File.ReadAllTextAsync(path));
File.Delete(path);
}
[Theory]
[InlineData(0)]
[InlineData(100)]
public async Task ValidWriteAsync(int size)
{
string path = GetTestFilePath();
byte[] buffer = Encoding.UTF8.GetBytes(new string('c', size));
await File.WriteAllBytesAsync(path, buffer);
Assert.Equal(buffer, await File.ReadAllBytesAsync(path));
File.Delete(path);
}
[Fact]
public Task AlreadyCanceledAsync()
{
string path = GetTestFilePath();
CancellationTokenSource source = new CancellationTokenSource();
CancellationToken token = source.Token;
source.Cancel();
Assert.True(File.WriteAllBytesAsync(path, new byte[0], token).IsCanceled);
return Assert.ThrowsAsync<TaskCanceledException>(
async () => await File.WriteAllBytesAsync(path, new byte[0], token));
}
[Fact]
public async Task OverwriteAsync()
{
string path = GetTestFilePath();
byte[] bytes = Encoding.UTF8.GetBytes(new string('c', 100));
byte[] overwriteBytes = Encoding.UTF8.GetBytes(new string('b', 50));
await File.WriteAllBytesAsync(path, bytes);
await File.WriteAllBytesAsync(path, overwriteBytes);
Assert.Equal(overwriteBytes, await File.ReadAllBytesAsync(path));
}
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsFileLockingEnabled))]
public async Task OpenFile_ThrowsIOExceptionAsync()
{
string path = GetTestFilePath();
byte[] bytes = Encoding.UTF8.GetBytes(new string('c', 100));
using (File.Create(path))
{
await Assert.ThrowsAsync<IOException>(async () => await File.WriteAllBytesAsync(path, bytes));
await Assert.ThrowsAsync<IOException>(async () => await File.ReadAllBytesAsync(path));
}
}
/// <summary>
/// On Unix, modifying a file that is ReadOnly will fail under normal permissions.
/// If the test is being run under the superuser, however, modification of a ReadOnly
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public async Task WriteToReadOnlyFileAsync()
{
string path = GetTestFilePath();
File.Create(path).Dispose();
File.SetAttributes(path, FileAttributes.ReadOnly);
try
{
// Operation succeeds when being run by the Unix superuser
if (PlatformDetection.IsSuperUser)
{
await File.WriteAllBytesAsync(path, Encoding.UTF8.GetBytes("text"));
Assert.Equal(Encoding.UTF8.GetBytes("text"), await File.ReadAllBytesAsync(path));
}
else
await Assert.ThrowsAsync<UnauthorizedAccessException>(async () => await File.WriteAllBytesAsync(path, Encoding.UTF8.GetBytes("text")));
}
finally
{
File.SetAttributes(path, FileAttributes.Normal);
}
}
[Fact]
public async Task EmptyFile_ReturnsEmptyArray()
{
string path = GetTestFilePath();
File.Create(path).Dispose();
Assert.Equal(0, (await File.ReadAllBytesAsync(path)).Length);
}
[Theory]
[PlatformSpecific(TestPlatforms.Linux)]
[InlineData("/proc/cmdline")]
[InlineData("/proc/version")]
[InlineData("/proc/filesystems")]
public async Task ProcFs_EqualsReadAllText(string path)
{
byte[] bytes = null;
string text = null;
const int NumTries = 3; // some of these could theoretically change between reads, so allow retries just in case
for (int i = 1; i <= NumTries; i++)
{
try
{
bytes = await File.ReadAllBytesAsync(path);
text = await File.ReadAllTextAsync(path);
Assert.Equal(text, Encoding.UTF8.GetString(bytes));
}
catch when (i < NumTries) { }
}
}
[Fact]
[PlatformSpecific(TestPlatforms.Linux)]
public async Task ReadAllBytes_ProcFs_Uptime_ContainsTwoNumbers()
{
string text = Encoding.UTF8.GetString(await File.ReadAllBytesAsync("/proc/uptime"));
string[] parts = text.Split(' ', StringSplitOptions.RemoveEmptyEntries);
Assert.Equal(2, parts.Length);
Assert.True(double.TryParse(parts[0].Trim(), out _));
Assert.True(double.TryParse(parts[1].Trim(), out _));
}
[Theory]
[PlatformSpecific(TestPlatforms.Linux)]
[InlineData("/proc/meminfo")]
[InlineData("/proc/stat")]
[InlineData("/proc/cpuinfo")]
public async Task ProcFs_NotEmpty(string path)
{
Assert.InRange((await File.ReadAllBytesAsync(path)).Length, 1, int.MaxValue);
}
[Fact]
[PlatformSpecific(TestPlatforms.Windows)] // DOS device paths (\\.\ and \\?\) are a Windows concept
public async Task ReadAllBytesAsync_NonSeekableFileStream_InWindows()
{
string pipeName = GetNamedPipeServerStreamName();
string pipePath = Path.GetFullPath($@"\\.\pipe\{pipeName}");
var namedPipeWriterStream = new NamedPipeServerStream(pipeName, PipeDirection.Out);
var contentBytes = new byte[] { 1, 2, 3 };
using (var cts = new CancellationTokenSource())
{
Task writingServerTask = WaitConnectionAndWritePipeStreamAsync(namedPipeWriterStream, contentBytes, cts.Token);
Task<byte[]> readTask = File.ReadAllBytesAsync(pipePath, cts.Token);
cts.CancelAfter(TimeSpan.FromSeconds(50));
await writingServerTask;
byte[] readBytes = await readTask;
Assert.Equal<byte>(contentBytes, readBytes);
}
static async Task WaitConnectionAndWritePipeStreamAsync(NamedPipeServerStream namedPipeWriterStream, byte[] contentBytes, CancellationToken cancellationToken)
{
await using (namedPipeWriterStream)
{
await namedPipeWriterStream.WaitForConnectionAsync(cancellationToken);
await namedPipeWriterStream.WriteAsync(contentBytes, cancellationToken);
}
}
}
[Fact]
[PlatformSpecific(TestPlatforms.AnyUnix & ~TestPlatforms.Browser)]
public async Task ReadAllBytesAsync_NonSeekableFileStream_InUnix()
{
string fifoPath = GetTestFilePath();
Assert.Equal(0, mkfifo(fifoPath, 438 /* 666 in octal */ ));
var contentBytes = new byte[] { 1, 2, 3 };
await Task.WhenAll(
Task.Run(async () =>
{
byte[] readBytes = await File.ReadAllBytesAsync(fifoPath);
Assert.Equal<byte>(contentBytes, readBytes);
}),
Task.Run(() =>
{
using var fs = new FileStream(fifoPath, FileMode.Open, FileAccess.Write, FileShare.Read);
foreach (byte content in contentBytes)
{
fs.WriteByte(content);
}
}));
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
using System.IO.Pipes;
namespace System.IO.Tests
{
public class File_ReadWriteAllBytesAsync : FileSystemTest
{
[Fact]
public async Task NullParametersAsync()
{
string path = GetTestFilePath();
await Assert.ThrowsAsync<ArgumentNullException>("path", async () => await File.WriteAllBytesAsync(null, new byte[0]));
await Assert.ThrowsAsync<ArgumentNullException>("bytes", async () => await File.WriteAllBytesAsync(path, null));
await Assert.ThrowsAsync<ArgumentNullException>("path", async () => await File.ReadAllBytesAsync(null));
}
[Fact]
public async Task InvalidParametersAsync()
{
await Assert.ThrowsAsync<ArgumentException>("path", async () => await File.WriteAllBytesAsync(string.Empty, new byte[0]));
await Assert.ThrowsAsync<ArgumentException>("path", async () => await File.ReadAllBytesAsync(string.Empty));
}
[Fact]
public Task Read_FileNotFoundAsync()
{
string path = GetTestFilePath();
return Assert.ThrowsAsync<FileNotFoundException>(async () => await File.ReadAllBytesAsync(path));
}
[Fact]
public async Task EmptyContentCreatesFileAsync()
{
string path = GetTestFilePath();
await File.WriteAllBytesAsync(path, new byte[0]);
Assert.True(File.Exists(path));
Assert.Empty(await File.ReadAllTextAsync(path));
File.Delete(path);
}
[Theory]
[InlineData(0)]
[InlineData(100)]
public async Task ValidWriteAsync(int size)
{
string path = GetTestFilePath();
byte[] buffer = Encoding.UTF8.GetBytes(new string('c', size));
await File.WriteAllBytesAsync(path, buffer);
Assert.Equal(buffer, await File.ReadAllBytesAsync(path));
File.Delete(path);
}
[Fact]
public Task AlreadyCanceledAsync()
{
string path = GetTestFilePath();
CancellationTokenSource source = new CancellationTokenSource();
CancellationToken token = source.Token;
source.Cancel();
Assert.True(File.WriteAllBytesAsync(path, new byte[0], token).IsCanceled);
return Assert.ThrowsAsync<TaskCanceledException>(
async () => await File.WriteAllBytesAsync(path, new byte[0], token));
}
[Fact]
public async Task OverwriteAsync()
{
string path = GetTestFilePath();
byte[] bytes = Encoding.UTF8.GetBytes(new string('c', 100));
byte[] overwriteBytes = Encoding.UTF8.GetBytes(new string('b', 50));
await File.WriteAllBytesAsync(path, bytes);
await File.WriteAllBytesAsync(path, overwriteBytes);
Assert.Equal(overwriteBytes, await File.ReadAllBytesAsync(path));
}
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsFileLockingEnabled))]
public async Task OpenFile_ThrowsIOExceptionAsync()
{
string path = GetTestFilePath();
byte[] bytes = Encoding.UTF8.GetBytes(new string('c', 100));
using (File.Create(path))
{
await Assert.ThrowsAsync<IOException>(async () => await File.WriteAllBytesAsync(path, bytes));
await Assert.ThrowsAsync<IOException>(async () => await File.ReadAllBytesAsync(path));
}
}
/// <summary>
/// On Unix, modifying a file that is ReadOnly will fail under normal permissions.
/// If the test is being run under the superuser, however, modification of a ReadOnly
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public async Task WriteToReadOnlyFileAsync()
{
string path = GetTestFilePath();
File.Create(path).Dispose();
File.SetAttributes(path, FileAttributes.ReadOnly);
try
{
// Operation succeeds when being run by the Unix superuser
if (PlatformDetection.IsSuperUser)
{
await File.WriteAllBytesAsync(path, Encoding.UTF8.GetBytes("text"));
Assert.Equal(Encoding.UTF8.GetBytes("text"), await File.ReadAllBytesAsync(path));
}
else
await Assert.ThrowsAsync<UnauthorizedAccessException>(async () => await File.WriteAllBytesAsync(path, Encoding.UTF8.GetBytes("text")));
}
finally
{
File.SetAttributes(path, FileAttributes.Normal);
}
}
[Fact]
public async Task EmptyFile_ReturnsEmptyArray()
{
string path = GetTestFilePath();
File.Create(path).Dispose();
Assert.Equal(0, (await File.ReadAllBytesAsync(path)).Length);
}
[Theory]
[PlatformSpecific(TestPlatforms.Linux)]
[InlineData("/proc/cmdline")]
[InlineData("/proc/version")]
[InlineData("/proc/filesystems")]
public async Task ProcFs_EqualsReadAllText(string path)
{
byte[] bytes = null;
string text = null;
const int NumTries = 3; // some of these could theoretically change between reads, so allow retries just in case
for (int i = 1; i <= NumTries; i++)
{
try
{
bytes = await File.ReadAllBytesAsync(path);
text = await File.ReadAllTextAsync(path);
Assert.Equal(text, Encoding.UTF8.GetString(bytes));
}
catch when (i < NumTries) { }
}
}
[Fact]
[PlatformSpecific(TestPlatforms.Linux)]
public async Task ReadAllBytes_ProcFs_Uptime_ContainsTwoNumbers()
{
string text = Encoding.UTF8.GetString(await File.ReadAllBytesAsync("/proc/uptime"));
string[] parts = text.Split(' ', StringSplitOptions.RemoveEmptyEntries);
Assert.Equal(2, parts.Length);
Assert.True(double.TryParse(parts[0].Trim(), out _));
Assert.True(double.TryParse(parts[1].Trim(), out _));
}
[Theory]
[PlatformSpecific(TestPlatforms.Linux)]
[InlineData("/proc/meminfo")]
[InlineData("/proc/stat")]
[InlineData("/proc/cpuinfo")]
public async Task ProcFs_NotEmpty(string path)
{
Assert.InRange((await File.ReadAllBytesAsync(path)).Length, 1, int.MaxValue);
}
[Fact]
[PlatformSpecific(TestPlatforms.Windows)] // DOS device paths (\\.\ and \\?\) are a Windows concept
public async Task ReadAllBytesAsync_NonSeekableFileStream_InWindows()
{
string pipeName = GetNamedPipeServerStreamName();
string pipePath = Path.GetFullPath($@"\\.\pipe\{pipeName}");
var namedPipeWriterStream = new NamedPipeServerStream(pipeName, PipeDirection.Out);
var contentBytes = new byte[] { 1, 2, 3 };
using (var cts = new CancellationTokenSource())
{
Task writingServerTask = WaitConnectionAndWritePipeStreamAsync(namedPipeWriterStream, contentBytes, cts.Token);
Task<byte[]> readTask = File.ReadAllBytesAsync(pipePath, cts.Token);
cts.CancelAfter(TimeSpan.FromSeconds(50));
await writingServerTask;
byte[] readBytes = await readTask;
Assert.Equal<byte>(contentBytes, readBytes);
}
static async Task WaitConnectionAndWritePipeStreamAsync(NamedPipeServerStream namedPipeWriterStream, byte[] contentBytes, CancellationToken cancellationToken)
{
await using (namedPipeWriterStream)
{
await namedPipeWriterStream.WaitForConnectionAsync(cancellationToken);
await namedPipeWriterStream.WriteAsync(contentBytes, cancellationToken);
}
}
}
[Fact]
[PlatformSpecific(TestPlatforms.AnyUnix & ~TestPlatforms.Browser)]
public async Task ReadAllBytesAsync_NonSeekableFileStream_InUnix()
{
string fifoPath = GetTestFilePath();
Assert.Equal(0, mkfifo(fifoPath, 438 /* 666 in octal */ ));
var contentBytes = new byte[] { 1, 2, 3 };
await Task.WhenAll(
Task.Run(async () =>
{
byte[] readBytes = await File.ReadAllBytesAsync(fifoPath);
Assert.Equal<byte>(contentBytes, readBytes);
}),
Task.Run(() =>
{
using var fs = new FileStream(fifoPath, FileMode.Open, FileAccess.Write, FileShare.Read);
foreach (byte content in contentBytes)
{
fs.WriteByte(content);
}
}));
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd.Arm64/CompareLessThanOrEqual.Vector128.UInt64.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.Arm;
namespace JIT.HardwareIntrinsics.Arm
{
public static partial class Program
{
private static void CompareLessThanOrEqual_Vector128_UInt64()
{
var test = new SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64();
if (test.IsSupported)
{
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates basic functionality works, using Load
test.RunBasicScenario_Load();
}
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates calling via reflection works, using Load
test.RunReflectionScenario_Load();
}
// Validates passing a static member works
test.RunClsVarScenario();
if (AdvSimd.IsSupported)
{
// Validates passing a static member works, using pinning and Load
test.RunClsVarScenario_Load();
}
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates passing a local works, using Load
test.RunLclVarScenario_Load();
}
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local class works, using pinning and Load
test.RunClassLclFldScenario_Load();
}
// Validates passing an instance member of a class works
test.RunClassFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a class works, using pinning and Load
test.RunClassFldScenario_Load();
}
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local struct works, using pinning and Load
test.RunStructLclFldScenario_Load();
}
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a struct works, using pinning and Load
test.RunStructFldScenario_Load();
}
}
else
{
// Validates we throw on unsupported hardware
test.RunUnsupportedScenario();
}
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle outHandle;
private ulong alignment;
public DataTable(UInt64[] inArray1, UInt64[] inArray2, UInt64[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<UInt64>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<UInt64>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<UInt64>();
if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<UInt64, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<UInt64, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<UInt64> _fld1;
public Vector128<UInt64> _fld2;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
return testStruct;
}
public void RunStructFldScenario(SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64 testClass)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(_fld1, _fld2);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
public void RunStructFldScenario_Load(SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64 testClass)
{
fixed (Vector128<UInt64>* pFld1 = &_fld1)
fixed (Vector128<UInt64>* pFld2 = &_fld2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pFld1)),
AdvSimd.LoadVector128((UInt64*)(pFld2))
);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64);
private static UInt64[] _data1 = new UInt64[Op1ElementCount];
private static UInt64[] _data2 = new UInt64[Op2ElementCount];
private static Vector128<UInt64> _clsVar1;
private static Vector128<UInt64> _clsVar2;
private Vector128<UInt64> _fld1;
private Vector128<UInt64> _fld2;
private DataTable _dataTable;
static SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
}
public SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
_dataTable = new DataTable(_data1, _data2, new UInt64[RetElementCount], LargestVectorSize);
}
public bool IsSupported => AdvSimd.Arm64.IsSupported;
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr)
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunBasicScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray2Ptr))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.CompareLessThanOrEqual), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>) })
.Invoke(null, new object[] {
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr)
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load));
var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.CompareLessThanOrEqual), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>) })
.Invoke(null, new object[] {
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray2Ptr))
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
_clsVar1,
_clsVar2
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
public void RunClsVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load));
fixed (Vector128<UInt64>* pClsVar1 = &_clsVar1)
fixed (Vector128<UInt64>* pClsVar2 = &_clsVar2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pClsVar1)),
AdvSimd.LoadVector128((UInt64*)(pClsVar2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr);
var result = AdvSimd.Arm64.CompareLessThanOrEqual(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load));
var op1 = AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr));
var op2 = AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray2Ptr));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64();
var result = AdvSimd.Arm64.CompareLessThanOrEqual(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load));
var test = new SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64();
fixed (Vector128<UInt64>* pFld1 = &test._fld1)
fixed (Vector128<UInt64>* pFld2 = &test._fld2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pFld1)),
AdvSimd.LoadVector128((UInt64*)(pFld2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(_fld1, _fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
public void RunClassFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load));
fixed (Vector128<UInt64>* pFld1 = &_fld1)
fixed (Vector128<UInt64>* pFld2 = &_fld2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pFld1)),
AdvSimd.LoadVector128((UInt64*)(pFld2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = AdvSimd.Arm64.CompareLessThanOrEqual(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load));
var test = TestStruct.Create();
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(&test._fld1)),
AdvSimd.LoadVector128((UInt64*)(&test._fld2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
public void RunStructFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load));
var test = TestStruct.Create();
test.RunStructFldScenario_Load(this);
}
public void RunUnsupportedScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario));
bool succeeded = false;
try
{
RunBasicScenario_UnsafeRead();
}
catch (PlatformNotSupportedException)
{
succeeded = true;
}
if (!succeeded)
{
Succeeded = false;
}
}
private void ValidateResult(Vector128<UInt64> op1, Vector128<UInt64> op2, void* result, [CallerMemberName] string method = "")
{
UInt64[] inArray1 = new UInt64[Op1ElementCount];
UInt64[] inArray2 = new UInt64[Op2ElementCount];
UInt64[] outArray = new UInt64[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), op2);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "")
{
UInt64[] inArray1 = new UInt64[Op1ElementCount];
UInt64[] inArray2 = new UInt64[Op2ElementCount];
UInt64[] outArray = new UInt64[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(UInt64[] left, UInt64[] right, UInt64[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
for (var i = 0; i < RetElementCount; i++)
{
if (Helpers.CompareLessThanOrEqual(left[i], right[i]) != result[i])
{
succeeded = false;
break;
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd.Arm64)}.{nameof(AdvSimd.Arm64.CompareLessThanOrEqual)}<UInt64>(Vector128<UInt64>, Vector128<UInt64>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})");
TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.Arm;
namespace JIT.HardwareIntrinsics.Arm
{
public static partial class Program
{
private static void CompareLessThanOrEqual_Vector128_UInt64()
{
var test = new SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64();
if (test.IsSupported)
{
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates basic functionality works, using Load
test.RunBasicScenario_Load();
}
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates calling via reflection works, using Load
test.RunReflectionScenario_Load();
}
// Validates passing a static member works
test.RunClsVarScenario();
if (AdvSimd.IsSupported)
{
// Validates passing a static member works, using pinning and Load
test.RunClsVarScenario_Load();
}
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
if (AdvSimd.IsSupported)
{
// Validates passing a local works, using Load
test.RunLclVarScenario_Load();
}
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local class works, using pinning and Load
test.RunClassLclFldScenario_Load();
}
// Validates passing an instance member of a class works
test.RunClassFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a class works, using pinning and Load
test.RunClassFldScenario_Load();
}
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing the field of a local struct works, using pinning and Load
test.RunStructLclFldScenario_Load();
}
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (AdvSimd.IsSupported)
{
// Validates passing an instance member of a struct works, using pinning and Load
test.RunStructFldScenario_Load();
}
}
else
{
// Validates we throw on unsupported hardware
test.RunUnsupportedScenario();
}
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle outHandle;
private ulong alignment;
public DataTable(UInt64[] inArray1, UInt64[] inArray2, UInt64[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<UInt64>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<UInt64>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<UInt64>();
if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<UInt64, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<UInt64, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<UInt64> _fld1;
public Vector128<UInt64> _fld2;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
return testStruct;
}
public void RunStructFldScenario(SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64 testClass)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(_fld1, _fld2);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
public void RunStructFldScenario_Load(SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64 testClass)
{
fixed (Vector128<UInt64>* pFld1 = &_fld1)
fixed (Vector128<UInt64>* pFld2 = &_fld2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pFld1)),
AdvSimd.LoadVector128((UInt64*)(pFld2))
);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64);
private static UInt64[] _data1 = new UInt64[Op1ElementCount];
private static UInt64[] _data2 = new UInt64[Op2ElementCount];
private static Vector128<UInt64> _clsVar1;
private static Vector128<UInt64> _clsVar2;
private Vector128<UInt64> _fld1;
private Vector128<UInt64> _fld2;
private DataTable _dataTable;
static SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
}
public SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); }
_dataTable = new DataTable(_data1, _data2, new UInt64[RetElementCount], LargestVectorSize);
}
public bool IsSupported => AdvSimd.Arm64.IsSupported;
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr)
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunBasicScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray2Ptr))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.CompareLessThanOrEqual), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>) })
.Invoke(null, new object[] {
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr)
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load));
var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.CompareLessThanOrEqual), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>) })
.Invoke(null, new object[] {
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)),
AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray2Ptr))
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
_clsVar1,
_clsVar2
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
public void RunClsVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load));
fixed (Vector128<UInt64>* pClsVar1 = &_clsVar1)
fixed (Vector128<UInt64>* pClsVar2 = &_clsVar2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pClsVar1)),
AdvSimd.LoadVector128((UInt64*)(pClsVar2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr);
var result = AdvSimd.Arm64.CompareLessThanOrEqual(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load));
var op1 = AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr));
var op2 = AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray2Ptr));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64();
var result = AdvSimd.Arm64.CompareLessThanOrEqual(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load));
var test = new SimpleBinaryOpTest__CompareLessThanOrEqual_Vector128_UInt64();
fixed (Vector128<UInt64>* pFld1 = &test._fld1)
fixed (Vector128<UInt64>* pFld2 = &test._fld2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pFld1)),
AdvSimd.LoadVector128((UInt64*)(pFld2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = AdvSimd.Arm64.CompareLessThanOrEqual(_fld1, _fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
public void RunClassFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load));
fixed (Vector128<UInt64>* pFld1 = &_fld1)
fixed (Vector128<UInt64>* pFld2 = &_fld2)
{
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(pFld1)),
AdvSimd.LoadVector128((UInt64*)(pFld2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = AdvSimd.Arm64.CompareLessThanOrEqual(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load));
var test = TestStruct.Create();
var result = AdvSimd.Arm64.CompareLessThanOrEqual(
AdvSimd.LoadVector128((UInt64*)(&test._fld1)),
AdvSimd.LoadVector128((UInt64*)(&test._fld2))
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
public void RunStructFldScenario_Load()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load));
var test = TestStruct.Create();
test.RunStructFldScenario_Load(this);
}
public void RunUnsupportedScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario));
bool succeeded = false;
try
{
RunBasicScenario_UnsafeRead();
}
catch (PlatformNotSupportedException)
{
succeeded = true;
}
if (!succeeded)
{
Succeeded = false;
}
}
private void ValidateResult(Vector128<UInt64> op1, Vector128<UInt64> op2, void* result, [CallerMemberName] string method = "")
{
UInt64[] inArray1 = new UInt64[Op1ElementCount];
UInt64[] inArray2 = new UInt64[Op2ElementCount];
UInt64[] outArray = new UInt64[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), op2);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "")
{
UInt64[] inArray1 = new UInt64[Op1ElementCount];
UInt64[] inArray2 = new UInt64[Op2ElementCount];
UInt64[] outArray = new UInt64[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(UInt64[] left, UInt64[] right, UInt64[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
for (var i = 0; i < RetElementCount; i++)
{
if (Helpers.CompareLessThanOrEqual(left[i], right[i]) != result[i])
{
succeeded = false;
break;
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd.Arm64)}.{nameof(AdvSimd.Arm64.CompareLessThanOrEqual)}<UInt64>(Vector128<UInt64>, Vector128<UInt64>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})");
TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Private.CoreLib/src/System/Text/SpanLineEnumerator.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Text
{
/// <summary>
/// Enumerates the lines of a <see cref="ReadOnlySpan{Char}"/>.
/// </summary>
/// <remarks>
/// To get an instance of this type, use <see cref="MemoryExtensions.EnumerateLines(ReadOnlySpan{char})"/>.
/// </remarks>
public ref struct SpanLineEnumerator
{
private ReadOnlySpan<char> _remaining;
private ReadOnlySpan<char> _current;
private bool _isEnumeratorActive;
internal SpanLineEnumerator(ReadOnlySpan<char> buffer)
{
_remaining = buffer;
_current = default;
_isEnumeratorActive = true;
}
/// <summary>
/// Gets the line at the current position of the enumerator.
/// </summary>
public ReadOnlySpan<char> Current => _current;
/// <summary>
/// Returns this instance as an enumerator.
/// </summary>
public SpanLineEnumerator GetEnumerator() => this;
/// <summary>
/// Advances the enumerator to the next line of the span.
/// </summary>
/// <returns>
/// True if the enumerator successfully advanced to the next line; false if
/// the enumerator has advanced past the end of the span.
/// </returns>
public bool MoveNext()
{
if (!_isEnumeratorActive)
{
return false; // EOF previously reached or enumerator was never initialized
}
int idx = string.IndexOfNewlineChar(_remaining, out int stride);
if (idx >= 0)
{
_current = _remaining.Slice(0, idx);
_remaining = _remaining.Slice(idx + stride);
}
else
{
// We've reached EOF, but we still need to return 'true' for this final
// iteration so that the caller can query the Current property once more.
_current = _remaining;
_remaining = default;
_isEnumeratorActive = false;
}
return true;
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Text
{
/// <summary>
/// Enumerates the lines of a <see cref="ReadOnlySpan{Char}"/>.
/// </summary>
/// <remarks>
/// To get an instance of this type, use <see cref="MemoryExtensions.EnumerateLines(ReadOnlySpan{char})"/>.
/// </remarks>
public ref struct SpanLineEnumerator
{
private ReadOnlySpan<char> _remaining;
private ReadOnlySpan<char> _current;
private bool _isEnumeratorActive;
internal SpanLineEnumerator(ReadOnlySpan<char> buffer)
{
_remaining = buffer;
_current = default;
_isEnumeratorActive = true;
}
/// <summary>
/// Gets the line at the current position of the enumerator.
/// </summary>
public ReadOnlySpan<char> Current => _current;
/// <summary>
/// Returns this instance as an enumerator.
/// </summary>
public SpanLineEnumerator GetEnumerator() => this;
/// <summary>
/// Advances the enumerator to the next line of the span.
/// </summary>
/// <returns>
/// True if the enumerator successfully advanced to the next line; false if
/// the enumerator has advanced past the end of the span.
/// </returns>
public bool MoveNext()
{
if (!_isEnumeratorActive)
{
return false; // EOF previously reached or enumerator was never initialized
}
int idx = string.IndexOfNewlineChar(_remaining, out int stride);
if (idx >= 0)
{
_current = _remaining.Slice(0, idx);
_remaining = _remaining.Slice(idx + stride);
}
else
{
// We've reached EOF, but we still need to return 'true' for this final
// iteration so that the caller can query the Current property once more.
_current = _remaining;
_remaining = default;
_isEnumeratorActive = false;
}
return true;
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/Microsoft.Win32.SystemEvents/tests/SystemEvents.UserPreference.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading;
using Xunit;
using static Interop;
namespace Microsoft.Win32.SystemEventsTests
{
public class UserPreferenceTests : SystemEventsTest
{
private void SendMessage(int message, int uiAction, string area, bool freeMemory = true)
{
var areaPtr = Marshal.StringToHGlobalUni(area);
try
{
SendMessage((int)message, (IntPtr)uiAction, areaPtr);
}
finally
{
if (freeMemory)
{
Marshal.FreeHGlobal(areaPtr);
}
}
}
private void SendReflectedMessage(int message, int uiAction, string area)
{
// WM_REFLECT is an internal message where the SystemEvents WndProc will copy
// the lParam and pass it back in a posted message. In that case it expects
// to be the source of the message and will free the memory itself.
SendMessage(User32.WM_REFLECT + message, uiAction, area, freeMemory:false);
}
public static IEnumerable<object[]> PreferenceChangingCases() =>
new List<object[]>()
{
new object[] { User32.WM_SETTINGCHANGE, 0, "Policy", UserPreferenceCategory.Policy },
new object[] { User32.WM_SETTINGCHANGE, 0, "intl", UserPreferenceCategory.Locale },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACCESSTIMEOUT, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFILTERKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETHIGHCONTRAST, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENREADER, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSERIALKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSHOWSOUNDS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSOUNDSENTRY, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSTICKYKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETTOGGLEKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDESKWALLPAPER, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFONTSMOOTHING, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCURSORS, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDESKPATTERN, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETGRIDGRANULARITY, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETWORKAREA, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_ICONHORIZONTALSPACING, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_ICONVERTICALSPACING, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONMETRICS, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONS, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONTITLELOGFONT, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONTITLEWRAP, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDOUBLECLICKTIME, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDOUBLECLKHEIGHT, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDOUBLECLKWIDTH, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSE, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEBUTTONSWAP, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEHOVERHEIGHT, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEHOVERTIME, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSESPEED, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSETRAILS, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSNAPTODEFBUTTON, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETWHEELSCROLLLINES, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCURSORSHADOW, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETHOTTRACKING, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETTOOLTIPANIMATION, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETTOOLTIPFADE, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDDELAY, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDPREF, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDSPEED, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLANGTOGGLE, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUDROPALIGNMENT, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUFADE, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUSHOWDELAY, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUANIMATION, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSELECTIONFADE, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLOWPOWERACTIVE, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLOWPOWERTIMEOUT, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETPOWEROFFACTIVE, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETPOWEROFFTIMEOUT, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENSAVEACTIVE, null, UserPreferenceCategory.Screensaver },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENSAVERRUNNING, null, UserPreferenceCategory.Screensaver },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENSAVETIMEOUT, null, UserPreferenceCategory.Screensaver },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDCUES, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCOMBOBOXANIMATION, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLISTBOXSMOOTHSCROLLING, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETGRADIENTCAPTIONS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETUIEFFECTS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACTIVEWINDOWTRACKING, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACTIVEWNDTRKZORDER, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACTIVEWNDTRKTIMEOUT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETANIMATION, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETBORDER, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCARETWIDTH, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDRAGFULLWINDOWS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDRAGHEIGHT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDRAGWIDTH, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFOREGROUNDFLASHCOUNT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFOREGROUNDLOCKTIMEOUT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMINIMIZEDMETRICS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETNONCLIENTMETRICS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSHOWIMEUI, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SYSCOLORCHANGE, 0, null, UserPreferenceCategory.Color },
};
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
[MemberData(nameof(PreferenceChangingCases))]
public void SignalsUserPreferenceEventsAsynchronously(int message, int uiAction, string area, UserPreferenceCategory expectedCategory)
{
var changing = new AutoResetEvent(false);
var changed = new AutoResetEvent(false);
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing.Set();
};
UserPreferenceChangedEventArgs changedArgs = null;
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs = e;
changingDuringChanged = changingArgs;
changed.Set();
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendMessage(message, uiAction, area);
Assert.True(changing.WaitOne(PostMessageWait));
Assert.NotNull(changingArgs);
Assert.Equal(expectedCategory, changingArgs.Category);
Assert.True(changed.WaitOne(PostMessageWait));
Assert.NotNull(changedArgs);
Assert.Equal(expectedCategory, changedArgs.Category);
// changed must follow changing for the same category
Assert.NotNull(changingDuringChanged);
Assert.Equal(expectedCategory, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
changing.Dispose();
changed.Dispose();
}
}
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
public void SignalsUserPreferenceEventsAsynchronouslyOnThemeChanged()
{
var changing = new AutoResetEvent(false);
var changed = new AutoResetEvent(false);
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing.Set();
};
List<UserPreferenceChangedEventArgs> changedArgs = new List<UserPreferenceChangedEventArgs>();
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs.Add(e);
changingDuringChanged = changingArgs;
// signal test to continue after two events were received
if (changedArgs.Count > 1)
{
changed.Set();
}
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendMessage(User32.WM_THEMECHANGED, 0, null);
Assert.True(changing.WaitOne(PostMessageWait));
Assert.NotNull(changingArgs);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingArgs.Category);
Assert.True(changed.WaitOne(PostMessageWait));
Assert.Equal(2, changedArgs.Count);
Assert.NotNull(changedArgs[0]);
Assert.Equal(UserPreferenceCategory.Window, changedArgs[0].Category);
Assert.NotNull(changedArgs[1]);
Assert.Equal(UserPreferenceCategory.VisualStyle, changedArgs[1].Category);
// changed must follow changing for VisualStyle
Assert.NotNull(changingDuringChanged);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
changing.Dispose();
changed.Dispose();
}
}
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
[MemberData(nameof(PreferenceChangingCases))]
public void SignalsUserPreferenceEventsSynchronously(int message, int uiAction, string area, UserPreferenceCategory expectedCategory)
{
bool changing = false, changed = false;
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing = true;
};
UserPreferenceChangedEventArgs changedArgs = null;
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs = e;
changingDuringChanged = changingArgs;
changed = true;
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendReflectedMessage(message, uiAction, area);
Assert.True(changing);
Assert.NotNull(changingArgs);
Assert.Equal(expectedCategory, changingArgs.Category);
Assert.True(changed);
Assert.NotNull(changedArgs);
Assert.Equal(expectedCategory, changedArgs.Category);
// changed must follow changing for the same category
Assert.NotNull(changingDuringChanged);
Assert.Equal(expectedCategory, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
}
}
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
public void SignalsUserPreferenceEventsSynchronouslyOnReflectedThemeChanged()
{
bool changing = false, changed = false;
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing = true;
};
List<UserPreferenceChangedEventArgs> changedArgs = new List<UserPreferenceChangedEventArgs>();
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs.Add(e);
changingDuringChanged = changingArgs;
changed = true;
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendReflectedMessage(User32.WM_THEMECHANGED, 0, null);
Assert.True(changing);
Assert.NotNull(changingArgs);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingArgs.Category);
Assert.True(changed);
Assert.Equal(2, changedArgs.Count);
Assert.NotNull(changedArgs[0]);
Assert.Equal(UserPreferenceCategory.Window, changedArgs[0].Category);
Assert.NotNull(changedArgs[1]);
Assert.Equal(UserPreferenceCategory.VisualStyle, changedArgs[1].Category);
// changed must follow changing for VisualStyle
Assert.NotNull(changingDuringChanged);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading;
using Xunit;
using static Interop;
namespace Microsoft.Win32.SystemEventsTests
{
public class UserPreferenceTests : SystemEventsTest
{
private void SendMessage(int message, int uiAction, string area, bool freeMemory = true)
{
var areaPtr = Marshal.StringToHGlobalUni(area);
try
{
SendMessage((int)message, (IntPtr)uiAction, areaPtr);
}
finally
{
if (freeMemory)
{
Marshal.FreeHGlobal(areaPtr);
}
}
}
private void SendReflectedMessage(int message, int uiAction, string area)
{
// WM_REFLECT is an internal message where the SystemEvents WndProc will copy
// the lParam and pass it back in a posted message. In that case it expects
// to be the source of the message and will free the memory itself.
SendMessage(User32.WM_REFLECT + message, uiAction, area, freeMemory:false);
}
public static IEnumerable<object[]> PreferenceChangingCases() =>
new List<object[]>()
{
new object[] { User32.WM_SETTINGCHANGE, 0, "Policy", UserPreferenceCategory.Policy },
new object[] { User32.WM_SETTINGCHANGE, 0, "intl", UserPreferenceCategory.Locale },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACCESSTIMEOUT, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFILTERKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETHIGHCONTRAST, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENREADER, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSERIALKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSHOWSOUNDS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSOUNDSENTRY, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSTICKYKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETTOGGLEKEYS, null, UserPreferenceCategory.Accessibility },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDESKWALLPAPER, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFONTSMOOTHING, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCURSORS, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDESKPATTERN, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETGRIDGRANULARITY, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETWORKAREA, null, UserPreferenceCategory.Desktop },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_ICONHORIZONTALSPACING, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_ICONVERTICALSPACING, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONMETRICS, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONS, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONTITLELOGFONT, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETICONTITLEWRAP, null, UserPreferenceCategory.Icon },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDOUBLECLICKTIME, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDOUBLECLKHEIGHT, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDOUBLECLKWIDTH, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSE, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEBUTTONSWAP, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEHOVERHEIGHT, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSEHOVERTIME, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSESPEED, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMOUSETRAILS, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSNAPTODEFBUTTON, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETWHEELSCROLLLINES, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCURSORSHADOW, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETHOTTRACKING, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETTOOLTIPANIMATION, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETTOOLTIPFADE, null, UserPreferenceCategory.Mouse },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDDELAY, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDPREF, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDSPEED, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLANGTOGGLE, null, UserPreferenceCategory.Keyboard },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUDROPALIGNMENT, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUFADE, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUSHOWDELAY, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMENUANIMATION, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSELECTIONFADE, null, UserPreferenceCategory.Menu },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLOWPOWERACTIVE, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLOWPOWERTIMEOUT, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETPOWEROFFACTIVE, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETPOWEROFFTIMEOUT, null, UserPreferenceCategory.Power },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENSAVEACTIVE, null, UserPreferenceCategory.Screensaver },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENSAVERRUNNING, null, UserPreferenceCategory.Screensaver },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSCREENSAVETIMEOUT, null, UserPreferenceCategory.Screensaver },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETKEYBOARDCUES, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCOMBOBOXANIMATION, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETLISTBOXSMOOTHSCROLLING, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETGRADIENTCAPTIONS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETUIEFFECTS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACTIVEWINDOWTRACKING, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACTIVEWNDTRKZORDER, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETACTIVEWNDTRKTIMEOUT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETANIMATION, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETBORDER, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETCARETWIDTH, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDRAGFULLWINDOWS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDRAGHEIGHT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETDRAGWIDTH, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFOREGROUNDFLASHCOUNT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETFOREGROUNDLOCKTIMEOUT, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETMINIMIZEDMETRICS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETNONCLIENTMETRICS, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SETTINGCHANGE, User32.SPI_SETSHOWIMEUI, null, UserPreferenceCategory.Window },
new object[] { User32.WM_SYSCOLORCHANGE, 0, null, UserPreferenceCategory.Color },
};
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
[MemberData(nameof(PreferenceChangingCases))]
public void SignalsUserPreferenceEventsAsynchronously(int message, int uiAction, string area, UserPreferenceCategory expectedCategory)
{
var changing = new AutoResetEvent(false);
var changed = new AutoResetEvent(false);
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing.Set();
};
UserPreferenceChangedEventArgs changedArgs = null;
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs = e;
changingDuringChanged = changingArgs;
changed.Set();
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendMessage(message, uiAction, area);
Assert.True(changing.WaitOne(PostMessageWait));
Assert.NotNull(changingArgs);
Assert.Equal(expectedCategory, changingArgs.Category);
Assert.True(changed.WaitOne(PostMessageWait));
Assert.NotNull(changedArgs);
Assert.Equal(expectedCategory, changedArgs.Category);
// changed must follow changing for the same category
Assert.NotNull(changingDuringChanged);
Assert.Equal(expectedCategory, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
changing.Dispose();
changed.Dispose();
}
}
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
public void SignalsUserPreferenceEventsAsynchronouslyOnThemeChanged()
{
var changing = new AutoResetEvent(false);
var changed = new AutoResetEvent(false);
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing.Set();
};
List<UserPreferenceChangedEventArgs> changedArgs = new List<UserPreferenceChangedEventArgs>();
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs.Add(e);
changingDuringChanged = changingArgs;
// signal test to continue after two events were received
if (changedArgs.Count > 1)
{
changed.Set();
}
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendMessage(User32.WM_THEMECHANGED, 0, null);
Assert.True(changing.WaitOne(PostMessageWait));
Assert.NotNull(changingArgs);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingArgs.Category);
Assert.True(changed.WaitOne(PostMessageWait));
Assert.Equal(2, changedArgs.Count);
Assert.NotNull(changedArgs[0]);
Assert.Equal(UserPreferenceCategory.Window, changedArgs[0].Category);
Assert.NotNull(changedArgs[1]);
Assert.Equal(UserPreferenceCategory.VisualStyle, changedArgs[1].Category);
// changed must follow changing for VisualStyle
Assert.NotNull(changingDuringChanged);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
changing.Dispose();
changed.Dispose();
}
}
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
[MemberData(nameof(PreferenceChangingCases))]
public void SignalsUserPreferenceEventsSynchronously(int message, int uiAction, string area, UserPreferenceCategory expectedCategory)
{
bool changing = false, changed = false;
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing = true;
};
UserPreferenceChangedEventArgs changedArgs = null;
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs = e;
changingDuringChanged = changingArgs;
changed = true;
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendReflectedMessage(message, uiAction, area);
Assert.True(changing);
Assert.NotNull(changingArgs);
Assert.Equal(expectedCategory, changingArgs.Category);
Assert.True(changed);
Assert.NotNull(changedArgs);
Assert.Equal(expectedCategory, changedArgs.Category);
// changed must follow changing for the same category
Assert.NotNull(changingDuringChanged);
Assert.Equal(expectedCategory, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
}
}
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]
public void SignalsUserPreferenceEventsSynchronouslyOnReflectedThemeChanged()
{
bool changing = false, changed = false;
UserPreferenceChangingEventArgs changingArgs = null;
UserPreferenceChangingEventHandler changingHandler = (o, e) =>
{
changingArgs = e;
changing = true;
};
List<UserPreferenceChangedEventArgs> changedArgs = new List<UserPreferenceChangedEventArgs>();
UserPreferenceChangingEventArgs changingDuringChanged = null;
UserPreferenceChangedEventHandler changedHandler = (o, e) =>
{
changedArgs.Add(e);
changingDuringChanged = changingArgs;
changed = true;
};
SystemEvents.UserPreferenceChanging += changingHandler;
SystemEvents.UserPreferenceChanged += changedHandler;
try
{
SendReflectedMessage(User32.WM_THEMECHANGED, 0, null);
Assert.True(changing);
Assert.NotNull(changingArgs);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingArgs.Category);
Assert.True(changed);
Assert.Equal(2, changedArgs.Count);
Assert.NotNull(changedArgs[0]);
Assert.Equal(UserPreferenceCategory.Window, changedArgs[0].Category);
Assert.NotNull(changedArgs[1]);
Assert.Equal(UserPreferenceCategory.VisualStyle, changedArgs[1].Category);
// changed must follow changing for VisualStyle
Assert.NotNull(changingDuringChanged);
Assert.Equal(UserPreferenceCategory.VisualStyle, changingDuringChanged.Category);
}
finally
{
SystemEvents.UserPreferenceChanging -= changingHandler;
SystemEvents.UserPreferenceChanged -= changedHandler;
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/baseservices/threading/generics/threadstart/thread28.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Threading;
struct Gen<T>
{
public static void Target<U>()
{
//dummy line to avoid warnings
Test_thread28.Eval(typeof(U)!=null);
Interlocked.Increment(ref Test_thread28.Xcounter);
}
public static void ThreadPoolTest<U>()
{
Thread[] threads = new Thread[Test_thread28.nThreads];
for (int i = 0; i < Test_thread28.nThreads; i++)
{
threads[i] = new Thread(new ThreadStart(Gen<T>.Target<U>));
threads[i].Start();
}
for (int i = 0; i < Test_thread28.nThreads; i++)
{
threads[i].Join();
}
Test_thread28.Eval(Test_thread28.Xcounter==Test_thread28.nThreads);
Test_thread28.Xcounter = 0;
}
}
public class Test_thread28
{
public static int nThreads =50;
public static int counter = 0;
public static int Xcounter = 0;
public static bool result = true;
public static void Eval(bool exp)
{
counter++;
if (!exp)
{
result = exp;
Console.WriteLine("Test Failed at location: " + counter);
}
}
public static int Main()
{
Gen<int>.ThreadPoolTest<object>();
Gen<double>.ThreadPoolTest<string>();
Gen<string>.ThreadPoolTest<Guid>();
Gen<object>.ThreadPoolTest<int>();
Gen<Guid>.ThreadPoolTest<double>();
if (result)
{
Console.WriteLine("Test Passed");
return 100;
}
else
{
Console.WriteLine("Test Failed");
return 1;
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Threading;
struct Gen<T>
{
public static void Target<U>()
{
//dummy line to avoid warnings
Test_thread28.Eval(typeof(U)!=null);
Interlocked.Increment(ref Test_thread28.Xcounter);
}
public static void ThreadPoolTest<U>()
{
Thread[] threads = new Thread[Test_thread28.nThreads];
for (int i = 0; i < Test_thread28.nThreads; i++)
{
threads[i] = new Thread(new ThreadStart(Gen<T>.Target<U>));
threads[i].Start();
}
for (int i = 0; i < Test_thread28.nThreads; i++)
{
threads[i].Join();
}
Test_thread28.Eval(Test_thread28.Xcounter==Test_thread28.nThreads);
Test_thread28.Xcounter = 0;
}
}
public class Test_thread28
{
public static int nThreads =50;
public static int counter = 0;
public static int Xcounter = 0;
public static bool result = true;
public static void Eval(bool exp)
{
counter++;
if (!exp)
{
result = exp;
Console.WriteLine("Test Failed at location: " + counter);
}
}
public static int Main()
{
Gen<int>.ThreadPoolTest<object>();
Gen<double>.ThreadPoolTest<string>();
Gen<string>.ThreadPoolTest<Guid>();
Gen<object>.ThreadPoolTest<int>();
Gen<Guid>.ThreadPoolTest<double>();
if (result)
{
Console.WriteLine("Test Passed");
return 100;
}
else
{
Console.WriteLine("Test Failed");
return 1;
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Net.Http/tests/UnitTests/Headers/CacheControlHeaderParserTest.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Net.Http.Headers;
using Xunit;
namespace System.Net.Http.Tests
{
public class CacheControlHeaderParserTest
{
[Fact]
public void Properties_ReadValues_MatchExpectation()
{
HttpHeaderParser parser = CacheControlHeaderParser.Parser;
Assert.True(parser.SupportsMultipleValues);
Assert.Null(parser.Comparer);
}
[Fact]
public void TryParse_SetOfValidValueStrings_ParsedCorrectly()
{
// Just verify parser is implemented correctly. Don't try to test syntax parsed by CacheControlHeaderValue.
CacheControlHeaderValue expected = new CacheControlHeaderValue();
expected.NoStore = true;
expected.MinFresh = new TimeSpan(0, 2, 3);
CheckValidParsedValue("X , , no-store, min-fresh=123", 1, expected, 29);
expected = new CacheControlHeaderValue();
expected.MaxStale = true;
expected.NoCache = true;
expected.NoCacheHeaders.Add("t");
CheckValidParsedValue("max-stale, no-cache=\"t\", ,,", 0, expected, 27);
}
[Fact]
public void TryParse_SetOfInvalidValueStrings_ReturnsFalse()
{
CheckInvalidParsedValue("no-cache,=", 0);
CheckInvalidParsedValue("max-age=123x", 0);
CheckInvalidParsedValue("=no-cache", 0);
CheckInvalidParsedValue("no-cache no-store", 0);
CheckInvalidParsedValue("invalid =", 0);
CheckInvalidParsedValue("\u4F1A", 0);
}
#region Helper methods
private void CheckValidParsedValue(string input, int startIndex, CacheControlHeaderValue expectedResult,
int expectedIndex)
{
HttpHeaderParser parser = CacheControlHeaderParser.Parser;
object result = null;
Assert.True(parser.TryParseValue(input, null, ref startIndex, out result));
Assert.Equal(expectedIndex, startIndex);
Assert.Equal(result, expectedResult);
}
private void CheckInvalidParsedValue(string input, int startIndex)
{
HttpHeaderParser parser = CacheControlHeaderParser.Parser;
object result = null;
int newIndex = startIndex;
Assert.False(parser.TryParseValue(input, null, ref newIndex, out result));
Assert.Null(result);
Assert.Equal(startIndex, newIndex);
}
#endregion
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Net.Http.Headers;
using Xunit;
namespace System.Net.Http.Tests
{
public class CacheControlHeaderParserTest
{
[Fact]
public void Properties_ReadValues_MatchExpectation()
{
HttpHeaderParser parser = CacheControlHeaderParser.Parser;
Assert.True(parser.SupportsMultipleValues);
Assert.Null(parser.Comparer);
}
[Fact]
public void TryParse_SetOfValidValueStrings_ParsedCorrectly()
{
// Just verify parser is implemented correctly. Don't try to test syntax parsed by CacheControlHeaderValue.
CacheControlHeaderValue expected = new CacheControlHeaderValue();
expected.NoStore = true;
expected.MinFresh = new TimeSpan(0, 2, 3);
CheckValidParsedValue("X , , no-store, min-fresh=123", 1, expected, 29);
expected = new CacheControlHeaderValue();
expected.MaxStale = true;
expected.NoCache = true;
expected.NoCacheHeaders.Add("t");
CheckValidParsedValue("max-stale, no-cache=\"t\", ,,", 0, expected, 27);
}
[Fact]
public void TryParse_SetOfInvalidValueStrings_ReturnsFalse()
{
CheckInvalidParsedValue("no-cache,=", 0);
CheckInvalidParsedValue("max-age=123x", 0);
CheckInvalidParsedValue("=no-cache", 0);
CheckInvalidParsedValue("no-cache no-store", 0);
CheckInvalidParsedValue("invalid =", 0);
CheckInvalidParsedValue("\u4F1A", 0);
}
#region Helper methods
private void CheckValidParsedValue(string input, int startIndex, CacheControlHeaderValue expectedResult,
int expectedIndex)
{
HttpHeaderParser parser = CacheControlHeaderParser.Parser;
object result = null;
Assert.True(parser.TryParseValue(input, null, ref startIndex, out result));
Assert.Equal(expectedIndex, startIndex);
Assert.Equal(result, expectedResult);
}
private void CheckInvalidParsedValue(string input, int startIndex)
{
HttpHeaderParser parser = CacheControlHeaderParser.Parser;
object result = null;
int newIndex = startIndex;
Assert.False(parser.TryParseValue(input, null, ref newIndex, out result));
Assert.Null(result);
Assert.Equal(startIndex, newIndex);
}
#endregion
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.CodeDom/src/System/CodeDom/CodeRegionDirective.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.CodeDom
{
public class CodeRegionDirective : CodeDirective
{
private string _regionText;
public CodeRegionDirective() { }
public CodeRegionDirective(CodeRegionMode regionMode, string regionText)
{
RegionText = regionText;
RegionMode = regionMode;
}
public string RegionText
{
get => _regionText ?? string.Empty;
set => _regionText = value;
}
public CodeRegionMode RegionMode { get; set; }
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.CodeDom
{
public class CodeRegionDirective : CodeDirective
{
private string _regionText;
public CodeRegionDirective() { }
public CodeRegionDirective(CodeRegionMode regionMode, string regionText)
{
RegionText = regionText;
RegionMode = regionMode;
}
public string RegionText
{
get => _regionText ?? string.Empty;
set => _regionText = value;
}
public CodeRegionMode RegionMode { get; set; }
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.Forwards.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// ------------------------------------------------------------------------------
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSiteBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSite))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSite<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSiteHelpers))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.DynamicAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.DynamicExpression))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.DynamicExpressionVisitor))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicMetaObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicMetaObjectBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.BindingRestrictions))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.BinaryOperationBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.CallInfo))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.ConvertBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.CreateInstanceBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DeleteIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DeleteMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.GetIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.GetMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.InvokeBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.InvokeMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.SetIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.SetMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.UnaryOperationBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.IDynamicMetaObjectProvider))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.ExpandoObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.IInvokeOnGetBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConditionalWeakTable<,>))]
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// ------------------------------------------------------------------------------
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSiteBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSite))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSite<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSiteHelpers))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.DynamicAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.DynamicExpression))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.DynamicExpressionVisitor))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicMetaObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicMetaObjectBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.BindingRestrictions))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.BinaryOperationBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.CallInfo))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.ConvertBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.CreateInstanceBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DeleteIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DeleteMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.GetIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.GetMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.InvokeBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.InvokeMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.SetIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.SetMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.UnaryOperationBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.IDynamicMetaObjectProvider))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.ExpandoObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.IInvokeOnGetBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConditionalWeakTable<,>))]
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Private.Uri/tests/FunctionalTests/UriMailToTest.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.PrivateUri.Tests
{
/// <summary>
/// Summary description for UriMailToParsing
/// </summary>
public class UriMailToTest
{
[Fact]
public void UriMailTo_SchemeOnly_Success()
{
Uri uri = new Uri("mailto:");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:", uri.AbsoluteUri);
Assert.Equal("mailto:", uri.ToString());
Assert.Equal("", uri.Host);
}
[Fact]
public void UriMailTo_SchemeAndBackslash_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri(@"mailto:\"));
}
[Fact]
public void UriMailTo_SchemeAndForwardSlash_Success()
{
Uri uri = new Uri("mailto:/");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:/", uri.AbsoluteUri);
Assert.Equal("mailto:/", uri.ToString());
Assert.Equal("", uri.Host);
Assert.Equal("/", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeAndDoubleForwardSlash_Success()
{
Uri uri = new Uri("mailto://");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto://", uri.AbsoluteUri);
Assert.Equal("mailto://", uri.ToString());
Assert.Equal("", uri.Host);
Assert.Equal("//", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeAndQuery_Success()
{
Uri uri = new Uri("mailto:[email protected];cc=User3@Host3com");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:[email protected];cc=User3@Host3com", uri.AbsoluteUri);
Assert.Equal("mailto:[email protected];cc=User3@Host3com", uri.ToString());
Assert.Equal("", uri.Host);
Assert.Equal("", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
Assert.Equal("[email protected];cc=User3@Host3com", uri.Query);
}
[Fact]
public void UriMailTo_SchemeUserAt_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@"));
}
[Fact]
public void UriMailTo_SchemeUserColonPasswordAt_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User:Password@"));
}
[Fact]
public void UriMailTo_SchemeUserAtQuery_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@[email protected];cc=User3@Host3com"));
}
[Fact]
public void UriMailTo_SchemeUserAtHost_Success()
{
Uri uri = new Uri("mailto:User@Host");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host", uri.AbsoluteUri);
Assert.Equal("mailto:User@host", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeUserColonPasswordAtHost_Success()
{
Uri uri = new Uri("mailto:User:Password@Host");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User:Password@host", uri.AbsoluteUri);
Assert.Equal("mailto:User:Password@host", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User:Password", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeUserAtHostPort_Success()
{
Uri uri = new Uri("mailto:User@Host:3555");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host:3555", uri.AbsoluteUri);
Assert.Equal("mailto:User@host:3555", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal(3555, uri.Port);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_TwoSemiColonSepratedAddresses_Success()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@Host;User@Host"));
}
[Fact]
public void UriMailTo_TwoCommaSepratedAddresses_Success()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@Host,User@Host"));
}
[Fact]
public void UriMailTo_SchemeUserAtHostPath_Success()
{
Uri uri = new Uri("mailto:User@Host/Path1/./Path2/../...");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host/Path1/./Path2/../...", uri.AbsoluteUri);
Assert.Equal("mailto:User@host/Path1/./Path2/../...", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("/Path1/./Path2/../...", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeUserAtHostQuery_Success()
{
Uri uri = new Uri("mailto:User@[email protected];cc=User3@Host3com");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@[email protected];cc=User3@Host3com", uri.AbsoluteUri);
Assert.Equal("mailto:User@[email protected];cc=User3@Host3com", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
Assert.Equal("[email protected];cc=User3@Host3com", uri.Query);
}
[Fact]
public void UriMailTo_SchemeUserAtHostPathQuery_Success()
{
Uri uri = new Uri("mailto:User@Host/Path1/./Path2/../[email protected];cc=User3@Host3com");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host/Path1/./Path2/../[email protected];cc=User3@Host3com", uri.AbsoluteUri);
Assert.Equal("mailto:User@host/Path1/./Path2/../[email protected];cc=User3@Host3com", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("/Path1/./Path2/../...", uri.AbsolutePath);
Assert.Equal("[email protected];cc=User3@Host3com", uri.Query);
}
[Fact]
public void UriMailTo_EAI_SomeEscaping()
{
Uri uri = new Uri("mailto:\u30AF@\u30AF");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:%E3%82%AF@\u30AF", uri.AbsoluteUri);
Assert.Equal("mailto:\u30AF@\u30AF", uri.ToString());
Assert.Equal("%E3%82%AF", uri.UserInfo);
Assert.Equal("\u30AF", uri.Host);
Assert.Equal("", uri.AbsolutePath);
Assert.Equal("\u30AF@\u30AF", uri.GetComponents(UriComponents.UserInfo | UriComponents.Host, UriFormat.SafeUnescaped));
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.PrivateUri.Tests
{
/// <summary>
/// Summary description for UriMailToParsing
/// </summary>
public class UriMailToTest
{
[Fact]
public void UriMailTo_SchemeOnly_Success()
{
Uri uri = new Uri("mailto:");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:", uri.AbsoluteUri);
Assert.Equal("mailto:", uri.ToString());
Assert.Equal("", uri.Host);
}
[Fact]
public void UriMailTo_SchemeAndBackslash_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri(@"mailto:\"));
}
[Fact]
public void UriMailTo_SchemeAndForwardSlash_Success()
{
Uri uri = new Uri("mailto:/");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:/", uri.AbsoluteUri);
Assert.Equal("mailto:/", uri.ToString());
Assert.Equal("", uri.Host);
Assert.Equal("/", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeAndDoubleForwardSlash_Success()
{
Uri uri = new Uri("mailto://");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto://", uri.AbsoluteUri);
Assert.Equal("mailto://", uri.ToString());
Assert.Equal("", uri.Host);
Assert.Equal("//", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeAndQuery_Success()
{
Uri uri = new Uri("mailto:[email protected];cc=User3@Host3com");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:[email protected];cc=User3@Host3com", uri.AbsoluteUri);
Assert.Equal("mailto:[email protected];cc=User3@Host3com", uri.ToString());
Assert.Equal("", uri.Host);
Assert.Equal("", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
Assert.Equal("[email protected];cc=User3@Host3com", uri.Query);
}
[Fact]
public void UriMailTo_SchemeUserAt_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@"));
}
[Fact]
public void UriMailTo_SchemeUserColonPasswordAt_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User:Password@"));
}
[Fact]
public void UriMailTo_SchemeUserAtQuery_Throws()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@[email protected];cc=User3@Host3com"));
}
[Fact]
public void UriMailTo_SchemeUserAtHost_Success()
{
Uri uri = new Uri("mailto:User@Host");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host", uri.AbsoluteUri);
Assert.Equal("mailto:User@host", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeUserColonPasswordAtHost_Success()
{
Uri uri = new Uri("mailto:User:Password@Host");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User:Password@host", uri.AbsoluteUri);
Assert.Equal("mailto:User:Password@host", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User:Password", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeUserAtHostPort_Success()
{
Uri uri = new Uri("mailto:User@Host:3555");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host:3555", uri.AbsoluteUri);
Assert.Equal("mailto:User@host:3555", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal(3555, uri.Port);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_TwoSemiColonSepratedAddresses_Success()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@Host;User@Host"));
}
[Fact]
public void UriMailTo_TwoCommaSepratedAddresses_Success()
{
Assert.ThrowsAny<FormatException>(() => new Uri("mailto:User@Host,User@Host"));
}
[Fact]
public void UriMailTo_SchemeUserAtHostPath_Success()
{
Uri uri = new Uri("mailto:User@Host/Path1/./Path2/../...");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host/Path1/./Path2/../...", uri.AbsoluteUri);
Assert.Equal("mailto:User@host/Path1/./Path2/../...", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("/Path1/./Path2/../...", uri.AbsolutePath);
}
[Fact]
public void UriMailTo_SchemeUserAtHostQuery_Success()
{
Uri uri = new Uri("mailto:User@[email protected];cc=User3@Host3com");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@[email protected];cc=User3@Host3com", uri.AbsoluteUri);
Assert.Equal("mailto:User@[email protected];cc=User3@Host3com", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("", uri.AbsolutePath);
Assert.Equal("[email protected];cc=User3@Host3com", uri.Query);
}
[Fact]
public void UriMailTo_SchemeUserAtHostPathQuery_Success()
{
Uri uri = new Uri("mailto:User@Host/Path1/./Path2/../[email protected];cc=User3@Host3com");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:User@host/Path1/./Path2/../[email protected];cc=User3@Host3com", uri.AbsoluteUri);
Assert.Equal("mailto:User@host/Path1/./Path2/../[email protected];cc=User3@Host3com", uri.ToString());
Assert.Equal("host", uri.Host);
Assert.Equal("User", uri.UserInfo);
Assert.Equal("/Path1/./Path2/../...", uri.AbsolutePath);
Assert.Equal("[email protected];cc=User3@Host3com", uri.Query);
}
[Fact]
public void UriMailTo_EAI_SomeEscaping()
{
Uri uri = new Uri("mailto:\u30AF@\u30AF");
Assert.Equal("mailto", uri.Scheme);
Assert.Equal("mailto:%E3%82%AF@\u30AF", uri.AbsoluteUri);
Assert.Equal("mailto:\u30AF@\u30AF", uri.ToString());
Assert.Equal("%E3%82%AF", uri.UserInfo);
Assert.Equal("\u30AF", uri.Host);
Assert.Equal("", uri.AbsolutePath);
Assert.Equal("\u30AF@\u30AF", uri.GetComponents(UriComponents.UserInfo | UriComponents.Host, UriFormat.SafeUnescaped));
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Security.Cryptography.X509Certificates/tests/CtorTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.Security.Cryptography.X509Certificates.Tests
{
public static class CtorTests
{
[Fact]
public static void TestDefaultConstructor()
{
using (X509Certificate2 c = new X509Certificate2())
{
VerifyDefaultConstructor(c);
}
}
private static void VerifyDefaultConstructor(X509Certificate2 c)
{
IntPtr h = c.Handle;
object ignored;
Assert.Equal(IntPtr.Zero, h);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash(HashAlgorithmName.SHA256));
#endif
Assert.ThrowsAny<CryptographicException>(() => c.GetKeyAlgorithm());
Assert.ThrowsAny<CryptographicException>(() => c.GetKeyAlgorithmParameters());
Assert.ThrowsAny<CryptographicException>(() => c.GetKeyAlgorithmParametersString());
Assert.ThrowsAny<CryptographicException>(() => c.GetPublicKey());
Assert.ThrowsAny<CryptographicException>(() => c.GetSerialNumber());
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Issuer);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Subject);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.RawData);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Thumbprint);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.SignatureAlgorithm);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.HasPrivateKey);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Version);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Archived);
Assert.ThrowsAny<CryptographicException>(() => c.Archived = false);
Assert.ThrowsAny<CryptographicException>(() => c.FriendlyName = "Hi");
Assert.ThrowsAny<CryptographicException>(() => ignored = c.SubjectName);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.IssuerName);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHashString());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHashString(HashAlgorithmName.SHA256));
#endif
Assert.ThrowsAny<CryptographicException>(() => c.GetEffectiveDateString());
Assert.ThrowsAny<CryptographicException>(() => c.GetExpirationDateString());
Assert.ThrowsAny<CryptographicException>(() => c.GetPublicKeyString());
Assert.ThrowsAny<CryptographicException>(() => c.GetRawCertData());
Assert.ThrowsAny<CryptographicException>(() => c.GetRawCertDataString());
Assert.ThrowsAny<CryptographicException>(() => c.GetSerialNumberString());
#pragma warning disable 0618
Assert.ThrowsAny<CryptographicException>(() => c.GetIssuerName());
Assert.ThrowsAny<CryptographicException>(() => c.GetName());
#pragma warning restore 0618
#if HAVE_THUMBPRINT_OVERLOADS
Assert.ThrowsAny<CryptographicException>(
() => c.TryGetCertHash(HashAlgorithmName.SHA256, Array.Empty<byte>(), out _));
#endif
}
[Fact]
public static void TestConstructor_DER()
{
byte[] expectedThumbPrintSha1 =
{
0x10, 0x8e, 0x2b, 0xa2, 0x36, 0x32, 0x62, 0x0c,
0x42, 0x7c, 0x57, 0x0b, 0x6d, 0x9d, 0xb5, 0x1a,
0xc3, 0x13, 0x87, 0xfe,
};
Action<X509Certificate2> assert = (c) =>
{
IntPtr h = c.Handle;
Assert.NotEqual(IntPtr.Zero, h);
byte[] actualThumbprint = c.GetCertHash();
Assert.Equal(expectedThumbPrintSha1, actualThumbprint);
#if HAVE_THUMBPRINT_OVERLOADS
byte[] specifiedAlgThumbprint = c.GetCertHash(HashAlgorithmName.SHA1);
Assert.Equal(expectedThumbPrintSha1, specifiedAlgThumbprint);
#endif
};
using (X509Certificate2 c = new X509Certificate2(TestData.MsCertificate))
{
assert(c);
using (X509Certificate2 c2 = new X509Certificate2(c))
{
assert(c2);
}
}
}
[Fact]
public static void TestConstructor_PEM()
{
byte[] expectedThumbPrintSha1 =
{
0x10, 0x8e, 0x2b, 0xa2, 0x36, 0x32, 0x62, 0x0c,
0x42, 0x7c, 0x57, 0x0b, 0x6d, 0x9d, 0xb5, 0x1a,
0xc3, 0x13, 0x87, 0xfe,
};
Action<X509Certificate2> assert = (cert) =>
{
IntPtr h = cert.Handle;
Assert.NotEqual(IntPtr.Zero, h);
byte[] actualThumbprint = cert.GetCertHash();
Assert.Equal(expectedThumbPrintSha1, actualThumbprint);
#if HAVE_THUMBPRINT_OVERLOADS
byte[] specifiedAlgThumbprint = cert.GetCertHash(HashAlgorithmName.SHA1);
Assert.Equal(expectedThumbPrintSha1, specifiedAlgThumbprint);
#endif
};
using (X509Certificate2 c = new X509Certificate2(TestData.MsCertificatePemBytes))
{
assert(c);
using (X509Certificate2 c2 = new X509Certificate2(c))
{
assert(c2);
}
}
}
[Fact]
public static void TestCopyConstructor_NoPal()
{
using (var c1 = new X509Certificate2())
using (var c2 = new X509Certificate2(c1))
{
VerifyDefaultConstructor(c1);
VerifyDefaultConstructor(c2);
}
}
[Fact]
public static void TestCopyConstructor_Pal()
{
using (var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword))
using (var c2 = new X509Certificate2(c1))
{
Assert.Equal(c1.GetCertHash(), c2.GetCertHash());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.Equal(c1.GetCertHash(HashAlgorithmName.SHA256), c2.GetCertHash(HashAlgorithmName.SHA256));
#endif
Assert.Equal(c1.GetKeyAlgorithm(), c2.GetKeyAlgorithm());
Assert.Equal(c1.GetKeyAlgorithmParameters(), c2.GetKeyAlgorithmParameters());
Assert.Equal(c1.GetKeyAlgorithmParametersString(), c2.GetKeyAlgorithmParametersString());
Assert.Equal(c1.GetPublicKey(), c2.GetPublicKey());
Assert.Equal(c1.GetSerialNumber(), c2.GetSerialNumber());
Assert.Equal(c1.Issuer, c2.Issuer);
Assert.Equal(c1.Subject, c2.Subject);
Assert.Equal(c1.RawData, c2.RawData);
Assert.Equal(c1.Thumbprint, c2.Thumbprint);
Assert.Equal(c1.SignatureAlgorithm.Value, c2.SignatureAlgorithm.Value);
Assert.Equal(c1.HasPrivateKey, c2.HasPrivateKey);
Assert.Equal(c1.Version, c2.Version);
Assert.Equal(c1.Archived, c2.Archived);
Assert.Equal(c1.SubjectName.Name, c2.SubjectName.Name);
Assert.Equal(c1.IssuerName.Name, c2.IssuerName.Name);
Assert.Equal(c1.GetCertHashString(), c2.GetCertHashString());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.Equal(c1.GetCertHashString(HashAlgorithmName.SHA256), c2.GetCertHashString(HashAlgorithmName.SHA256));
#endif
Assert.Equal(c1.GetEffectiveDateString(), c2.GetEffectiveDateString());
Assert.Equal(c1.GetExpirationDateString(), c2.GetExpirationDateString());
Assert.Equal(c1.GetPublicKeyString(), c2.GetPublicKeyString());
Assert.Equal(c1.GetRawCertData(), c2.GetRawCertData());
Assert.Equal(c1.GetRawCertDataString(), c2.GetRawCertDataString());
Assert.Equal(c1.GetSerialNumberString(), c2.GetSerialNumberString());
#pragma warning disable 0618
Assert.Equal(c1.GetIssuerName(), c2.GetIssuerName());
Assert.Equal(c1.GetName(), c2.GetName());
#pragma warning restore 0618
}
}
[Fact]
public static void TestCopyConstructor_Lifetime_Independent()
{
var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword);
using (var c2 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword))
{
RSA rsa = c2.GetRSAPrivateKey();
byte[] hash = new byte[20];
byte[] sig = rsa.SignHash(hash, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1);
Assert.Equal(TestData.PfxSha1Empty_ExpectedSig, sig);
c1.Dispose();
rsa.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
// Verify other cert and previous key do not affect cert
using (rsa = c2.GetRSAPrivateKey())
{
hash = new byte[20];
sig = rsa.SignHash(hash, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1);
Assert.Equal(TestData.PfxSha1Empty_ExpectedSig, sig);
}
}
}
[Fact]
public static void TestCopyConstructor_Lifetime_Cloned()
{
var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword);
var c2 = new X509Certificate2(c1);
TestPrivateKey(c1, true);
TestPrivateKey(c2, true);
c1.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c1, false);
TestPrivateKey(c2, true);
c2.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c2, false);
}
[Fact]
public static void TestCopyConstructor_Lifetime_Cloned_Reversed()
{
var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword);
var c2 = new X509Certificate2(c1);
TestPrivateKey(c1, true);
TestPrivateKey(c2, true);
c2.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c1, true);
TestPrivateKey(c2, false);
c1.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c1, false);
}
private static void TestPrivateKey(X509Certificate2 c, bool expectSuccess)
{
if (expectSuccess)
{
using (RSA rsa = c.GetRSAPrivateKey())
{
byte[] hash = new byte[20];
byte[] sig = rsa.SignHash(hash, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1);
Assert.Equal(TestData.PfxSha1Empty_ExpectedSig, sig);
}
}
else
{
Assert.ThrowsAny<CryptographicException>(() => c.GetRSAPrivateKey());
}
}
[Fact]
[PlatformSpecific(TestPlatforms.Windows)] // StoreSavedAsSerializedCerData not supported on Unix
public static void TestConstructor_SerializedCert_Windows()
{
const string ExpectedThumbPrint = "71CB4E2B02738AD44F8B382C93BD17BA665F9914";
Action<X509Certificate2> assert = (cert) =>
{
IntPtr h = cert.Handle;
Assert.NotEqual(IntPtr.Zero, h);
Assert.Equal(ExpectedThumbPrint, cert.Thumbprint);
};
using (X509Certificate2 c = new X509Certificate2(TestData.StoreSavedAsSerializedCerData))
{
assert(c);
using (X509Certificate2 c2 = new X509Certificate2(c))
{
assert(c2);
}
}
}
[Fact]
[PlatformSpecific(TestPlatforms.AnyUnix)] // StoreSavedAsSerializedCerData not supported on Unix
public static void TestByteArrayConstructor_SerializedCert_Unix()
{
Assert.ThrowsAny<CryptographicException>(() => new X509Certificate2(TestData.StoreSavedAsSerializedCerData));
}
[Fact]
public static void TestNullConstructorArguments()
{
Assert.Throws<ArgumentNullException>(() => new X509Certificate2((string)null));
AssertExtensions.Throws<ArgumentException>("handle", () => new X509Certificate2(IntPtr.Zero));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2((byte[])null, (string)null));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2(Array.Empty<byte>(), (string)null));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2((byte[])null, (string)null, X509KeyStorageFlags.DefaultKeySet));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2(Array.Empty<byte>(), (string)null, X509KeyStorageFlags.DefaultKeySet));
// A null string password does not throw
using (new X509Certificate2(TestData.MsCertificate, (string)null)) { }
using (new X509Certificate2(TestData.MsCertificate, (string)null, X509KeyStorageFlags.DefaultKeySet)) { }
Assert.Throws<ArgumentNullException>(() => X509Certificate.CreateFromCertFile(null));
Assert.Throws<ArgumentNullException>(() => X509Certificate.CreateFromSignedFile(null));
AssertExtensions.Throws<ArgumentNullException>("cert", () => new X509Certificate2((X509Certificate2)null));
AssertExtensions.Throws<ArgumentException>("handle", () => new X509Certificate2(IntPtr.Zero));
// A null SecureString password does not throw
using (new X509Certificate2(TestData.MsCertificate, (SecureString)null)) { }
using (new X509Certificate2(TestData.MsCertificate, (SecureString)null, X509KeyStorageFlags.DefaultKeySet)) { }
// For compat reasons, the (byte[]) constructor (and only that constructor) treats a null or 0-length array as the same
// as calling the default constructor.
{
using (X509Certificate2 c = new X509Certificate2((byte[])null))
{
IntPtr h = c.Handle;
Assert.Equal(IntPtr.Zero, h);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash());
}
}
{
using (X509Certificate2 c = new X509Certificate2(Array.Empty<byte>()))
{
IntPtr h = c.Handle;
Assert.Equal(IntPtr.Zero, h);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash());
}
}
}
[Fact]
public static void InvalidCertificateBlob()
{
CryptographicException ex = Assert.ThrowsAny<CryptographicException>(
() => new X509Certificate2(new byte[] { 0x01, 0x02, 0x03 }));
CryptographicException defaultException = new CryptographicException();
Assert.NotEqual(defaultException.Message, ex.Message);
if (OperatingSystem.IsWindows())
{
Assert.Equal(unchecked((int)0x80092009), ex.HResult);
// TODO (3233): Test that Message is also set correctly
//Assert.Equal("Cannot find the requested object.", ex.Message);
}
else if (PlatformDetection.UsesAppleCrypto)
{
Assert.Equal(-25257, ex.HResult);
}
else // Any Unix
{
Assert.Equal(new CryptographicException("message").HResult, ex.HResult);
}
}
#if !NO_EPHEMERALKEYSET_AVAILABLE
[Fact]
public static void InvalidStorageFlags()
{
byte[] nonEmptyBytes = new byte[1];
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(nonEmptyBytes, string.Empty, (X509KeyStorageFlags)0xFF));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(string.Empty, string.Empty, (X509KeyStorageFlags)0xFF));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(nonEmptyBytes, string.Empty, (X509KeyStorageFlags)0xFF));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(string.Empty, string.Empty, (X509KeyStorageFlags)0xFF));
// No test is performed here for the ephemeral flag failing downlevel, because the live
// binary is always used by default, meaning it doesn't know EphemeralKeySet doesn't exist.
}
[Fact]
public static void InvalidStorageFlags_PersistedEphemeral()
{
const X509KeyStorageFlags PersistedEphemeral =
X509KeyStorageFlags.EphemeralKeySet | X509KeyStorageFlags.PersistKeySet;
byte[] nonEmptyBytes = new byte[1];
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(nonEmptyBytes, string.Empty, PersistedEphemeral));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(string.Empty, string.Empty, PersistedEphemeral));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(nonEmptyBytes, string.Empty, PersistedEphemeral));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(string.Empty, string.Empty, PersistedEphemeral));
}
#endif
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.Security.Cryptography.X509Certificates.Tests
{
public static class CtorTests
{
[Fact]
public static void TestDefaultConstructor()
{
using (X509Certificate2 c = new X509Certificate2())
{
VerifyDefaultConstructor(c);
}
}
private static void VerifyDefaultConstructor(X509Certificate2 c)
{
IntPtr h = c.Handle;
object ignored;
Assert.Equal(IntPtr.Zero, h);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash(HashAlgorithmName.SHA256));
#endif
Assert.ThrowsAny<CryptographicException>(() => c.GetKeyAlgorithm());
Assert.ThrowsAny<CryptographicException>(() => c.GetKeyAlgorithmParameters());
Assert.ThrowsAny<CryptographicException>(() => c.GetKeyAlgorithmParametersString());
Assert.ThrowsAny<CryptographicException>(() => c.GetPublicKey());
Assert.ThrowsAny<CryptographicException>(() => c.GetSerialNumber());
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Issuer);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Subject);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.RawData);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Thumbprint);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.SignatureAlgorithm);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.HasPrivateKey);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Version);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.Archived);
Assert.ThrowsAny<CryptographicException>(() => c.Archived = false);
Assert.ThrowsAny<CryptographicException>(() => c.FriendlyName = "Hi");
Assert.ThrowsAny<CryptographicException>(() => ignored = c.SubjectName);
Assert.ThrowsAny<CryptographicException>(() => ignored = c.IssuerName);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHashString());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHashString(HashAlgorithmName.SHA256));
#endif
Assert.ThrowsAny<CryptographicException>(() => c.GetEffectiveDateString());
Assert.ThrowsAny<CryptographicException>(() => c.GetExpirationDateString());
Assert.ThrowsAny<CryptographicException>(() => c.GetPublicKeyString());
Assert.ThrowsAny<CryptographicException>(() => c.GetRawCertData());
Assert.ThrowsAny<CryptographicException>(() => c.GetRawCertDataString());
Assert.ThrowsAny<CryptographicException>(() => c.GetSerialNumberString());
#pragma warning disable 0618
Assert.ThrowsAny<CryptographicException>(() => c.GetIssuerName());
Assert.ThrowsAny<CryptographicException>(() => c.GetName());
#pragma warning restore 0618
#if HAVE_THUMBPRINT_OVERLOADS
Assert.ThrowsAny<CryptographicException>(
() => c.TryGetCertHash(HashAlgorithmName.SHA256, Array.Empty<byte>(), out _));
#endif
}
[Fact]
public static void TestConstructor_DER()
{
byte[] expectedThumbPrintSha1 =
{
0x10, 0x8e, 0x2b, 0xa2, 0x36, 0x32, 0x62, 0x0c,
0x42, 0x7c, 0x57, 0x0b, 0x6d, 0x9d, 0xb5, 0x1a,
0xc3, 0x13, 0x87, 0xfe,
};
Action<X509Certificate2> assert = (c) =>
{
IntPtr h = c.Handle;
Assert.NotEqual(IntPtr.Zero, h);
byte[] actualThumbprint = c.GetCertHash();
Assert.Equal(expectedThumbPrintSha1, actualThumbprint);
#if HAVE_THUMBPRINT_OVERLOADS
byte[] specifiedAlgThumbprint = c.GetCertHash(HashAlgorithmName.SHA1);
Assert.Equal(expectedThumbPrintSha1, specifiedAlgThumbprint);
#endif
};
using (X509Certificate2 c = new X509Certificate2(TestData.MsCertificate))
{
assert(c);
using (X509Certificate2 c2 = new X509Certificate2(c))
{
assert(c2);
}
}
}
[Fact]
public static void TestConstructor_PEM()
{
byte[] expectedThumbPrintSha1 =
{
0x10, 0x8e, 0x2b, 0xa2, 0x36, 0x32, 0x62, 0x0c,
0x42, 0x7c, 0x57, 0x0b, 0x6d, 0x9d, 0xb5, 0x1a,
0xc3, 0x13, 0x87, 0xfe,
};
Action<X509Certificate2> assert = (cert) =>
{
IntPtr h = cert.Handle;
Assert.NotEqual(IntPtr.Zero, h);
byte[] actualThumbprint = cert.GetCertHash();
Assert.Equal(expectedThumbPrintSha1, actualThumbprint);
#if HAVE_THUMBPRINT_OVERLOADS
byte[] specifiedAlgThumbprint = cert.GetCertHash(HashAlgorithmName.SHA1);
Assert.Equal(expectedThumbPrintSha1, specifiedAlgThumbprint);
#endif
};
using (X509Certificate2 c = new X509Certificate2(TestData.MsCertificatePemBytes))
{
assert(c);
using (X509Certificate2 c2 = new X509Certificate2(c))
{
assert(c2);
}
}
}
[Fact]
public static void TestCopyConstructor_NoPal()
{
using (var c1 = new X509Certificate2())
using (var c2 = new X509Certificate2(c1))
{
VerifyDefaultConstructor(c1);
VerifyDefaultConstructor(c2);
}
}
[Fact]
public static void TestCopyConstructor_Pal()
{
using (var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword))
using (var c2 = new X509Certificate2(c1))
{
Assert.Equal(c1.GetCertHash(), c2.GetCertHash());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.Equal(c1.GetCertHash(HashAlgorithmName.SHA256), c2.GetCertHash(HashAlgorithmName.SHA256));
#endif
Assert.Equal(c1.GetKeyAlgorithm(), c2.GetKeyAlgorithm());
Assert.Equal(c1.GetKeyAlgorithmParameters(), c2.GetKeyAlgorithmParameters());
Assert.Equal(c1.GetKeyAlgorithmParametersString(), c2.GetKeyAlgorithmParametersString());
Assert.Equal(c1.GetPublicKey(), c2.GetPublicKey());
Assert.Equal(c1.GetSerialNumber(), c2.GetSerialNumber());
Assert.Equal(c1.Issuer, c2.Issuer);
Assert.Equal(c1.Subject, c2.Subject);
Assert.Equal(c1.RawData, c2.RawData);
Assert.Equal(c1.Thumbprint, c2.Thumbprint);
Assert.Equal(c1.SignatureAlgorithm.Value, c2.SignatureAlgorithm.Value);
Assert.Equal(c1.HasPrivateKey, c2.HasPrivateKey);
Assert.Equal(c1.Version, c2.Version);
Assert.Equal(c1.Archived, c2.Archived);
Assert.Equal(c1.SubjectName.Name, c2.SubjectName.Name);
Assert.Equal(c1.IssuerName.Name, c2.IssuerName.Name);
Assert.Equal(c1.GetCertHashString(), c2.GetCertHashString());
#if HAVE_THUMBPRINT_OVERLOADS
Assert.Equal(c1.GetCertHashString(HashAlgorithmName.SHA256), c2.GetCertHashString(HashAlgorithmName.SHA256));
#endif
Assert.Equal(c1.GetEffectiveDateString(), c2.GetEffectiveDateString());
Assert.Equal(c1.GetExpirationDateString(), c2.GetExpirationDateString());
Assert.Equal(c1.GetPublicKeyString(), c2.GetPublicKeyString());
Assert.Equal(c1.GetRawCertData(), c2.GetRawCertData());
Assert.Equal(c1.GetRawCertDataString(), c2.GetRawCertDataString());
Assert.Equal(c1.GetSerialNumberString(), c2.GetSerialNumberString());
#pragma warning disable 0618
Assert.Equal(c1.GetIssuerName(), c2.GetIssuerName());
Assert.Equal(c1.GetName(), c2.GetName());
#pragma warning restore 0618
}
}
[Fact]
public static void TestCopyConstructor_Lifetime_Independent()
{
var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword);
using (var c2 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword))
{
RSA rsa = c2.GetRSAPrivateKey();
byte[] hash = new byte[20];
byte[] sig = rsa.SignHash(hash, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1);
Assert.Equal(TestData.PfxSha1Empty_ExpectedSig, sig);
c1.Dispose();
rsa.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
// Verify other cert and previous key do not affect cert
using (rsa = c2.GetRSAPrivateKey())
{
hash = new byte[20];
sig = rsa.SignHash(hash, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1);
Assert.Equal(TestData.PfxSha1Empty_ExpectedSig, sig);
}
}
}
[Fact]
public static void TestCopyConstructor_Lifetime_Cloned()
{
var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword);
var c2 = new X509Certificate2(c1);
TestPrivateKey(c1, true);
TestPrivateKey(c2, true);
c1.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c1, false);
TestPrivateKey(c2, true);
c2.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c2, false);
}
[Fact]
public static void TestCopyConstructor_Lifetime_Cloned_Reversed()
{
var c1 = new X509Certificate2(TestData.PfxData, TestData.PfxDataPassword);
var c2 = new X509Certificate2(c1);
TestPrivateKey(c1, true);
TestPrivateKey(c2, true);
c2.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c1, true);
TestPrivateKey(c2, false);
c1.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
TestPrivateKey(c1, false);
}
private static void TestPrivateKey(X509Certificate2 c, bool expectSuccess)
{
if (expectSuccess)
{
using (RSA rsa = c.GetRSAPrivateKey())
{
byte[] hash = new byte[20];
byte[] sig = rsa.SignHash(hash, HashAlgorithmName.SHA1, RSASignaturePadding.Pkcs1);
Assert.Equal(TestData.PfxSha1Empty_ExpectedSig, sig);
}
}
else
{
Assert.ThrowsAny<CryptographicException>(() => c.GetRSAPrivateKey());
}
}
[Fact]
[PlatformSpecific(TestPlatforms.Windows)] // StoreSavedAsSerializedCerData not supported on Unix
public static void TestConstructor_SerializedCert_Windows()
{
const string ExpectedThumbPrint = "71CB4E2B02738AD44F8B382C93BD17BA665F9914";
Action<X509Certificate2> assert = (cert) =>
{
IntPtr h = cert.Handle;
Assert.NotEqual(IntPtr.Zero, h);
Assert.Equal(ExpectedThumbPrint, cert.Thumbprint);
};
using (X509Certificate2 c = new X509Certificate2(TestData.StoreSavedAsSerializedCerData))
{
assert(c);
using (X509Certificate2 c2 = new X509Certificate2(c))
{
assert(c2);
}
}
}
[Fact]
[PlatformSpecific(TestPlatforms.AnyUnix)] // StoreSavedAsSerializedCerData not supported on Unix
public static void TestByteArrayConstructor_SerializedCert_Unix()
{
Assert.ThrowsAny<CryptographicException>(() => new X509Certificate2(TestData.StoreSavedAsSerializedCerData));
}
[Fact]
public static void TestNullConstructorArguments()
{
Assert.Throws<ArgumentNullException>(() => new X509Certificate2((string)null));
AssertExtensions.Throws<ArgumentException>("handle", () => new X509Certificate2(IntPtr.Zero));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2((byte[])null, (string)null));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2(Array.Empty<byte>(), (string)null));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2((byte[])null, (string)null, X509KeyStorageFlags.DefaultKeySet));
AssertExtensions.Throws<ArgumentException>("rawData", () => new X509Certificate2(Array.Empty<byte>(), (string)null, X509KeyStorageFlags.DefaultKeySet));
// A null string password does not throw
using (new X509Certificate2(TestData.MsCertificate, (string)null)) { }
using (new X509Certificate2(TestData.MsCertificate, (string)null, X509KeyStorageFlags.DefaultKeySet)) { }
Assert.Throws<ArgumentNullException>(() => X509Certificate.CreateFromCertFile(null));
Assert.Throws<ArgumentNullException>(() => X509Certificate.CreateFromSignedFile(null));
AssertExtensions.Throws<ArgumentNullException>("cert", () => new X509Certificate2((X509Certificate2)null));
AssertExtensions.Throws<ArgumentException>("handle", () => new X509Certificate2(IntPtr.Zero));
// A null SecureString password does not throw
using (new X509Certificate2(TestData.MsCertificate, (SecureString)null)) { }
using (new X509Certificate2(TestData.MsCertificate, (SecureString)null, X509KeyStorageFlags.DefaultKeySet)) { }
// For compat reasons, the (byte[]) constructor (and only that constructor) treats a null or 0-length array as the same
// as calling the default constructor.
{
using (X509Certificate2 c = new X509Certificate2((byte[])null))
{
IntPtr h = c.Handle;
Assert.Equal(IntPtr.Zero, h);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash());
}
}
{
using (X509Certificate2 c = new X509Certificate2(Array.Empty<byte>()))
{
IntPtr h = c.Handle;
Assert.Equal(IntPtr.Zero, h);
Assert.ThrowsAny<CryptographicException>(() => c.GetCertHash());
}
}
}
[Fact]
public static void InvalidCertificateBlob()
{
CryptographicException ex = Assert.ThrowsAny<CryptographicException>(
() => new X509Certificate2(new byte[] { 0x01, 0x02, 0x03 }));
CryptographicException defaultException = new CryptographicException();
Assert.NotEqual(defaultException.Message, ex.Message);
if (OperatingSystem.IsWindows())
{
Assert.Equal(unchecked((int)0x80092009), ex.HResult);
// TODO (3233): Test that Message is also set correctly
//Assert.Equal("Cannot find the requested object.", ex.Message);
}
else if (PlatformDetection.UsesAppleCrypto)
{
Assert.Equal(-25257, ex.HResult);
}
else // Any Unix
{
Assert.Equal(new CryptographicException("message").HResult, ex.HResult);
}
}
#if !NO_EPHEMERALKEYSET_AVAILABLE
[Fact]
public static void InvalidStorageFlags()
{
byte[] nonEmptyBytes = new byte[1];
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(nonEmptyBytes, string.Empty, (X509KeyStorageFlags)0xFF));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(string.Empty, string.Empty, (X509KeyStorageFlags)0xFF));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(nonEmptyBytes, string.Empty, (X509KeyStorageFlags)0xFF));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(string.Empty, string.Empty, (X509KeyStorageFlags)0xFF));
// No test is performed here for the ephemeral flag failing downlevel, because the live
// binary is always used by default, meaning it doesn't know EphemeralKeySet doesn't exist.
}
[Fact]
public static void InvalidStorageFlags_PersistedEphemeral()
{
const X509KeyStorageFlags PersistedEphemeral =
X509KeyStorageFlags.EphemeralKeySet | X509KeyStorageFlags.PersistKeySet;
byte[] nonEmptyBytes = new byte[1];
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(nonEmptyBytes, string.Empty, PersistedEphemeral));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate(string.Empty, string.Empty, PersistedEphemeral));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(nonEmptyBytes, string.Empty, PersistedEphemeral));
AssertExtensions.Throws<ArgumentException>(
"keyStorageFlags",
() => new X509Certificate2(string.Empty, string.Empty, PersistedEphemeral));
}
#endif
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Linq/src/System/Linq/Reverse.SpeedOpt.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
namespace System.Linq
{
public static partial class Enumerable
{
private sealed partial class ReverseIterator<TSource> : IIListProvider<TSource>
{
public TSource[] ToArray()
{
TSource[] array = _source.ToArray();
Array.Reverse(array);
return array;
}
public List<TSource> ToList()
{
List<TSource> list = _source.ToList();
list.Reverse();
return list;
}
public int GetCount(bool onlyIfCheap)
{
if (onlyIfCheap)
{
return _source switch
{
IIListProvider<TSource> listProv => listProv.GetCount(onlyIfCheap: true),
ICollection<TSource> colT => colT.Count,
ICollection col => col.Count,
_ => -1,
};
}
return _source.Count();
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
namespace System.Linq
{
public static partial class Enumerable
{
private sealed partial class ReverseIterator<TSource> : IIListProvider<TSource>
{
public TSource[] ToArray()
{
TSource[] array = _source.ToArray();
Array.Reverse(array);
return array;
}
public List<TSource> ToList()
{
List<TSource> list = _source.ToList();
list.Reverse();
return list;
}
public int GetCount(bool onlyIfCheap)
{
if (onlyIfCheap)
{
return _source switch
{
IIListProvider<TSource> listProv => listProv.GetCount(onlyIfCheap: true),
ICollection<TSource> colT => colT.Count,
ICollection col => col.Count,
_ => -1,
};
}
return _source.Count();
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b54667/b54667.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
namespace Test
{
using System;
struct BB
{
bool m_b;
static void Static1(BB param3, ref bool param5) { }
static int Main()
{
Static1(new BB(), ref new BB[] { new BB() }[0].m_b);
return 100;
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
namespace Test
{
using System;
struct BB
{
bool m_b;
static void Static1(BB param3, ref bool param5) { }
static int Main()
{
Static1(new BB(), ref new BB[] { new BB() }[0].m_b);
return 100;
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Private.Xml/tests/XmlConvert/XmlEmbeddedNullCharConvertTests2.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using OLEDB.Test.ModuleCore;
using System.Buffers.Binary;
namespace System.Xml.Tests
{
internal class XmlEmbeddedNullCharConvertTests2 : XmlEmbeddedNullCharConvertTests
{
#region Constructors and Destructors
public XmlEmbeddedNullCharConvertTests2()
{
for (int i = 0; i < _byte_EmbeddedNull.Length; i = i + 2)
{
AddVariation(new CVariation(this, "EncodeNmToken-EncodeLocalNmToken : " + _Expbyte_EmbeddedNull[i / 2], XmlEncodeName2));
}
}
#endregion
#region Public Methods and Operators
public int XmlEncodeName2()
{
int i = ((CurVariation.id) - 1) * 2;
string strEnVal = string.Empty;
char c = (char)BinaryPrimitives.ReadUInt16LittleEndian(new Span<byte>(_byte_EmbeddedNull, i, 2));
strEnVal = XmlConvert.EncodeNmToken(c.ToString());
CError.Compare(strEnVal, _Expbyte_EmbeddedNull[i / 2], "Comparison failed at " + i);
return TEST_PASS;
}
#endregion
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using OLEDB.Test.ModuleCore;
using System.Buffers.Binary;
namespace System.Xml.Tests
{
internal class XmlEmbeddedNullCharConvertTests2 : XmlEmbeddedNullCharConvertTests
{
#region Constructors and Destructors
public XmlEmbeddedNullCharConvertTests2()
{
for (int i = 0; i < _byte_EmbeddedNull.Length; i = i + 2)
{
AddVariation(new CVariation(this, "EncodeNmToken-EncodeLocalNmToken : " + _Expbyte_EmbeddedNull[i / 2], XmlEncodeName2));
}
}
#endregion
#region Public Methods and Operators
public int XmlEncodeName2()
{
int i = ((CurVariation.id) - 1) * 2;
string strEnVal = string.Empty;
char c = (char)BinaryPrimitives.ReadUInt16LittleEndian(new Span<byte>(_byte_EmbeddedNull, i, 2));
strEnVal = XmlConvert.EncodeNmToken(c.ToString());
CError.Compare(strEnVal, _Expbyte_EmbeddedNull[i / 2], "Comparison failed at " + i);
return TEST_PASS;
}
#endregion
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/Microsoft.Bcl.AsyncInterfaces/ref/Microsoft.Bcl.AsyncInterfaces.Forwards.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IAsyncDisposable))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Generic.IAsyncEnumerable<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Generic.IAsyncEnumerator<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.AsyncIteratorMethodBuilder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConfiguredAsyncDisposable))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.EnumeratorCancellationAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Threading.Tasks.TaskAsyncEnumerableExtensions))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore<>))]
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IAsyncDisposable))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Generic.IAsyncEnumerable<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Generic.IAsyncEnumerator<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.AsyncIteratorMethodBuilder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConfiguredAsyncDisposable))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.EnumeratorCancellationAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Threading.Tasks.TaskAsyncEnumerableExtensions))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore<>))]
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/TailCallAnalyzer.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics;
using System.Xml.Xsl.Qil;
namespace System.Xml.Xsl.IlGen
{
/// <summary>
/// This analyzer walks each function in the graph and annotates Invoke nodes which can
/// be compiled using the IL .tailcall instruction. This instruction will discard the
/// current stack frame before calling the new function.
/// </summary>
internal static class TailCallAnalyzer
{
/// <summary>
/// Perform tail-call analysis on the functions in the specified QilExpression.
/// </summary>
public static void Analyze(QilExpression qil)
{
foreach (QilFunction ndFunc in qil.FunctionList)
{
// Only analyze functions which are pushed to the writer, since otherwise code
// is generated after the call instruction in order to process cached results
if (XmlILConstructInfo.Read(ndFunc).ConstructMethod == XmlILConstructMethod.Writer)
AnalyzeDefinition(ndFunc.Definition);
}
}
/// <summary>
/// Recursively analyze the definition of a function.
/// </summary>
private static void AnalyzeDefinition(QilNode nd)
{
Debug.Assert(XmlILConstructInfo.Read(nd).PushToWriterLast,
"Only need to analyze expressions which will be compiled in push mode.");
switch (nd.NodeType)
{
case QilNodeType.Invoke:
// Invoke node can either be compiled as IteratorThenWriter, or Writer.
// Since IteratorThenWriter involves caching the results of the function call
// and iterating over them, .tailcall cannot be used
if (XmlILConstructInfo.Read(nd).ConstructMethod == XmlILConstructMethod.Writer)
OptimizerPatterns.Write(nd).AddPattern(OptimizerPatternName.TailCall);
break;
case QilNodeType.Loop:
{
// Recursively analyze Loop return value
QilLoop ndLoop = (QilLoop)nd;
if (ndLoop.Variable.NodeType == QilNodeType.Let || !ndLoop.Variable.Binding!.XmlType!.MaybeMany)
AnalyzeDefinition(ndLoop.Body);
break;
}
case QilNodeType.Sequence:
{
// Recursively analyze last expression in Sequence
QilList ndSeq = (QilList)nd;
if (ndSeq.Count > 0)
AnalyzeDefinition(ndSeq[ndSeq.Count - 1]);
break;
}
case QilNodeType.Choice:
{
// Recursively analyze Choice branches
QilChoice ndChoice = (QilChoice)nd;
for (int i = 0; i < ndChoice.Branches.Count; i++)
AnalyzeDefinition(ndChoice.Branches[i]);
break;
}
case QilNodeType.Conditional:
{
// Recursively analyze Conditional branches
QilTernary ndCond = (QilTernary)nd;
AnalyzeDefinition(ndCond.Center);
AnalyzeDefinition(ndCond.Right);
break;
}
case QilNodeType.Nop:
AnalyzeDefinition(((QilUnary)nd).Child);
break;
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics;
using System.Xml.Xsl.Qil;
namespace System.Xml.Xsl.IlGen
{
/// <summary>
/// This analyzer walks each function in the graph and annotates Invoke nodes which can
/// be compiled using the IL .tailcall instruction. This instruction will discard the
/// current stack frame before calling the new function.
/// </summary>
internal static class TailCallAnalyzer
{
/// <summary>
/// Perform tail-call analysis on the functions in the specified QilExpression.
/// </summary>
public static void Analyze(QilExpression qil)
{
foreach (QilFunction ndFunc in qil.FunctionList)
{
// Only analyze functions which are pushed to the writer, since otherwise code
// is generated after the call instruction in order to process cached results
if (XmlILConstructInfo.Read(ndFunc).ConstructMethod == XmlILConstructMethod.Writer)
AnalyzeDefinition(ndFunc.Definition);
}
}
/// <summary>
/// Recursively analyze the definition of a function.
/// </summary>
private static void AnalyzeDefinition(QilNode nd)
{
Debug.Assert(XmlILConstructInfo.Read(nd).PushToWriterLast,
"Only need to analyze expressions which will be compiled in push mode.");
switch (nd.NodeType)
{
case QilNodeType.Invoke:
// Invoke node can either be compiled as IteratorThenWriter, or Writer.
// Since IteratorThenWriter involves caching the results of the function call
// and iterating over them, .tailcall cannot be used
if (XmlILConstructInfo.Read(nd).ConstructMethod == XmlILConstructMethod.Writer)
OptimizerPatterns.Write(nd).AddPattern(OptimizerPatternName.TailCall);
break;
case QilNodeType.Loop:
{
// Recursively analyze Loop return value
QilLoop ndLoop = (QilLoop)nd;
if (ndLoop.Variable.NodeType == QilNodeType.Let || !ndLoop.Variable.Binding!.XmlType!.MaybeMany)
AnalyzeDefinition(ndLoop.Body);
break;
}
case QilNodeType.Sequence:
{
// Recursively analyze last expression in Sequence
QilList ndSeq = (QilList)nd;
if (ndSeq.Count > 0)
AnalyzeDefinition(ndSeq[ndSeq.Count - 1]);
break;
}
case QilNodeType.Choice:
{
// Recursively analyze Choice branches
QilChoice ndChoice = (QilChoice)nd;
for (int i = 0; i < ndChoice.Branches.Count; i++)
AnalyzeDefinition(ndChoice.Branches[i]);
break;
}
case QilNodeType.Conditional:
{
// Recursively analyze Conditional branches
QilTernary ndCond = (QilTernary)nd;
AnalyzeDefinition(ndCond.Center);
AnalyzeDefinition(ndCond.Right);
break;
}
case QilNodeType.Nop:
AnalyzeDefinition(((QilUnary)nd).Child);
break;
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Linq/tests/ExceptTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Xunit;
namespace System.Linq.Tests
{
public class ExceptTests : EnumerableTests
{
[Fact]
public void SameResultsRepeatCallsIntQuery()
{
var q1 = from x1 in new int?[] { 2, 3, null, 2, null, 4, 5 }
select x1;
var q2 = from x2 in new int?[] { 1, 9, null, 4 }
select x2;
Assert.Equal(q1.Except(q2), q1.Except(q2));
}
[Fact]
public void SameResultsRepeatCallsStringQuery()
{
var q1 = from x1 in new[] { "AAA", string.Empty, "q", "C", "#", "!@#$%^", "0987654321", "Calling Twice" }
select x1;
var q2 = from x2 in new[] { "!@#$%^", "C", "AAA", "", "Calling Twice", "SoS" }
select x2;
Assert.Equal(q1.Except(q2), q1.Except(q2));
}
public static IEnumerable<object[]> Int_TestData()
{
yield return new object[] { new int[0], new int[0], null, new int[0] };
yield return new object[] { new int[0], new int[] { -6, -8, -6, 2, 0, 0, 5, 6 }, null, new int[0] };
yield return new object[] { new int[] { 1, 1, 1, 1, 1 }, new int[] { 2, 3, 4 }, null, new int[] { 1 } };
}
[Theory]
[MemberData(nameof(Int_TestData))]
public void Int(IEnumerable<int> first, IEnumerable<int> second, IEqualityComparer<int> comparer, IEnumerable<int> expected)
{
if (comparer == null)
{
Assert.Equal(expected, first.Except(second));
}
Assert.Equal(expected, first.Except(second, comparer));
}
public static IEnumerable<object[]> String_TestData()
{
IEqualityComparer <string> defaultComparer = EqualityComparer<string>.Default;
yield return new object[] { new string[1], new string[0], defaultComparer, new string[1] };
yield return new object[] { new string[] { null, null, string.Empty }, new string[1], defaultComparer, new string[] { string.Empty } };
yield return new object[] { new string[2], new string[0], defaultComparer, new string[1] };
yield return new object[] { new string[] { "Bob", "Tim", "Robert", "Chris" }, new string[] { "bBo", "shriC" }, null, new string[] { "Bob", "Tim", "Robert", "Chris" } };
yield return new object[] { new string[] { "Bob", "Tim", "Robert", "Chris" }, new string[] { "bBo", "shriC" }, new AnagramEqualityComparer(), new string[] { "Tim", "Robert" } };
}
[Theory]
[MemberData(nameof(String_TestData))]
public void String(IEnumerable<string> first, IEnumerable<string> second, IEqualityComparer<string> comparer, IEnumerable<string> expected)
{
if (comparer == null)
{
Assert.Equal(expected, first.Except(second));
}
Assert.Equal(expected, first.Except(second, comparer));
}
public static IEnumerable<object[]> NullableInt_TestData()
{
yield return new object[] { new int?[] { -6, -8, -6, 2, 0, 0, 5, 6, null, null }, new int?[0], new int?[] { -6, -8, 2, 0, 5, 6, null } };
yield return new object[] { new int?[] { 1, 2, 2, 3, 4, 5 }, new int?[] { 5, 3, 2, 6, 6, 3, 1, null, null }, new int?[] { 4 } };
yield return new object[] { new int?[] { 2, 3, null, 2, null, 4, 5 }, new int?[] { 1, 9, null, 4 }, new int?[] { 2, 3, 5 } };
}
[Theory]
[MemberData(nameof(NullableInt_TestData))]
public void NullableInt(IEnumerable<int?> first, IEnumerable<int?> second, IEnumerable<int?> expected)
{
Assert.Equal(expected, first.Except(second));
}
[Theory]
[MemberData(nameof(NullableInt_TestData))]
public void NullableIntRunOnce(IEnumerable<int?> first, IEnumerable<int?> second, IEnumerable<int?> expected)
{
Assert.Equal(expected, first.RunOnce().Except(second.RunOnce()));
}
[Fact]
public void FirstNull_ThrowsArgumentNullException()
{
string[] first = null;
string[] second = { "bBo", "shriC" };
AssertExtensions.Throws<ArgumentNullException>("first", () => first.Except(second));
AssertExtensions.Throws<ArgumentNullException>("first", () => first.Except(second, new AnagramEqualityComparer()));
}
[Fact]
public void SecondNull_ThrowsArgumentNullException()
{
string[] first = { "Bob", "Tim", "Robert", "Chris" };
string[] second = null;
AssertExtensions.Throws<ArgumentNullException>("second", () => first.Except(second));
AssertExtensions.Throws<ArgumentNullException>("second", () => first.Except(second, new AnagramEqualityComparer()));
}
[Fact]
public void ForcedToEnumeratorDoesntEnumerate()
{
var iterator = NumberRangeGuaranteedNotCollectionType(0, 3).Except(Enumerable.Range(0, 3));
// Don't insist on this behaviour, but check it's correct if it happens
var en = iterator as IEnumerator<int>;
Assert.False(en != null && en.MoveNext());
}
[Fact]
public void HashSetWithBuiltInComparer_HashSetContainsNotUsed()
{
IEnumerable<string> input1 = new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "a" };
IEnumerable<string> input2 = new[] { "A" };
Assert.Equal(new[] { "a" }, input1.Except(input2));
Assert.Equal(new[] { "a" }, input1.Except(input2, null));
Assert.Equal(new[] { "a" }, input1.Except(input2, EqualityComparer<string>.Default));
Assert.Equal(Enumerable.Empty<string>(), input1.Except(input2, StringComparer.OrdinalIgnoreCase));
Assert.Equal(new[] { "A" }, input2.Except(input1));
Assert.Equal(new[] { "A" }, input2.Except(input1, null));
Assert.Equal(new[] { "A" }, input2.Except(input1, EqualityComparer<string>.Default));
Assert.Equal(Enumerable.Empty<string>(), input2.Except(input1, StringComparer.OrdinalIgnoreCase));
}
[Fact]
public void ExceptBy_FirstNull_ThrowsArgumentNullException()
{
string[] first = null;
string[] second = { "bBo", "shriC" };
AssertExtensions.Throws<ArgumentNullException>("first", () => first.ExceptBy(second, x => x));
AssertExtensions.Throws<ArgumentNullException>("first", () => first.ExceptBy(second, x => x, new AnagramEqualityComparer()));
}
[Fact]
public void ExceptBy_SecondNull_ThrowsArgumentNullException()
{
string[] first = { "Bob", "Tim", "Robert", "Chris" };
string[] second = null;
AssertExtensions.Throws<ArgumentNullException>("second", () => first.ExceptBy(second, x => x));
AssertExtensions.Throws<ArgumentNullException>("second", () => first.ExceptBy(second, x => x, new AnagramEqualityComparer()));
}
[Fact]
public void ExceptBy_KeySelectorNull_ThrowsArgumentNullException()
{
string[] first = { "Bob", "Tim", "Robert", "Chris" };
string[] second = { "bBo", "shriC" };
Func<string, string> keySelector = null;
AssertExtensions.Throws<ArgumentNullException>("keySelector", () => first.ExceptBy(second, keySelector));
AssertExtensions.Throws<ArgumentNullException>("keySelector", () => first.ExceptBy(second, keySelector, new AnagramEqualityComparer()));
}
[Theory]
[MemberData(nameof(ExceptBy_TestData))]
public static void ExceptBy_HasExpectedOutput<TSource, TKey>(IEnumerable<TSource> first, IEnumerable<TKey> second, Func<TSource, TKey> keySelector, IEqualityComparer<TKey>? comparer, IEnumerable<TSource> expected)
{
Assert.Equal(expected, first.ExceptBy(second, keySelector, comparer));
}
[Theory]
[MemberData(nameof(ExceptBy_TestData))]
public static void ExceptBy_RunOnce_HasExpectedOutput<TSource, TKey>(IEnumerable<TSource> first, IEnumerable<TKey> second, Func<TSource, TKey> keySelector, IEqualityComparer<TKey>? comparer, IEnumerable<TSource> expected)
{
Assert.Equal(expected, first.RunOnce().ExceptBy(second.RunOnce(), keySelector, comparer));
}
public static IEnumerable<object[]> ExceptBy_TestData()
{
yield return WrapArgs(
first: Enumerable.Range(0, 10),
second: Enumerable.Range(0, 5),
keySelector: x => x,
comparer: null,
expected: Enumerable.Range(5, 5));
yield return WrapArgs(
first: Enumerable.Repeat(5, 20),
second: Enumerable.Empty<int>(),
keySelector: x => x,
comparer: null,
expected: Enumerable.Repeat(5, 1));
yield return WrapArgs(
first: Enumerable.Repeat(5, 20),
second: Enumerable.Repeat(5, 3),
keySelector: x => x,
comparer: null,
expected: Enumerable.Empty<int>());
yield return WrapArgs(
first: new string[] { "Bob", "Tim", "Robert", "Chris" },
second: new string[] { "bBo", "shriC" },
keySelector: x => x,
null,
expected: new string[] { "Bob", "Tim", "Robert", "Chris" });
yield return WrapArgs(
first: new string[] { "Bob", "Tim", "Robert", "Chris" },
second: new string[] { "bBo", "shriC" },
keySelector: x => x,
new AnagramEqualityComparer(),
expected: new string[] { "Tim", "Robert" });
yield return WrapArgs(
first: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) },
second: new int[] { 15, 20, 40 },
keySelector: x => x.Age,
comparer: null,
expected: new (string Name, int Age)[] { ("Dick", 30) });
yield return WrapArgs(
first: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) },
second: new string[] { "moT" },
keySelector: x => x.Name,
comparer: null,
expected: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) });
yield return WrapArgs(
first: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) },
second: new string[] { "moT" },
keySelector: x => x.Name,
comparer: new AnagramEqualityComparer(),
expected: new (string Name, int Age)[] { ("Dick", 30), ("Harry", 40) });
object[] WrapArgs<TSource, TKey>(IEnumerable<TSource> first, IEnumerable<TKey> second, Func<TSource, TKey> keySelector, IEqualityComparer<TKey>? comparer, IEnumerable<TSource> expected)
=> new object[] { first, second, keySelector, comparer, expected };
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Xunit;
namespace System.Linq.Tests
{
public class ExceptTests : EnumerableTests
{
[Fact]
public void SameResultsRepeatCallsIntQuery()
{
var q1 = from x1 in new int?[] { 2, 3, null, 2, null, 4, 5 }
select x1;
var q2 = from x2 in new int?[] { 1, 9, null, 4 }
select x2;
Assert.Equal(q1.Except(q2), q1.Except(q2));
}
[Fact]
public void SameResultsRepeatCallsStringQuery()
{
var q1 = from x1 in new[] { "AAA", string.Empty, "q", "C", "#", "!@#$%^", "0987654321", "Calling Twice" }
select x1;
var q2 = from x2 in new[] { "!@#$%^", "C", "AAA", "", "Calling Twice", "SoS" }
select x2;
Assert.Equal(q1.Except(q2), q1.Except(q2));
}
public static IEnumerable<object[]> Int_TestData()
{
yield return new object[] { new int[0], new int[0], null, new int[0] };
yield return new object[] { new int[0], new int[] { -6, -8, -6, 2, 0, 0, 5, 6 }, null, new int[0] };
yield return new object[] { new int[] { 1, 1, 1, 1, 1 }, new int[] { 2, 3, 4 }, null, new int[] { 1 } };
}
[Theory]
[MemberData(nameof(Int_TestData))]
public void Int(IEnumerable<int> first, IEnumerable<int> second, IEqualityComparer<int> comparer, IEnumerable<int> expected)
{
if (comparer == null)
{
Assert.Equal(expected, first.Except(second));
}
Assert.Equal(expected, first.Except(second, comparer));
}
public static IEnumerable<object[]> String_TestData()
{
IEqualityComparer <string> defaultComparer = EqualityComparer<string>.Default;
yield return new object[] { new string[1], new string[0], defaultComparer, new string[1] };
yield return new object[] { new string[] { null, null, string.Empty }, new string[1], defaultComparer, new string[] { string.Empty } };
yield return new object[] { new string[2], new string[0], defaultComparer, new string[1] };
yield return new object[] { new string[] { "Bob", "Tim", "Robert", "Chris" }, new string[] { "bBo", "shriC" }, null, new string[] { "Bob", "Tim", "Robert", "Chris" } };
yield return new object[] { new string[] { "Bob", "Tim", "Robert", "Chris" }, new string[] { "bBo", "shriC" }, new AnagramEqualityComparer(), new string[] { "Tim", "Robert" } };
}
[Theory]
[MemberData(nameof(String_TestData))]
public void String(IEnumerable<string> first, IEnumerable<string> second, IEqualityComparer<string> comparer, IEnumerable<string> expected)
{
if (comparer == null)
{
Assert.Equal(expected, first.Except(second));
}
Assert.Equal(expected, first.Except(second, comparer));
}
public static IEnumerable<object[]> NullableInt_TestData()
{
yield return new object[] { new int?[] { -6, -8, -6, 2, 0, 0, 5, 6, null, null }, new int?[0], new int?[] { -6, -8, 2, 0, 5, 6, null } };
yield return new object[] { new int?[] { 1, 2, 2, 3, 4, 5 }, new int?[] { 5, 3, 2, 6, 6, 3, 1, null, null }, new int?[] { 4 } };
yield return new object[] { new int?[] { 2, 3, null, 2, null, 4, 5 }, new int?[] { 1, 9, null, 4 }, new int?[] { 2, 3, 5 } };
}
[Theory]
[MemberData(nameof(NullableInt_TestData))]
public void NullableInt(IEnumerable<int?> first, IEnumerable<int?> second, IEnumerable<int?> expected)
{
Assert.Equal(expected, first.Except(second));
}
[Theory]
[MemberData(nameof(NullableInt_TestData))]
public void NullableIntRunOnce(IEnumerable<int?> first, IEnumerable<int?> second, IEnumerable<int?> expected)
{
Assert.Equal(expected, first.RunOnce().Except(second.RunOnce()));
}
[Fact]
public void FirstNull_ThrowsArgumentNullException()
{
string[] first = null;
string[] second = { "bBo", "shriC" };
AssertExtensions.Throws<ArgumentNullException>("first", () => first.Except(second));
AssertExtensions.Throws<ArgumentNullException>("first", () => first.Except(second, new AnagramEqualityComparer()));
}
[Fact]
public void SecondNull_ThrowsArgumentNullException()
{
string[] first = { "Bob", "Tim", "Robert", "Chris" };
string[] second = null;
AssertExtensions.Throws<ArgumentNullException>("second", () => first.Except(second));
AssertExtensions.Throws<ArgumentNullException>("second", () => first.Except(second, new AnagramEqualityComparer()));
}
[Fact]
public void ForcedToEnumeratorDoesntEnumerate()
{
var iterator = NumberRangeGuaranteedNotCollectionType(0, 3).Except(Enumerable.Range(0, 3));
// Don't insist on this behaviour, but check it's correct if it happens
var en = iterator as IEnumerator<int>;
Assert.False(en != null && en.MoveNext());
}
[Fact]
public void HashSetWithBuiltInComparer_HashSetContainsNotUsed()
{
IEnumerable<string> input1 = new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "a" };
IEnumerable<string> input2 = new[] { "A" };
Assert.Equal(new[] { "a" }, input1.Except(input2));
Assert.Equal(new[] { "a" }, input1.Except(input2, null));
Assert.Equal(new[] { "a" }, input1.Except(input2, EqualityComparer<string>.Default));
Assert.Equal(Enumerable.Empty<string>(), input1.Except(input2, StringComparer.OrdinalIgnoreCase));
Assert.Equal(new[] { "A" }, input2.Except(input1));
Assert.Equal(new[] { "A" }, input2.Except(input1, null));
Assert.Equal(new[] { "A" }, input2.Except(input1, EqualityComparer<string>.Default));
Assert.Equal(Enumerable.Empty<string>(), input2.Except(input1, StringComparer.OrdinalIgnoreCase));
}
[Fact]
public void ExceptBy_FirstNull_ThrowsArgumentNullException()
{
string[] first = null;
string[] second = { "bBo", "shriC" };
AssertExtensions.Throws<ArgumentNullException>("first", () => first.ExceptBy(second, x => x));
AssertExtensions.Throws<ArgumentNullException>("first", () => first.ExceptBy(second, x => x, new AnagramEqualityComparer()));
}
[Fact]
public void ExceptBy_SecondNull_ThrowsArgumentNullException()
{
string[] first = { "Bob", "Tim", "Robert", "Chris" };
string[] second = null;
AssertExtensions.Throws<ArgumentNullException>("second", () => first.ExceptBy(second, x => x));
AssertExtensions.Throws<ArgumentNullException>("second", () => first.ExceptBy(second, x => x, new AnagramEqualityComparer()));
}
[Fact]
public void ExceptBy_KeySelectorNull_ThrowsArgumentNullException()
{
string[] first = { "Bob", "Tim", "Robert", "Chris" };
string[] second = { "bBo", "shriC" };
Func<string, string> keySelector = null;
AssertExtensions.Throws<ArgumentNullException>("keySelector", () => first.ExceptBy(second, keySelector));
AssertExtensions.Throws<ArgumentNullException>("keySelector", () => first.ExceptBy(second, keySelector, new AnagramEqualityComparer()));
}
[Theory]
[MemberData(nameof(ExceptBy_TestData))]
public static void ExceptBy_HasExpectedOutput<TSource, TKey>(IEnumerable<TSource> first, IEnumerable<TKey> second, Func<TSource, TKey> keySelector, IEqualityComparer<TKey>? comparer, IEnumerable<TSource> expected)
{
Assert.Equal(expected, first.ExceptBy(second, keySelector, comparer));
}
[Theory]
[MemberData(nameof(ExceptBy_TestData))]
public static void ExceptBy_RunOnce_HasExpectedOutput<TSource, TKey>(IEnumerable<TSource> first, IEnumerable<TKey> second, Func<TSource, TKey> keySelector, IEqualityComparer<TKey>? comparer, IEnumerable<TSource> expected)
{
Assert.Equal(expected, first.RunOnce().ExceptBy(second.RunOnce(), keySelector, comparer));
}
public static IEnumerable<object[]> ExceptBy_TestData()
{
yield return WrapArgs(
first: Enumerable.Range(0, 10),
second: Enumerable.Range(0, 5),
keySelector: x => x,
comparer: null,
expected: Enumerable.Range(5, 5));
yield return WrapArgs(
first: Enumerable.Repeat(5, 20),
second: Enumerable.Empty<int>(),
keySelector: x => x,
comparer: null,
expected: Enumerable.Repeat(5, 1));
yield return WrapArgs(
first: Enumerable.Repeat(5, 20),
second: Enumerable.Repeat(5, 3),
keySelector: x => x,
comparer: null,
expected: Enumerable.Empty<int>());
yield return WrapArgs(
first: new string[] { "Bob", "Tim", "Robert", "Chris" },
second: new string[] { "bBo", "shriC" },
keySelector: x => x,
null,
expected: new string[] { "Bob", "Tim", "Robert", "Chris" });
yield return WrapArgs(
first: new string[] { "Bob", "Tim", "Robert", "Chris" },
second: new string[] { "bBo", "shriC" },
keySelector: x => x,
new AnagramEqualityComparer(),
expected: new string[] { "Tim", "Robert" });
yield return WrapArgs(
first: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) },
second: new int[] { 15, 20, 40 },
keySelector: x => x.Age,
comparer: null,
expected: new (string Name, int Age)[] { ("Dick", 30) });
yield return WrapArgs(
first: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) },
second: new string[] { "moT" },
keySelector: x => x.Name,
comparer: null,
expected: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) });
yield return WrapArgs(
first: new (string Name, int Age)[] { ("Tom", 20), ("Dick", 30), ("Harry", 40) },
second: new string[] { "moT" },
keySelector: x => x.Name,
comparer: new AnagramEqualityComparer(),
expected: new (string Name, int Age)[] { ("Dick", 30), ("Harry", 40) });
object[] WrapArgs<TSource, TKey>(IEnumerable<TSource> first, IEnumerable<TKey> second, Func<TSource, TKey> keySelector, IEqualityComparer<TKey>? comparer, IEnumerable<TSource> expected)
=> new object[] { first, second, keySelector, comparer, expected };
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/Methodical/Invoke/25params/25param1a.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
internal class test
{
private static int f1(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10,
int a11, int a12, int a13, int a14, int a15,
int a16, int a17, int a18, int a19, int a20,
int a21, int a22, int a23, int a24, int a25)
{
int sum = a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10
+ a11 + a12 + a13 + a14 + a15 + a16 + a17 + a18 + a19
+ a20 + a21 + a22 + a23 + a24 + a25;
Console.WriteLine("The sum is {0}", sum);
return sum;
}
private static int f(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10,
int a11, int a12, int a13, int a14, int a15,
int a16, int a17, int a18, int a19, int a20,
int a21, int a22, int a23, int a24, int a25)
{
Console.WriteLine(a1);
Console.WriteLine(a2);
Console.WriteLine(a3);
Console.WriteLine(a4);
Console.WriteLine(a5);
Console.WriteLine(a6);
Console.WriteLine(a7);
Console.WriteLine(a8);
Console.WriteLine(a9);
Console.WriteLine(a10);
Console.WriteLine(a11);
Console.WriteLine(a12);
Console.WriteLine(a13);
Console.WriteLine(a14);
Console.WriteLine(a15);
Console.WriteLine(a16);
Console.WriteLine(a17);
Console.WriteLine(a18);
Console.WriteLine(a19);
Console.WriteLine(a20);
Console.WriteLine(a21);
Console.WriteLine(a22);
Console.WriteLine(a23);
Console.WriteLine(a24);
Console.WriteLine(a25);
int sum = f1(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15,
a16, a17, a18, a19, a20, a21, a22, a23, a24, a25);
return sum;
}
private static int Main()
{
Console.WriteLine("Testing method of 25 parameters, all of int data type");
int sum = f(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25);
if (sum == 325)
return 100;
else
return 1;
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
internal class test
{
private static int f1(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10,
int a11, int a12, int a13, int a14, int a15,
int a16, int a17, int a18, int a19, int a20,
int a21, int a22, int a23, int a24, int a25)
{
int sum = a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10
+ a11 + a12 + a13 + a14 + a15 + a16 + a17 + a18 + a19
+ a20 + a21 + a22 + a23 + a24 + a25;
Console.WriteLine("The sum is {0}", sum);
return sum;
}
private static int f(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10,
int a11, int a12, int a13, int a14, int a15,
int a16, int a17, int a18, int a19, int a20,
int a21, int a22, int a23, int a24, int a25)
{
Console.WriteLine(a1);
Console.WriteLine(a2);
Console.WriteLine(a3);
Console.WriteLine(a4);
Console.WriteLine(a5);
Console.WriteLine(a6);
Console.WriteLine(a7);
Console.WriteLine(a8);
Console.WriteLine(a9);
Console.WriteLine(a10);
Console.WriteLine(a11);
Console.WriteLine(a12);
Console.WriteLine(a13);
Console.WriteLine(a14);
Console.WriteLine(a15);
Console.WriteLine(a16);
Console.WriteLine(a17);
Console.WriteLine(a18);
Console.WriteLine(a19);
Console.WriteLine(a20);
Console.WriteLine(a21);
Console.WriteLine(a22);
Console.WriteLine(a23);
Console.WriteLine(a24);
Console.WriteLine(a25);
int sum = f1(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15,
a16, a17, a18, a19, a20, a21, a22, a23, a24, a25);
return sum;
}
private static int Main()
{
Console.WriteLine("Testing method of 25 parameters, all of int data type");
int sum = f(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25);
if (sum == 325)
return 100;
else
return 1;
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b50145/b50145.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
using System;
public class test
{
static float f1(float x, float y)
{
x -= x * y;
return x;
}
public static int Main()
{
// expected: 2 - 2 * 3 = -4
// with bug: 2 * (1 + 3) = 8
float result = f1(2, 3);
System.Console.WriteLine(result);
if (result != -4.0)
{
System.Console.WriteLine("FAILED");
return 1;
}
return 100;
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
using System;
public class test
{
static float f1(float x, float y)
{
x -= x * y;
return x;
}
public static int Main()
{
// expected: 2 - 2 * 3 = -4
// with bug: 2 * (1 + 3) = 8
float result = f1(2, 3);
System.Console.WriteLine(result);
if (result != -4.0)
{
System.Console.WriteLine("FAILED");
return 1;
}
return 100;
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/HardwareIntrinsics/General/Vector128/Subtract.Int16.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
namespace JIT.HardwareIntrinsics.General
{
public static partial class Program
{
private static void SubtractInt16()
{
var test = new VectorBinaryOpTest__SubtractInt16();
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
// Validates passing a static member works
test.RunClsVarScenario();
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
// Validates passing an instance member of a class works
test.RunClassFldScenario();
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class VectorBinaryOpTest__SubtractInt16
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle outHandle;
private ulong alignment;
public DataTable(Int16[] inArray1, Int16[] inArray2, Int16[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int16>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int16>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int16>();
if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int16, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int16, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<Int16> _fld1;
public Vector128<Int16> _fld2;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref testStruct._fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref testStruct._fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
return testStruct;
}
public void RunStructFldScenario(VectorBinaryOpTest__SubtractInt16 testClass)
{
var result = Vector128.Subtract(_fld1, _fld2);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Int16>>() / sizeof(Int16);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Int16>>() / sizeof(Int16);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Int16>>() / sizeof(Int16);
private static Int16[] _data1 = new Int16[Op1ElementCount];
private static Int16[] _data2 = new Int16[Op2ElementCount];
private static Vector128<Int16> _clsVar1;
private static Vector128<Int16> _clsVar2;
private Vector128<Int16> _fld1;
private Vector128<Int16> _fld2;
private DataTable _dataTable;
static VectorBinaryOpTest__SubtractInt16()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _clsVar1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _clsVar2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
}
public VectorBinaryOpTest__SubtractInt16()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
_dataTable = new DataTable(_data1, _data2, new Int16[RetElementCount], LargestVectorSize);
}
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = Vector128.Subtract(
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray2Ptr)
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var method = typeof(Vector128).GetMethod(nameof(Vector128.Subtract), new Type[] {
typeof(Vector128<Int16>),
typeof(Vector128<Int16>)
});
if (method is null)
{
method = typeof(Vector128).GetMethod(nameof(Vector128.Subtract), 1, new Type[] {
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)),
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0))
});
}
if (method.IsGenericMethodDefinition)
{
method = method.MakeGenericMethod(typeof(Int16));
}
var result = method.Invoke(null, new object[] {
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray2Ptr)
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Int16>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = Vector128.Subtract(
_clsVar1,
_clsVar2
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<Int16>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<Int16>>(_dataTable.inArray2Ptr);
var result = Vector128.Subtract(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new VectorBinaryOpTest__SubtractInt16();
var result = Vector128.Subtract(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = Vector128.Subtract(_fld1, _fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = Vector128.Subtract(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
private void ValidateResult(Vector128<Int16> op1, Vector128<Int16> op2, void* result, [CallerMemberName] string method = "")
{
Int16[] inArray1 = new Int16[Op1ElementCount];
Int16[] inArray2 = new Int16[Op2ElementCount];
Int16[] outArray = new Int16[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), op2);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int16>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "")
{
Int16[] inArray1 = new Int16[Op1ElementCount];
Int16[] inArray2 = new Int16[Op2ElementCount];
Int16[] outArray = new Int16[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Int16>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Int16>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int16>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(Int16[] left, Int16[] right, Int16[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
if (result[0] != (short)(left[0] - right[0]))
{
succeeded = false;
}
else
{
for (var i = 1; i < RetElementCount; i++)
{
if (result[i] != (short)(left[i] - right[i]))
{
succeeded = false;
break;
}
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.Subtract)}<Int16>(Vector128<Int16>, Vector128<Int16>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})");
TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
namespace JIT.HardwareIntrinsics.General
{
public static partial class Program
{
private static void SubtractInt16()
{
var test = new VectorBinaryOpTest__SubtractInt16();
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
// Validates passing a static member works
test.RunClsVarScenario();
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
// Validates passing an instance member of a class works
test.RunClassFldScenario();
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class VectorBinaryOpTest__SubtractInt16
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle outHandle;
private ulong alignment;
public DataTable(Int16[] inArray1, Int16[] inArray2, Int16[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int16>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int16>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int16>();
if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int16, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int16, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<Int16> _fld1;
public Vector128<Int16> _fld2;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref testStruct._fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref testStruct._fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
return testStruct;
}
public void RunStructFldScenario(VectorBinaryOpTest__SubtractInt16 testClass)
{
var result = Vector128.Subtract(_fld1, _fld2);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Int16>>() / sizeof(Int16);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Int16>>() / sizeof(Int16);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Int16>>() / sizeof(Int16);
private static Int16[] _data1 = new Int16[Op1ElementCount];
private static Int16[] _data2 = new Int16[Op2ElementCount];
private static Vector128<Int16> _clsVar1;
private static Vector128<Int16> _clsVar2;
private Vector128<Int16> _fld1;
private Vector128<Int16> _fld2;
private DataTable _dataTable;
static VectorBinaryOpTest__SubtractInt16()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _clsVar1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _clsVar2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
}
public VectorBinaryOpTest__SubtractInt16()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int16>, byte>(ref _fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int16>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); }
_dataTable = new DataTable(_data1, _data2, new Int16[RetElementCount], LargestVectorSize);
}
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = Vector128.Subtract(
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray2Ptr)
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var method = typeof(Vector128).GetMethod(nameof(Vector128.Subtract), new Type[] {
typeof(Vector128<Int16>),
typeof(Vector128<Int16>)
});
if (method is null)
{
method = typeof(Vector128).GetMethod(nameof(Vector128.Subtract), 1, new Type[] {
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)),
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0))
});
}
if (method.IsGenericMethodDefinition)
{
method = method.MakeGenericMethod(typeof(Int16));
}
var result = method.Invoke(null, new object[] {
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Int16>>(_dataTable.inArray2Ptr)
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Int16>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = Vector128.Subtract(
_clsVar1,
_clsVar2
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<Int16>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<Int16>>(_dataTable.inArray2Ptr);
var result = Vector128.Subtract(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new VectorBinaryOpTest__SubtractInt16();
var result = Vector128.Subtract(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = Vector128.Subtract(_fld1, _fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = Vector128.Subtract(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
private void ValidateResult(Vector128<Int16> op1, Vector128<Int16> op2, void* result, [CallerMemberName] string method = "")
{
Int16[] inArray1 = new Int16[Op1ElementCount];
Int16[] inArray2 = new Int16[Op2ElementCount];
Int16[] outArray = new Int16[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), op2);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int16>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "")
{
Int16[] inArray1 = new Int16[Op1ElementCount];
Int16[] inArray2 = new Int16[Op2ElementCount];
Int16[] outArray = new Int16[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Int16>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Int16>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Int16>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(Int16[] left, Int16[] right, Int16[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
if (result[0] != (short)(left[0] - right[0]))
{
succeeded = false;
}
else
{
for (var i = 1; i < RetElementCount; i++)
{
if (result[i] != (short)(left[i] - right[i]))
{
succeeded = false;
break;
}
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.Subtract)}<Int16>(Vector128<Int16>, Vector128<Int16>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})");
TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/Methodical/cctor/xassem/xprecise2.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// instance method
using System;
namespace Precise
{
class Driver_xprecise2
{
public static int Main()
{
try
{
Console.WriteLine("Testing .cctor() invocation by calling instance method across assembly");
Console.WriteLine();
Console.WriteLine("Before calling instance method");
// .cctor should not run yet
if (measure.a != 0xCC)
{
Console.WriteLine("in Main(), measure.a is {0}", measure.a);
Console.WriteLine("FAILED");
return 1;
}
// the next line should trigger .cctor because .ctor is an instance method
test t = new test();
Console.WriteLine("After calling instance method");
if (measure.a != 8)
{
Console.WriteLine("in Main() after new test(), measure.a is {0}", measure.a);
Console.WriteLine("FAILED");
return -1;
}
}
catch (Exception e)
{
Console.WriteLine(e.StackTrace);
return -1;
}
Console.WriteLine();
Console.WriteLine("PASSED");
return 100;
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// instance method
using System;
namespace Precise
{
class Driver_xprecise2
{
public static int Main()
{
try
{
Console.WriteLine("Testing .cctor() invocation by calling instance method across assembly");
Console.WriteLine();
Console.WriteLine("Before calling instance method");
// .cctor should not run yet
if (measure.a != 0xCC)
{
Console.WriteLine("in Main(), measure.a is {0}", measure.a);
Console.WriteLine("FAILED");
return 1;
}
// the next line should trigger .cctor because .ctor is an instance method
test t = new test();
Console.WriteLine("After calling instance method");
if (measure.a != 8)
{
Console.WriteLine("in Main() after new test(), measure.a is {0}", measure.a);
Console.WriteLine("FAILED");
return -1;
}
}
catch (Exception e)
{
Console.WriteLine(e.StackTrace);
return -1;
}
Console.WriteLine();
Console.WriteLine("PASSED");
return 100;
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Diagnostics.EventLog/src/System/Diagnostics/Reader/EventLogWatcher.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Threading;
using Microsoft.Win32;
namespace System.Diagnostics.Eventing.Reader
{
/// <summary>
/// Used for subscribing to event record notifications from
/// event log.
/// </summary>
public class EventLogWatcher : IDisposable
{
public event EventHandler<EventRecordWrittenEventArgs> EventRecordWritten;
private readonly EventLogQuery _eventQuery;
private readonly EventBookmark _bookmark;
private readonly bool _readExistingEvents;
private EventLogHandle _handle;
private readonly IntPtr[] _eventsBuffer;
private int _numEventsInBuffer;
private bool _isSubscribing;
private int _callbackThreadId;
private AutoResetEvent _subscriptionWaitHandle;
private AutoResetEvent _unregisterDoneHandle;
private RegisteredWaitHandle _registeredWaitHandle;
/// <summary>
/// Maintains cached display / metadata information returned from
/// EventRecords that were obtained from this reader.
/// </summary>
private readonly ProviderMetadataCachedInformation cachedMetadataInformation;
private EventLogException asyncException;
public EventLogWatcher(string path)
: this(new EventLogQuery(path, PathType.LogName), null, false)
{
}
public EventLogWatcher(EventLogQuery eventQuery)
: this(eventQuery, null, false)
{
}
public EventLogWatcher(EventLogQuery eventQuery, EventBookmark bookmark)
: this(eventQuery, bookmark, false)
{
}
public EventLogWatcher(EventLogQuery eventQuery!!, EventBookmark bookmark, bool readExistingEvents)
{
if (bookmark != null)
{
readExistingEvents = false;
}
// Explicit data
_eventQuery = eventQuery;
_readExistingEvents = readExistingEvents;
if (_eventQuery.ReverseDirection)
{
throw new InvalidOperationException();
}
_eventsBuffer = new IntPtr[64];
cachedMetadataInformation = new ProviderMetadataCachedInformation(eventQuery.Session, null, 50);
_bookmark = bookmark;
}
public bool Enabled
{
get
{
return _isSubscribing;
}
set
{
if (value && !_isSubscribing)
{
StartSubscribing();
}
else if (!value && _isSubscribing)
{
StopSubscribing();
}
}
}
internal void StopSubscribing()
{
// C:\public\System.Diagnostics.Eventing\Microsoft\Win32\SafeHandles;
// Need to set isSubscribing to false before waiting for completion of callback.
_isSubscribing = false;
if (_registeredWaitHandle != null)
{
_registeredWaitHandle.Unregister(_unregisterDoneHandle);
if (_callbackThreadId != Environment.CurrentManagedThreadId)
{
// Not calling Stop from within callback - wait for
// Any outstanding callbacks to complete.
if (_unregisterDoneHandle != null)
{
_unregisterDoneHandle.WaitOne();
}
}
_registeredWaitHandle = null;
}
if (_unregisterDoneHandle != null)
{
_unregisterDoneHandle.Close();
_unregisterDoneHandle = null;
}
if (_subscriptionWaitHandle != null)
{
_subscriptionWaitHandle.Close();
_subscriptionWaitHandle = null;
}
for (int i = 0; i < _numEventsInBuffer; i++)
{
if (_eventsBuffer[i] != IntPtr.Zero)
{
UnsafeNativeMethods.EvtClose(_eventsBuffer[i]);
_eventsBuffer[i] = IntPtr.Zero;
}
}
_numEventsInBuffer = 0;
if (_handle != null && !_handle.IsInvalid)
{
_handle.Dispose();
}
}
internal void StartSubscribing()
{
if (_isSubscribing)
{
throw new InvalidOperationException();
}
int flag = 0;
if (_bookmark != null)
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeStartAfterBookmark;
}
else if (_readExistingEvents)
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeStartAtOldestRecord;
}
else
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeToFutureEvents;
}
if (_eventQuery.TolerateQueryErrors)
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeTolerateQueryErrors;
}
// C:\public\System.Diagnostics.Eventing\Microsoft\Win32\SafeHandles;
_callbackThreadId = -1;
_unregisterDoneHandle = new AutoResetEvent(false);
_subscriptionWaitHandle = new AutoResetEvent(false);
EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(_bookmark);
using (bookmarkHandle)
{
_handle = UnsafeNativeMethods.EvtSubscribe(_eventQuery.Session.Handle,
_subscriptionWaitHandle.SafeWaitHandle,
_eventQuery.Path,
_eventQuery.Query,
bookmarkHandle,
IntPtr.Zero,
IntPtr.Zero,
flag);
}
_isSubscribing = true;
RequestEvents();
_registeredWaitHandle = ThreadPool.RegisterWaitForSingleObject(
_subscriptionWaitHandle,
new WaitOrTimerCallback(SubscribedEventsAvailableCallback),
null,
-1,
false);
}
internal void SubscribedEventsAvailableCallback(object state, bool timedOut)
{
_callbackThreadId = Environment.CurrentManagedThreadId;
try
{
RequestEvents();
}
finally
{
_callbackThreadId = -1;
}
}
private void RequestEvents()
{
// C:\public\System.Diagnostics.Eventing\Microsoft\Win32\SafeHandles;
asyncException = null;
Debug.Assert(_numEventsInBuffer == 0);
bool results = false;
do
{
if (!_isSubscribing)
{
break;
}
try
{
results = NativeWrapper.EvtNext(_handle, _eventsBuffer.Length, _eventsBuffer, 0, 0, ref _numEventsInBuffer);
if (!results)
{
return;
}
}
catch (Exception e)
{
asyncException = new EventLogException();
asyncException.Data.Add("RealException", e);
}
HandleEventsRequestCompletion();
} while (results);
}
private void IssueCallback(EventRecordWrittenEventArgs eventArgs)
{
if (EventRecordWritten != null)
{
EventRecordWritten(this, eventArgs);
}
}
private void HandleEventsRequestCompletion()
{
if (asyncException != null)
{
EventRecordWrittenEventArgs args = new EventRecordWrittenEventArgs(asyncException.Data["RealException"] as Exception);
IssueCallback(args);
}
for (int i = 0; i < _numEventsInBuffer; i++)
{
if (!_isSubscribing)
{
break;
}
EventLogRecord record = new EventLogRecord(new EventLogHandle(_eventsBuffer[i], true), _eventQuery.Session, cachedMetadataInformation);
EventRecordWrittenEventArgs args = new EventRecordWrittenEventArgs(record);
_eventsBuffer[i] = IntPtr.Zero; // user is responsible for calling Dispose().
IssueCallback(args);
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
StopSubscribing();
return;
}
for (int i = 0; i < _numEventsInBuffer; i++)
{
if (_eventsBuffer[i] != IntPtr.Zero)
{
NativeWrapper.EvtClose(_eventsBuffer[i]);
_eventsBuffer[i] = IntPtr.Zero;
}
}
_numEventsInBuffer = 0;
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Threading;
using Microsoft.Win32;
namespace System.Diagnostics.Eventing.Reader
{
/// <summary>
/// Used for subscribing to event record notifications from
/// event log.
/// </summary>
public class EventLogWatcher : IDisposable
{
public event EventHandler<EventRecordWrittenEventArgs> EventRecordWritten;
private readonly EventLogQuery _eventQuery;
private readonly EventBookmark _bookmark;
private readonly bool _readExistingEvents;
private EventLogHandle _handle;
private readonly IntPtr[] _eventsBuffer;
private int _numEventsInBuffer;
private bool _isSubscribing;
private int _callbackThreadId;
private AutoResetEvent _subscriptionWaitHandle;
private AutoResetEvent _unregisterDoneHandle;
private RegisteredWaitHandle _registeredWaitHandle;
/// <summary>
/// Maintains cached display / metadata information returned from
/// EventRecords that were obtained from this reader.
/// </summary>
private readonly ProviderMetadataCachedInformation cachedMetadataInformation;
private EventLogException asyncException;
public EventLogWatcher(string path)
: this(new EventLogQuery(path, PathType.LogName), null, false)
{
}
public EventLogWatcher(EventLogQuery eventQuery)
: this(eventQuery, null, false)
{
}
public EventLogWatcher(EventLogQuery eventQuery, EventBookmark bookmark)
: this(eventQuery, bookmark, false)
{
}
public EventLogWatcher(EventLogQuery eventQuery!!, EventBookmark bookmark, bool readExistingEvents)
{
if (bookmark != null)
{
readExistingEvents = false;
}
// Explicit data
_eventQuery = eventQuery;
_readExistingEvents = readExistingEvents;
if (_eventQuery.ReverseDirection)
{
throw new InvalidOperationException();
}
_eventsBuffer = new IntPtr[64];
cachedMetadataInformation = new ProviderMetadataCachedInformation(eventQuery.Session, null, 50);
_bookmark = bookmark;
}
public bool Enabled
{
get
{
return _isSubscribing;
}
set
{
if (value && !_isSubscribing)
{
StartSubscribing();
}
else if (!value && _isSubscribing)
{
StopSubscribing();
}
}
}
internal void StopSubscribing()
{
// C:\public\System.Diagnostics.Eventing\Microsoft\Win32\SafeHandles;
// Need to set isSubscribing to false before waiting for completion of callback.
_isSubscribing = false;
if (_registeredWaitHandle != null)
{
_registeredWaitHandle.Unregister(_unregisterDoneHandle);
if (_callbackThreadId != Environment.CurrentManagedThreadId)
{
// Not calling Stop from within callback - wait for
// Any outstanding callbacks to complete.
if (_unregisterDoneHandle != null)
{
_unregisterDoneHandle.WaitOne();
}
}
_registeredWaitHandle = null;
}
if (_unregisterDoneHandle != null)
{
_unregisterDoneHandle.Close();
_unregisterDoneHandle = null;
}
if (_subscriptionWaitHandle != null)
{
_subscriptionWaitHandle.Close();
_subscriptionWaitHandle = null;
}
for (int i = 0; i < _numEventsInBuffer; i++)
{
if (_eventsBuffer[i] != IntPtr.Zero)
{
UnsafeNativeMethods.EvtClose(_eventsBuffer[i]);
_eventsBuffer[i] = IntPtr.Zero;
}
}
_numEventsInBuffer = 0;
if (_handle != null && !_handle.IsInvalid)
{
_handle.Dispose();
}
}
internal void StartSubscribing()
{
if (_isSubscribing)
{
throw new InvalidOperationException();
}
int flag = 0;
if (_bookmark != null)
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeStartAfterBookmark;
}
else if (_readExistingEvents)
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeStartAtOldestRecord;
}
else
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeToFutureEvents;
}
if (_eventQuery.TolerateQueryErrors)
{
flag |= (int)UnsafeNativeMethods.EvtSubscribeFlags.EvtSubscribeTolerateQueryErrors;
}
// C:\public\System.Diagnostics.Eventing\Microsoft\Win32\SafeHandles;
_callbackThreadId = -1;
_unregisterDoneHandle = new AutoResetEvent(false);
_subscriptionWaitHandle = new AutoResetEvent(false);
EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(_bookmark);
using (bookmarkHandle)
{
_handle = UnsafeNativeMethods.EvtSubscribe(_eventQuery.Session.Handle,
_subscriptionWaitHandle.SafeWaitHandle,
_eventQuery.Path,
_eventQuery.Query,
bookmarkHandle,
IntPtr.Zero,
IntPtr.Zero,
flag);
}
_isSubscribing = true;
RequestEvents();
_registeredWaitHandle = ThreadPool.RegisterWaitForSingleObject(
_subscriptionWaitHandle,
new WaitOrTimerCallback(SubscribedEventsAvailableCallback),
null,
-1,
false);
}
internal void SubscribedEventsAvailableCallback(object state, bool timedOut)
{
_callbackThreadId = Environment.CurrentManagedThreadId;
try
{
RequestEvents();
}
finally
{
_callbackThreadId = -1;
}
}
private void RequestEvents()
{
// C:\public\System.Diagnostics.Eventing\Microsoft\Win32\SafeHandles;
asyncException = null;
Debug.Assert(_numEventsInBuffer == 0);
bool results = false;
do
{
if (!_isSubscribing)
{
break;
}
try
{
results = NativeWrapper.EvtNext(_handle, _eventsBuffer.Length, _eventsBuffer, 0, 0, ref _numEventsInBuffer);
if (!results)
{
return;
}
}
catch (Exception e)
{
asyncException = new EventLogException();
asyncException.Data.Add("RealException", e);
}
HandleEventsRequestCompletion();
} while (results);
}
private void IssueCallback(EventRecordWrittenEventArgs eventArgs)
{
if (EventRecordWritten != null)
{
EventRecordWritten(this, eventArgs);
}
}
private void HandleEventsRequestCompletion()
{
if (asyncException != null)
{
EventRecordWrittenEventArgs args = new EventRecordWrittenEventArgs(asyncException.Data["RealException"] as Exception);
IssueCallback(args);
}
for (int i = 0; i < _numEventsInBuffer; i++)
{
if (!_isSubscribing)
{
break;
}
EventLogRecord record = new EventLogRecord(new EventLogHandle(_eventsBuffer[i], true), _eventQuery.Session, cachedMetadataInformation);
EventRecordWrittenEventArgs args = new EventRecordWrittenEventArgs(record);
_eventsBuffer[i] = IntPtr.Zero; // user is responsible for calling Dispose().
IssueCallback(args);
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
StopSubscribing();
return;
}
for (int i = 0; i < _numEventsInBuffer; i++)
{
if (_eventsBuffer[i] != IntPtr.Zero)
{
NativeWrapper.EvtClose(_eventsBuffer[i]);
_eventsBuffer[i] = IntPtr.Zero;
}
}
_numEventsInBuffer = 0;
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.ComponentModel.TypeConverter/tests/ProvidePropertyAttributeTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Xunit;
namespace System.ComponentModel
{
public class ProvidePropertyAttributeTests
{
[Theory]
[InlineData(null, null)]
[InlineData("", "")]
[InlineData("propertyName", "invalidName")]
[InlineData("propertyName", "System.Int32")]
public void Ctor_String_String(string propertyName, string receiverTypeName)
{
var attribute = new ProvidePropertyAttribute(propertyName, receiverTypeName);
Assert.Equal(propertyName, attribute.PropertyName);
Assert.Equal(receiverTypeName, attribute.ReceiverTypeName);
}
[Theory]
[InlineData(null, typeof(int))]
[InlineData("", typeof(ProvidePropertyAttribute))]
[InlineData("propertyName", typeof(ProvidePropertyAttributeTests))]
public void Ctor_String_Type(string propertyName, Type receiverType)
{
var attribute = new ProvidePropertyAttribute(propertyName, receiverType);
Assert.Equal(propertyName, attribute.PropertyName);
Assert.Equal(receiverType.AssemblyQualifiedName, attribute.ReceiverTypeName);
}
[Fact]
public void Ctor_NullReceiverType_ThrowsNullReferenceException()
{
AssertExtensions.Throws<ArgumentNullException, NullReferenceException>("receiverType", () => new ProvidePropertyAttribute("propertyName", (Type)null));
}
public static IEnumerable<object[]> Equals_TestData()
{
var attribute = new ProvidePropertyAttribute("propertyName", "receiverTypeName");
yield return new object[] { attribute, attribute, true };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyName", "receiverTypeName"), true };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyname", "receiverTypeName"), false };
yield return new object[] { attribute, new ProvidePropertyAttribute(null, "receiverTypeName"), false };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyName", "receivertypename"), false };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyName", (string)null), false };
yield return new object[] { new ProvidePropertyAttribute(null, (string)null), new ProvidePropertyAttribute(null, (string)null), true };
yield return new object[] { new ProvidePropertyAttribute(null, (string)null), new ProvidePropertyAttribute("propertyName", (string)null), false };
yield return new object[] { new ProvidePropertyAttribute(null, (string)null), new ProvidePropertyAttribute(null, "receiverTypeName"), false };
yield return new object[] { attribute, new object(), false };
yield return new object[] { attribute, null, false };
}
[Theory]
[MemberData(nameof(Equals_TestData))]
public void Equals_Other_ReturnsExpected(ProvidePropertyAttribute attribute, object other, bool expected)
{
Assert.Equal(expected, attribute.Equals(other));
if (other is DesignerAttribute)
{
Assert.Equal(expected, attribute.GetHashCode().Equals(other.GetHashCode()));
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Xunit;
namespace System.ComponentModel
{
public class ProvidePropertyAttributeTests
{
[Theory]
[InlineData(null, null)]
[InlineData("", "")]
[InlineData("propertyName", "invalidName")]
[InlineData("propertyName", "System.Int32")]
public void Ctor_String_String(string propertyName, string receiverTypeName)
{
var attribute = new ProvidePropertyAttribute(propertyName, receiverTypeName);
Assert.Equal(propertyName, attribute.PropertyName);
Assert.Equal(receiverTypeName, attribute.ReceiverTypeName);
}
[Theory]
[InlineData(null, typeof(int))]
[InlineData("", typeof(ProvidePropertyAttribute))]
[InlineData("propertyName", typeof(ProvidePropertyAttributeTests))]
public void Ctor_String_Type(string propertyName, Type receiverType)
{
var attribute = new ProvidePropertyAttribute(propertyName, receiverType);
Assert.Equal(propertyName, attribute.PropertyName);
Assert.Equal(receiverType.AssemblyQualifiedName, attribute.ReceiverTypeName);
}
[Fact]
public void Ctor_NullReceiverType_ThrowsNullReferenceException()
{
AssertExtensions.Throws<ArgumentNullException, NullReferenceException>("receiverType", () => new ProvidePropertyAttribute("propertyName", (Type)null));
}
public static IEnumerable<object[]> Equals_TestData()
{
var attribute = new ProvidePropertyAttribute("propertyName", "receiverTypeName");
yield return new object[] { attribute, attribute, true };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyName", "receiverTypeName"), true };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyname", "receiverTypeName"), false };
yield return new object[] { attribute, new ProvidePropertyAttribute(null, "receiverTypeName"), false };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyName", "receivertypename"), false };
yield return new object[] { attribute, new ProvidePropertyAttribute("propertyName", (string)null), false };
yield return new object[] { new ProvidePropertyAttribute(null, (string)null), new ProvidePropertyAttribute(null, (string)null), true };
yield return new object[] { new ProvidePropertyAttribute(null, (string)null), new ProvidePropertyAttribute("propertyName", (string)null), false };
yield return new object[] { new ProvidePropertyAttribute(null, (string)null), new ProvidePropertyAttribute(null, "receiverTypeName"), false };
yield return new object[] { attribute, new object(), false };
yield return new object[] { attribute, null, false };
}
[Theory]
[MemberData(nameof(Equals_TestData))]
public void Equals_Other_ReturnsExpected(ProvidePropertyAttribute attribute, object other, bool expected)
{
Assert.Equal(expected, attribute.Equals(other));
if (other is DesignerAttribute)
{
Assert.Equal(expected, attribute.GetHashCode().Equals(other.GetHashCode()));
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Private.DataContractSerialization/Directory.Build.props | <Project>
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
</PropertyGroup>
</Project> | <Project>
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
</PropertyGroup>
</Project> | -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/Microsoft.Extensions.DependencyModel/src/ResourceAssembly.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Microsoft.Extensions.DependencyModel
{
public class ResourceAssembly
{
public ResourceAssembly(string path, string locale)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentException(null, nameof(path));
}
if (string.IsNullOrEmpty(locale))
{
throw new ArgumentException(null, nameof(locale));
}
Locale = locale;
Path = path;
}
public string Locale { get; set; }
public string Path { get; set; }
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Microsoft.Extensions.DependencyModel
{
public class ResourceAssembly
{
public ResourceAssembly(string path, string locale)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentException(null, nameof(path));
}
if (string.IsNullOrEmpty(locale))
{
throw new ArgumentException(null, nameof(locale));
}
Locale = locale;
Path = path;
}
public string Locale { get; set; }
public string Path { get; set; }
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.CodeDom/src/System/CodeDom/CodeFieldReferenceExpression.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.CodeDom
{
public class CodeFieldReferenceExpression : CodeExpression
{
private string _fieldName;
public CodeFieldReferenceExpression() { }
public CodeFieldReferenceExpression(CodeExpression targetObject, string fieldName)
{
TargetObject = targetObject;
FieldName = fieldName;
}
public CodeExpression TargetObject { get; set; }
public string FieldName
{
get => _fieldName ?? string.Empty;
set => _fieldName = value;
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.CodeDom
{
public class CodeFieldReferenceExpression : CodeExpression
{
private string _fieldName;
public CodeFieldReferenceExpression() { }
public CodeFieldReferenceExpression(CodeExpression targetObject, string fieldName)
{
TargetObject = targetObject;
FieldName = fieldName;
}
public CodeExpression TargetObject { get; set; }
public string FieldName
{
get => _fieldName ?? string.Empty;
set => _fieldName = value;
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Threading.Channels/src/System.Threading.Channels.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent);$(NetCoreAppMinimum);netstandard2.1;netstandard2.0;$(NetFrameworkMinimum)</TargetFrameworks>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageDescription>Provides types for passing data between producers and consumers.
Commonly Used Types:
System.Threading.Channel
System.Threading.Channel<T></PackageDescription>
</PropertyGroup>
<ItemGroup>
<Compile Include="System\VoidResult.cs" />
<Compile Include="System\Threading\Channels\AsyncOperation.cs" />
<Compile Include="System\Threading\Channels\AsyncOperation.netcoreapp.cs"
Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'" />
<Compile Include="System\Threading\Channels\AsyncOperation.netstandard.cs"
Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'" />
<Compile Include="System\Threading\Channels\BoundedChannel.cs" />
<Compile Include="System\Threading\Channels\BoundedChannelFullMode.cs" />
<Compile Include="System\Threading\Channels\Channel.cs" />
<Compile Include="System\Threading\Channels\ChannelClosedException.cs" />
<Compile Include="System\Threading\Channels\ChannelClosedException.netcoreapp.cs"
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" />
<Compile Include="System\Threading\Channels\ChannelOptions.cs" />
<Compile Include="System\Threading\Channels\ChannelReader.cs" />
<Compile Include="System\Threading\Channels\ChannelReader.netcoreapp.cs"
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" />
<Compile Include="System\Threading\Channels\ChannelUtilities.cs" />
<Compile Include="System\Threading\Channels\ChannelWriter.cs" />
<Compile Include="System\Threading\Channels\Channel_1.cs" />
<Compile Include="System\Threading\Channels\Channel_2.cs" />
<Compile Include="System\Threading\Channels\IDebugEnumerator.cs" />
<Compile Include="System\Threading\Channels\SingleConsumerUnboundedChannel.cs" />
<Compile Include="System\Threading\Channels\TaskCompletionSource.cs"
Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'"/>
<Compile Include="System\Threading\Channels\UnboundedChannel.cs" />
<Compile Include="$(CommonPath)Internal\Padding.cs"
Link="Common\Internal\Padding.cs" />
<Compile Include="$(CommonPath)System\Collections\Concurrent\SingleProducerConsumerQueue.cs"
Link="Common\System\Collections\Concurrent\SingleProducerConsumerQueue.cs" />
<Compile Include="$(CommonPath)System\Collections\Generic\Deque.cs"
Link="Common\System\Collections\Generic\Deque.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<Reference Include="System.Collections" />
<Reference Include="System.Collections.Concurrent" />
<Reference Include="System.Diagnostics.Debug" />
<Reference Include="System.Resources.ResourceManager" />
<Reference Include="System.Runtime" />
<Reference Include="System.Runtime.Extensions" />
<Reference Include="System.Threading" />
<Reference Include="System.Threading.ThreadPool" />
<Reference Include="System.Threading.Tasks" />
<Reference Include="System.Threading.Tasks.Extensions" />
</ItemGroup>
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))">
<PackageReference Include="System.Threading.Tasks.Extensions" Version="$(SystemThreadingTasksExtensionsVersion)" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent);$(NetCoreAppMinimum);netstandard2.1;netstandard2.0;$(NetFrameworkMinimum)</TargetFrameworks>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageDescription>Provides types for passing data between producers and consumers.
Commonly Used Types:
System.Threading.Channel
System.Threading.Channel<T></PackageDescription>
</PropertyGroup>
<ItemGroup>
<Compile Include="System\VoidResult.cs" />
<Compile Include="System\Threading\Channels\AsyncOperation.cs" />
<Compile Include="System\Threading\Channels\AsyncOperation.netcoreapp.cs"
Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'" />
<Compile Include="System\Threading\Channels\AsyncOperation.netstandard.cs"
Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'" />
<Compile Include="System\Threading\Channels\BoundedChannel.cs" />
<Compile Include="System\Threading\Channels\BoundedChannelFullMode.cs" />
<Compile Include="System\Threading\Channels\Channel.cs" />
<Compile Include="System\Threading\Channels\ChannelClosedException.cs" />
<Compile Include="System\Threading\Channels\ChannelClosedException.netcoreapp.cs"
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" />
<Compile Include="System\Threading\Channels\ChannelOptions.cs" />
<Compile Include="System\Threading\Channels\ChannelReader.cs" />
<Compile Include="System\Threading\Channels\ChannelReader.netcoreapp.cs"
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" />
<Compile Include="System\Threading\Channels\ChannelUtilities.cs" />
<Compile Include="System\Threading\Channels\ChannelWriter.cs" />
<Compile Include="System\Threading\Channels\Channel_1.cs" />
<Compile Include="System\Threading\Channels\Channel_2.cs" />
<Compile Include="System\Threading\Channels\IDebugEnumerator.cs" />
<Compile Include="System\Threading\Channels\SingleConsumerUnboundedChannel.cs" />
<Compile Include="System\Threading\Channels\TaskCompletionSource.cs"
Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'"/>
<Compile Include="System\Threading\Channels\UnboundedChannel.cs" />
<Compile Include="$(CommonPath)Internal\Padding.cs"
Link="Common\Internal\Padding.cs" />
<Compile Include="$(CommonPath)System\Collections\Concurrent\SingleProducerConsumerQueue.cs"
Link="Common\System\Collections\Concurrent\SingleProducerConsumerQueue.cs" />
<Compile Include="$(CommonPath)System\Collections\Generic\Deque.cs"
Link="Common\System\Collections\Generic\Deque.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<Reference Include="System.Collections" />
<Reference Include="System.Collections.Concurrent" />
<Reference Include="System.Diagnostics.Debug" />
<Reference Include="System.Resources.ResourceManager" />
<Reference Include="System.Runtime" />
<Reference Include="System.Runtime.Extensions" />
<Reference Include="System.Threading" />
<Reference Include="System.Threading.ThreadPool" />
<Reference Include="System.Threading.Tasks" />
<Reference Include="System.Threading.Tasks.Extensions" />
</ItemGroup>
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))">
<PackageReference Include="System.Threading.Tasks.Extensions" Version="$(SystemThreadingTasksExtensionsVersion)" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/jit64/localloc/ehverify/eh08_large.il | // Test localloc in fault
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern xunit.core {}
.assembly extern mscorlib{}
.assembly extern localloc_common{}
.assembly 'eh08_large'{}
.class private auto ansi beforefieldinit LocallocTest
extends [mscorlib]System.Object
{
.method private hidebysig static void func() cil managed
{
.maxstack 2
.locals init (int32* intArray1)
.try{
IL_000a: ldstr "Test Exception"
IL_000f: newobj instance void [mscorlib]System.Exception::.ctor(string)
IL_0014: throw
}
fault
{
IL_0000: ldc.i4.4
IL_0001: ldc.i4 0x1000
IL_0006: mul
IL_0007: localloc
IL_0009: stloc.0
IL_0015: endfault
}
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 1
.locals init (int32 retValue)
.try
{
IL_0000: call void LocallocTest::func()
IL_0005: leave.s IL_002d
}
catch [mscorlib]System.InvalidProgramException
{
IL_0007: pop
IL_0008: ldstr "InvalidProgramException was caught."
IL_000d: call void [System.Console]System.Console::WriteLine(string)
IL_0012: leave.s IL_003b
}
catch [mscorlib]System.Security.VerificationException
{
IL_0014: pop
IL_0015: ldstr "Security.VerificationException was caught."
IL_001a: call void [System.Console]System.Console::WriteLine(string)
IL_001f: leave.s IL_003b
}
catch [mscorlib]System.Exception
{
IL_0021: callvirt instance string [mscorlib]System.Exception::ToString()
IL_0026: call void [System.Console]System.Console::WriteLine(string)
IL_002b: leave.s IL_002d
}
IL_002d: ldstr "Failed"
IL_0032: call void [System.Console]System.Console::WriteLine(string)
IL_0037: ldc.i4.1
IL_0038: stloc.0
IL_0039: br.s IL_004a
IL_003b: ldstr "Passed"
IL_0040: call void [System.Console]System.Console::WriteLine(string)
IL_0045: ldc.i4.s 100
IL_0047: stloc.0
IL_0048: br.s IL_004a
IL_004a: ldloc.0
IL_004b: ret
}
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
}
}
| // Test localloc in fault
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern xunit.core {}
.assembly extern mscorlib{}
.assembly extern localloc_common{}
.assembly 'eh08_large'{}
.class private auto ansi beforefieldinit LocallocTest
extends [mscorlib]System.Object
{
.method private hidebysig static void func() cil managed
{
.maxstack 2
.locals init (int32* intArray1)
.try{
IL_000a: ldstr "Test Exception"
IL_000f: newobj instance void [mscorlib]System.Exception::.ctor(string)
IL_0014: throw
}
fault
{
IL_0000: ldc.i4.4
IL_0001: ldc.i4 0x1000
IL_0006: mul
IL_0007: localloc
IL_0009: stloc.0
IL_0015: endfault
}
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 1
.locals init (int32 retValue)
.try
{
IL_0000: call void LocallocTest::func()
IL_0005: leave.s IL_002d
}
catch [mscorlib]System.InvalidProgramException
{
IL_0007: pop
IL_0008: ldstr "InvalidProgramException was caught."
IL_000d: call void [System.Console]System.Console::WriteLine(string)
IL_0012: leave.s IL_003b
}
catch [mscorlib]System.Security.VerificationException
{
IL_0014: pop
IL_0015: ldstr "Security.VerificationException was caught."
IL_001a: call void [System.Console]System.Console::WriteLine(string)
IL_001f: leave.s IL_003b
}
catch [mscorlib]System.Exception
{
IL_0021: callvirt instance string [mscorlib]System.Exception::ToString()
IL_0026: call void [System.Console]System.Console::WriteLine(string)
IL_002b: leave.s IL_002d
}
IL_002d: ldstr "Failed"
IL_0032: call void [System.Console]System.Console::WriteLine(string)
IL_0037: ldc.i4.1
IL_0038: stloc.0
IL_0039: br.s IL_004a
IL_003b: ldstr "Passed"
IL_0040: call void [System.Console]System.Console::WriteLine(string)
IL_0045: ldc.i4.s 100
IL_0047: stloc.0
IL_0048: br.s IL_004a
IL_004a: ldloc.0
IL_004b: ret
}
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest115/Generated115.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated115.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
<ItemGroup>
<Compile Include="Generated115.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/HardwareIntrinsics/General/Vector128/Divide.Double.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
namespace JIT.HardwareIntrinsics.General
{
public static partial class Program
{
private static void DivideDouble()
{
var test = new VectorBinaryOpTest__DivideDouble();
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
// Validates passing a static member works
test.RunClsVarScenario();
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
// Validates passing an instance member of a class works
test.RunClassFldScenario();
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class VectorBinaryOpTest__DivideDouble
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle outHandle;
private ulong alignment;
public DataTable(Double[] inArray1, Double[] inArray2, Double[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Double>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Double>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Double>();
if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Double, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Double, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<Double> _fld1;
public Vector128<Double> _fld2;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref testStruct._fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref testStruct._fld2), ref Unsafe.As<Double, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
return testStruct;
}
public void RunStructFldScenario(VectorBinaryOpTest__DivideDouble testClass)
{
var result = Vector128.Divide(_fld1, _fld2);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Double>>() / sizeof(Double);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Double>>() / sizeof(Double);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Double>>() / sizeof(Double);
private static Double[] _data1 = new Double[Op1ElementCount];
private static Double[] _data2 = new Double[Op2ElementCount];
private static Vector128<Double> _clsVar1;
private static Vector128<Double> _clsVar2;
private Vector128<Double> _fld1;
private Vector128<Double> _fld2;
private DataTable _dataTable;
static VectorBinaryOpTest__DivideDouble()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _clsVar1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _clsVar2), ref Unsafe.As<Double, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
}
public VectorBinaryOpTest__DivideDouble()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _fld2), ref Unsafe.As<Double, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
_dataTable = new DataTable(_data1, _data2, new Double[RetElementCount], LargestVectorSize);
}
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = Vector128.Divide(
Unsafe.Read<Vector128<Double>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Double>>(_dataTable.inArray2Ptr)
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var method = typeof(Vector128).GetMethod(nameof(Vector128.Divide), new Type[] {
typeof(Vector128<Double>),
typeof(Vector128<Double>)
});
if (method is null)
{
method = typeof(Vector128).GetMethod(nameof(Vector128.Divide), 1, new Type[] {
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)),
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0))
});
}
if (method.IsGenericMethodDefinition)
{
method = method.MakeGenericMethod(typeof(Double));
}
var result = method.Invoke(null, new object[] {
Unsafe.Read<Vector128<Double>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Double>>(_dataTable.inArray2Ptr)
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Double>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = Vector128.Divide(
_clsVar1,
_clsVar2
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<Double>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<Double>>(_dataTable.inArray2Ptr);
var result = Vector128.Divide(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new VectorBinaryOpTest__DivideDouble();
var result = Vector128.Divide(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = Vector128.Divide(_fld1, _fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = Vector128.Divide(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
private void ValidateResult(Vector128<Double> op1, Vector128<Double> op2, void* result, [CallerMemberName] string method = "")
{
Double[] inArray1 = new Double[Op1ElementCount];
Double[] inArray2 = new Double[Op2ElementCount];
Double[] outArray = new Double[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<Double, byte>(ref inArray2[0]), op2);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Double>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "")
{
Double[] inArray1 = new Double[Op1ElementCount];
Double[] inArray2 = new Double[Op2ElementCount];
Double[] outArray = new Double[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Double>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Double>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Double>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(Double[] left, Double[] right, Double[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
if (result[0] != (double)(left[0] / right[0]))
{
succeeded = false;
}
else
{
for (var i = 1; i < RetElementCount; i++)
{
if (result[i] != (double)(left[i] / right[i]))
{
succeeded = false;
break;
}
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.Divide)}<Double>(Vector128<Double>, Vector128<Double>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})");
TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/******************************************************************************
* This file is auto-generated from a template file by the GenerateTests.csx *
* script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make *
* changes, please update the corresponding template and run according to the *
* directions listed in the file. *
******************************************************************************/
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
namespace JIT.HardwareIntrinsics.General
{
public static partial class Program
{
private static void DivideDouble()
{
var test = new VectorBinaryOpTest__DivideDouble();
// Validates basic functionality works, using Unsafe.Read
test.RunBasicScenario_UnsafeRead();
// Validates calling via reflection works, using Unsafe.Read
test.RunReflectionScenario_UnsafeRead();
// Validates passing a static member works
test.RunClsVarScenario();
// Validates passing a local works, using Unsafe.Read
test.RunLclVarScenario_UnsafeRead();
// Validates passing the field of a local class works
test.RunClassLclFldScenario();
// Validates passing an instance member of a class works
test.RunClassFldScenario();
// Validates passing the field of a local struct works
test.RunStructLclFldScenario();
// Validates passing an instance member of a struct works
test.RunStructFldScenario();
if (!test.Succeeded)
{
throw new Exception("One or more scenarios did not complete as expected.");
}
}
}
public sealed unsafe class VectorBinaryOpTest__DivideDouble
{
private struct DataTable
{
private byte[] inArray1;
private byte[] inArray2;
private byte[] outArray;
private GCHandle inHandle1;
private GCHandle inHandle2;
private GCHandle outHandle;
private ulong alignment;
public DataTable(Double[] inArray1, Double[] inArray2, Double[] outArray, int alignment)
{
int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Double>();
int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Double>();
int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Double>();
if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray)
{
throw new ArgumentException("Invalid value of alignment");
}
this.inArray1 = new byte[alignment * 2];
this.inArray2 = new byte[alignment * 2];
this.outArray = new byte[alignment * 2];
this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned);
this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned);
this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned);
this.alignment = (ulong)alignment;
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Double, byte>(ref inArray1[0]), (uint)sizeOfinArray1);
Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Double, byte>(ref inArray2[0]), (uint)sizeOfinArray2);
}
public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment);
public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment);
public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment);
public void Dispose()
{
inHandle1.Free();
inHandle2.Free();
outHandle.Free();
}
private static unsafe void* Align(byte* buffer, ulong expectedAlignment)
{
return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1));
}
}
private struct TestStruct
{
public Vector128<Double> _fld1;
public Vector128<Double> _fld2;
public static TestStruct Create()
{
var testStruct = new TestStruct();
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref testStruct._fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref testStruct._fld2), ref Unsafe.As<Double, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
return testStruct;
}
public void RunStructFldScenario(VectorBinaryOpTest__DivideDouble testClass)
{
var result = Vector128.Divide(_fld1, _fld2);
Unsafe.Write(testClass._dataTable.outArrayPtr, result);
testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
}
}
private static readonly int LargestVectorSize = 16;
private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Double>>() / sizeof(Double);
private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Double>>() / sizeof(Double);
private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Double>>() / sizeof(Double);
private static Double[] _data1 = new Double[Op1ElementCount];
private static Double[] _data2 = new Double[Op2ElementCount];
private static Vector128<Double> _clsVar1;
private static Vector128<Double> _clsVar2;
private Vector128<Double> _fld1;
private Vector128<Double> _fld2;
private DataTable _dataTable;
static VectorBinaryOpTest__DivideDouble()
{
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _clsVar1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _clsVar2), ref Unsafe.As<Double, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
}
public VectorBinaryOpTest__DivideDouble()
{
Succeeded = true;
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Double>, byte>(ref _fld2), ref Unsafe.As<Double, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Double>>());
for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetDouble(); }
for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = Math.Max((double)(1), TestLibrary.Generator.GetDouble()); }
_dataTable = new DataTable(_data1, _data2, new Double[RetElementCount], LargestVectorSize);
}
public bool Succeeded { get; set; }
public void RunBasicScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead));
var result = Vector128.Divide(
Unsafe.Read<Vector128<Double>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Double>>(_dataTable.inArray2Ptr)
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunReflectionScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead));
var method = typeof(Vector128).GetMethod(nameof(Vector128.Divide), new Type[] {
typeof(Vector128<Double>),
typeof(Vector128<Double>)
});
if (method is null)
{
method = typeof(Vector128).GetMethod(nameof(Vector128.Divide), 1, new Type[] {
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)),
typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0))
});
}
if (method.IsGenericMethodDefinition)
{
method = method.MakeGenericMethod(typeof(Double));
}
var result = method.Invoke(null, new object[] {
Unsafe.Read<Vector128<Double>>(_dataTable.inArray1Ptr),
Unsafe.Read<Vector128<Double>>(_dataTable.inArray2Ptr)
});
Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Double>)(result));
ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr);
}
public void RunClsVarScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario));
var result = Vector128.Divide(
_clsVar1,
_clsVar2
);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr);
}
public void RunLclVarScenario_UnsafeRead()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead));
var op1 = Unsafe.Read<Vector128<Double>>(_dataTable.inArray1Ptr);
var op2 = Unsafe.Read<Vector128<Double>>(_dataTable.inArray2Ptr);
var result = Vector128.Divide(op1, op2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(op1, op2, _dataTable.outArrayPtr);
}
public void RunClassLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));
var test = new VectorBinaryOpTest__DivideDouble();
var result = Vector128.Divide(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunClassFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario));
var result = Vector128.Divide(_fld1, _fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr);
}
public void RunStructLclFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario));
var test = TestStruct.Create();
var result = Vector128.Divide(test._fld1, test._fld2);
Unsafe.Write(_dataTable.outArrayPtr, result);
ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
}
public void RunStructFldScenario()
{
TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario));
var test = TestStruct.Create();
test.RunStructFldScenario(this);
}
private void ValidateResult(Vector128<Double> op1, Vector128<Double> op2, void* result, [CallerMemberName] string method = "")
{
Double[] inArray1 = new Double[Op1ElementCount];
Double[] inArray2 = new Double[Op2ElementCount];
Double[] outArray = new Double[RetElementCount];
Unsafe.WriteUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), op1);
Unsafe.WriteUnaligned(ref Unsafe.As<Double, byte>(ref inArray2[0]), op2);
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Double>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "")
{
Double[] inArray1 = new Double[Op1ElementCount];
Double[] inArray2 = new Double[Op2ElementCount];
Double[] outArray = new Double[RetElementCount];
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Double>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Double>>());
Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Double>>());
ValidateResult(inArray1, inArray2, outArray, method);
}
private void ValidateResult(Double[] left, Double[] right, Double[] result, [CallerMemberName] string method = "")
{
bool succeeded = true;
if (result[0] != (double)(left[0] / right[0]))
{
succeeded = false;
}
else
{
for (var i = 1; i < RetElementCount; i++)
{
if (result[i] != (double)(left[i] / right[i]))
{
succeeded = false;
break;
}
}
}
if (!succeeded)
{
TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.Divide)}<Double>(Vector128<Double>, Vector128<Double>): {method} failed:");
TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})");
TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})");
TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})");
TestLibrary.TestFramework.LogInformation(string.Empty);
Succeeded = false;
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/tracing/eventcounter/runtimecounters.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#if USE_MDT_EVENTSOURCE
using Microsoft.Diagnostics.Tracing;
#else
using System.Diagnostics.Tracing;
#endif
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using System.Diagnostics;
namespace RuntimeEventCounterTests
{
public class RuntimeCounterListener : EventListener
{
public RuntimeCounterListener()
{
observedRuntimeCounters = new Dictionary<string, bool>() {
{ "cpu-usage" , false },
{ "working-set", false },
{ "gc-heap-size", false },
{ "gen-0-gc-count", false },
{ "gen-1-gc-count", false },
{ "gen-2-gc-count", false },
{ "threadpool-thread-count", false },
{ "monitor-lock-contention-count", false },
{ "threadpool-queue-length", false },
{ "threadpool-completed-items-count", false },
{ "alloc-rate", false },
{ "active-timer-count", false },
{ "gc-fragmentation", false },
{ "gc-committed", false },
{ "exception-count", false },
{ "time-in-gc", false },
{ "gen-0-size", false },
{ "gen-1-size", false },
{ "gen-2-size", false },
{ "loh-size", false },
{ "poh-size", false },
{ "assembly-count", false },
{ "il-bytes-jitted", false },
{ "methods-jitted-count", false },
{ "time-in-jit", false }
};
}
private Dictionary<string, bool> observedRuntimeCounters;
protected override void OnEventSourceCreated(EventSource source)
{
if (source.Name.Equals("System.Runtime"))
{
Dictionary<string, string> refreshInterval = new Dictionary<string, string>();
refreshInterval.Add("EventCounterIntervalSec", "1");
EnableEvents(source, EventLevel.Informational,
(EventKeywords)(-1 & (~1 /* RuntimeEventSource.Keywords.AppContext */)),
refreshInterval);
}
}
protected override void OnEventWritten(EventWrittenEventArgs eventData)
{
for (int i = 0; i < eventData.Payload.Count; i++)
{
IDictionary<string, object> eventPayload = eventData.Payload[i] as IDictionary<string, object>;
if (eventPayload != null)
{
foreach (KeyValuePair<string, object> payload in eventPayload)
{
if (payload.Key.Equals("Name"))
observedRuntimeCounters[payload.Value.ToString()] = true;
}
}
}
}
public bool Verify()
{
foreach (string counterName in observedRuntimeCounters.Keys)
{
if (!observedRuntimeCounters[counterName])
{
Console.WriteLine($"Did not see {counterName}");
return false;
}
else
{
Console.WriteLine($"Saw {counterName}");
}
}
return true;
}
}
public partial class TestRuntimeEventCounter
{
public static int Main(string[] args)
{
// Create an EventListener.
using (RuntimeCounterListener myListener = new RuntimeCounterListener())
{
Thread.Sleep(3000);
if (myListener.Verify())
{
Console.WriteLine("Test passed");
return 100;
}
else
{
Console.WriteLine($"Test Failed - did not see one or more of the expected runtime counters.");
return 1;
}
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#if USE_MDT_EVENTSOURCE
using Microsoft.Diagnostics.Tracing;
#else
using System.Diagnostics.Tracing;
#endif
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using System.Diagnostics;
namespace RuntimeEventCounterTests
{
public class RuntimeCounterListener : EventListener
{
public RuntimeCounterListener()
{
observedRuntimeCounters = new Dictionary<string, bool>() {
{ "cpu-usage" , false },
{ "working-set", false },
{ "gc-heap-size", false },
{ "gen-0-gc-count", false },
{ "gen-1-gc-count", false },
{ "gen-2-gc-count", false },
{ "threadpool-thread-count", false },
{ "monitor-lock-contention-count", false },
{ "threadpool-queue-length", false },
{ "threadpool-completed-items-count", false },
{ "alloc-rate", false },
{ "active-timer-count", false },
{ "gc-fragmentation", false },
{ "gc-committed", false },
{ "exception-count", false },
{ "time-in-gc", false },
{ "gen-0-size", false },
{ "gen-1-size", false },
{ "gen-2-size", false },
{ "loh-size", false },
{ "poh-size", false },
{ "assembly-count", false },
{ "il-bytes-jitted", false },
{ "methods-jitted-count", false },
{ "time-in-jit", false }
};
}
private Dictionary<string, bool> observedRuntimeCounters;
protected override void OnEventSourceCreated(EventSource source)
{
if (source.Name.Equals("System.Runtime"))
{
Dictionary<string, string> refreshInterval = new Dictionary<string, string>();
refreshInterval.Add("EventCounterIntervalSec", "1");
EnableEvents(source, EventLevel.Informational,
(EventKeywords)(-1 & (~1 /* RuntimeEventSource.Keywords.AppContext */)),
refreshInterval);
}
}
protected override void OnEventWritten(EventWrittenEventArgs eventData)
{
for (int i = 0; i < eventData.Payload.Count; i++)
{
IDictionary<string, object> eventPayload = eventData.Payload[i] as IDictionary<string, object>;
if (eventPayload != null)
{
foreach (KeyValuePair<string, object> payload in eventPayload)
{
if (payload.Key.Equals("Name"))
observedRuntimeCounters[payload.Value.ToString()] = true;
}
}
}
}
public bool Verify()
{
foreach (string counterName in observedRuntimeCounters.Keys)
{
if (!observedRuntimeCounters[counterName])
{
Console.WriteLine($"Did not see {counterName}");
return false;
}
else
{
Console.WriteLine($"Saw {counterName}");
}
}
return true;
}
}
public partial class TestRuntimeEventCounter
{
public static int Main(string[] args)
{
// Create an EventListener.
using (RuntimeCounterListener myListener = new RuntimeCounterListener())
{
Thread.Sleep(3000);
if (myListener.Verify())
{
Console.WriteLine("Test passed");
return 100;
}
else
{
Console.WriteLine($"Test Failed - did not see one or more of the expected runtime counters.");
return 1;
}
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/coreclr/scripts/superpmi.py | #!/usr/bin/env python3
#
## Licensed to the .NET Foundation under one or more agreements.
## The .NET Foundation licenses this file to you under the MIT license.
#
##
# Title : superpmi.py
#
# Notes:
#
# Script to orchestrate SuperPMI collections, replays, asm diffs, and SuperPMI
# data management. Note that some of the options provided by this script are
# also provided in our SuperPMI collect test. The test can be found here:
# https://github.com/dotnet/runtime/blob/main/src/tests/JIT/superpmi/superpmicollect.cs.
#
################################################################################
################################################################################
import argparse
import asyncio
import csv
import datetime
import locale
import logging
import os
import multiprocessing
import platform
import shutil
import subprocess
import sys
import tempfile
import queue
import re
import urllib
import urllib.request
import zipfile
from coreclr_arguments import *
from jitutil import TempDir, ChangeDir, remove_prefix, is_zero_length_file, is_nonzero_length_file, \
make_safe_filename, find_file, download_one_url, download_files, report_azure_error, \
require_azure_storage_libraries, authenticate_using_azure, \
create_unique_directory_name, create_unique_file_name, get_files_from_path
locale.setlocale(locale.LC_ALL, '') # Use '' for auto, or force e.g. to 'en_US.UTF-8'
################################################################################
# Azure Storage information
################################################################################
# We store several things in Azure Blob Storage:
# 1. SuperPMI collections
# 2. A copy of PMI.dll, as a fallback in case we need it but can't find it locally,
# so we don't need to download dotnet/jitutils and build it ourselves.
# (Note: if PMI is ever published as a package, we could just download that instead.)
# 3. A copy of coredistools. If, when doing asm diffs, a copy of the coredistools
# library is not found in the Core_Root directory, we download a cached copy.
# Note: it would be better to download and use the official coredistools
# NuGet packages (like the setup-stress-dependencies scripts do).
az_account_name = "clrjit2"
az_superpmi_container_name = "superpmi"
az_collections_root_folder = "collections"
az_blob_storage_account_uri = "https://" + az_account_name + ".blob.core.windows.net/"
az_blob_storage_superpmi_container_uri = az_blob_storage_account_uri + az_superpmi_container_name
az_jitrollingbuild_container_name = "jitrollingbuild"
az_builds_root_folder = "builds"
az_blob_storage_jitrollingbuild_container_uri = az_blob_storage_account_uri + az_jitrollingbuild_container_name
################################################################################
# Argument Parser
################################################################################
description = """\
Script to run SuperPMI replay, ASM diffs, and collections.
The script also manages the Azure store of pre-created SuperPMI collection files.
Help for each individual command can be shown by asking for help on the individual command, for example
`superpmi.py collect --help`.
"""
collect_description = """\
Automate a SuperPMI collection.
"""
replay_description = """\
Run SuperPMI replay on one or more collections.
"""
asm_diff_description = """\
Run SuperPMI ASM diffs on one or more collections.
"""
upload_description = """\
Upload a collection to SuperPMI Azure storage.
"""
upload_private_description = """\
Upload a collection to a local file system path.
"""
download_description = """\
Download collections from SuperPMI Azure storage.
Normally, collections are automatically downloaded to a local cache
as part of doing a 'replay' operation. This command allows you to
download without doing a 'replay'.
"""
list_collections_description = """\
List the existing collections in the SuperPMI Azure storage.
"""
merge_mch_description = """\
Utility command to merge MCH files. This is a thin wrapper around
'mcs -merge -recursive -dedup -thin' followed by 'mcs -toc'.
"""
spmi_log_file_help = "Write SuperPMI tool output to a log file. Requires --sequential."
jit_ee_version_help = """\
JIT/EE interface version (the JITEEVersionIdentifier GUID from jiteeversionguid.h in the format
'a5eec3a4-4176-43a7-8c2b-a05b551d4f49'). Default: if the mcs tool is found, assume it
was built with the same JIT/EE version as the JIT we are using, and run "mcs -printJITEEVersion"
to get that version. Otherwise, use "unknown-jit-ee-version".
"""
host_os_help = "OS (windows, OSX, Linux). Default: current OS."
arch_help = "Architecture (x64, x86, arm, arm64). Default: current architecture."
target_os_help = "Target OS, for use with cross-compilation JIT (windows, OSX, Linux). Default: current OS."
target_arch_help = "Target architecture, for use with cross-compilation JIT (x64, x86, arm, arm64). Passed as asm diffs target to SuperPMI. Default: current architecture."
mch_arch_help = "Architecture of MCH files to download, used for cross-compilation altjit (x64, x86, arm, arm64). Default: target architecture."
build_type_help = "Build type (Debug, Checked, Release). Default: Checked."
core_root_help = "Core_Root location. Optional; it will be deduced if possible from runtime repo root."
log_level_help = """\
Console log level (output verbosity level).
One of: critical, error, warning, info, debug.
Output from this level and higher is output to the console.
All output is always written to the log file.
Default: warning.
"""
log_file_help = "Output log file path. If not specified, a default location is chosen."
product_location_help = "Built Product directory location. Optional; it will be deduced if possible from runtime repo root."
spmi_location_help = """\
Directory in which to put SuperPMI files, such as downloaded MCH files, asm diffs, and repro .MC files.
Optional. Default is 'spmi' within the repo 'artifacts' directory.
If 'SUPERPMI_CACHE_DIRECTORY' environment variable is set to a path, it will use that directory.
"""
superpmi_collect_help = """\
Command to run SuperPMI collect over. Note that there cannot be any dotnet CLI commands
invoked inside this command, as they will fail due to the shim JIT being set.
"""
replay_mch_files_help = """\
MCH files, or directories containing MCH files, to use for replay. For each directory passed,
all recursively found MCH files in that directory root will be used. Files may either be a path
on disk or a URI to a MCH file to download. Use these MCH files instead of a collection from
the Azure Storage MCH file store. UNC paths will be downloaded and cached locally.
"""
private_store_help = """\
Specify the path to one or more private SuperPMI data stores. Default: use the semicolon separated
value of the SUPERPMI_PRIVATE_STORE environment variable, if it exists.
"""
filter_help = """\
Specify one or more filters to restrict the set of MCH files to download or use from the local cache.
A filter is a simple case-insensitive substring search against the MCH file path. If multiple filter
strings are specified, any maching path is accepted (it is "or", not "and").
"""
upload_mch_files_help = """\
MCH files, or directories containing MCH files, to upload. For each directory passed,
all recursively found MCH files in that directory root will be uploaded. MCT files are also uploaded.
"""
skip_cleanup_help = "Skip intermediate file removal."
break_on_assert_help = "Enable break on assert during SuperPMI replay."
break_on_error_help = "Enable break on error during SuperPMI replay."
force_download_help = """\
If downloading an MCH file, always download it. Don't use an existing file in the download location.
Normally, we don't download if the target directory exists. This forces download even if the
target directory already exists.
"""
download_no_progress_help = """\
If specified, then download progress will not be shown.
"""
merge_mch_pattern_help = """\
A pattern to describing files to merge, passed through directly to `mcs -merge`.
Acceptable patterns include `*.mch`, `file*.mch`, and `c:\\my\\directory\\*.mch`.
Only the final component can contain a `*` wildcard; the directory path cannot.
"""
error_limit_help = """
Specify the failure `limit` after which replay and asmdiffs will exit if it sees
more than `limit` failures.
"""
compile_help = """\
Compile only specified method contexts, e.g., `-compile 20,25`. This is passed directly to the superpmi.exe `-compile` argument. See `superpmi.exe -?` for full documentation about allowed formats.
"""
# Start of parser object creation.
parser = argparse.ArgumentParser(description=description)
subparsers = parser.add_subparsers(dest='mode', help="Command to invoke")
subparsers.required = True
# Create a parser for core_root. It can be specified directly,
# or computed from the script location and host OS, architecture, and build type:
#
# script location implies repo root,
# implies artifacts location,
# implies test location from host OS, architecture, build type,
# implies Core_Root path
#
# You normally use the default host OS, but for Azure Storage upload and other
# operations, it can be useful to allow it to be specified.
core_root_parser = argparse.ArgumentParser(add_help=False)
core_root_parser.add_argument("-arch", help=arch_help)
core_root_parser.add_argument("-build_type", default="Checked", help=build_type_help)
core_root_parser.add_argument("-host_os", help=host_os_help)
core_root_parser.add_argument("-core_root", help=core_root_help)
core_root_parser.add_argument("-log_level", help=log_level_help)
core_root_parser.add_argument("-log_file", help=log_file_help)
core_root_parser.add_argument("-spmi_location", help=spmi_location_help)
core_root_parser.add_argument("--no_progress", action="store_true", help=download_no_progress_help)
# Create a set of arguments common to target specification. Used for collect, replay, asmdiffs, upload, upload-private, download, list-collections.
target_parser = argparse.ArgumentParser(add_help=False)
target_parser.add_argument("-target_arch", help=target_arch_help)
target_parser.add_argument("-target_os", help=target_os_help)
target_parser.add_argument("-mch_arch", help=mch_arch_help)
# Create a set of arguments common to all commands that run SuperPMI.
superpmi_common_parser = argparse.ArgumentParser(add_help=False)
superpmi_common_parser.add_argument("--break_on_assert", action="store_true", help=break_on_assert_help)
superpmi_common_parser.add_argument("--break_on_error", action="store_true", help=break_on_error_help)
superpmi_common_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
superpmi_common_parser.add_argument("--sequential", action="store_true", help="Run SuperPMI in sequential mode. Default is to run in parallel for faster runs.")
superpmi_common_parser.add_argument("-spmi_log_file", help=spmi_log_file_help)
superpmi_common_parser.add_argument("-jit_name", help="Specify the filename of the jit to use, e.g., 'clrjit_universal_arm64_x64.dll'. Default is clrjit.dll/libclrjit.so")
superpmi_common_parser.add_argument("--altjit", action="store_true", help="Set the altjit variables on replay.")
superpmi_common_parser.add_argument("-error_limit", help=error_limit_help)
# subparser for collect
collect_parser = subparsers.add_parser("collect", description=collect_description, parents=[core_root_parser, target_parser, superpmi_common_parser])
# Add required arguments
collect_parser.add_argument("collection_command", nargs='?', help=superpmi_collect_help)
collect_parser.add_argument("collection_args", nargs='?', help="Arguments to pass to the SuperPMI collect command. This is a single string; quote it if necessary if the arguments contain spaces.")
collect_parser.add_argument("--pmi", action="store_true", help="Run PMI on a set of directories or assemblies.")
collect_parser.add_argument("--crossgen2", action="store_true", help="Run crossgen2 on a set of directories or assemblies.")
collect_parser.add_argument("-assemblies", dest="assemblies", nargs="+", default=[], help="A list of managed dlls or directories to recursively use while collecting with PMI or crossgen2. Required if --pmi or --crossgen2 is specified.")
collect_parser.add_argument("-exclude", dest="exclude", nargs="+", default=[], help="A list of files or directories to exclude from the files and directories specified by `-assemblies`.")
collect_parser.add_argument("-pmi_location", help="Path to pmi.dll to use during PMI run. Optional; pmi.dll will be downloaded from Azure Storage if necessary.")
collect_parser.add_argument("-pmi_path", metavar="PMIPATH_DIR", nargs='*', help="Specify a \"load path\" where assemblies can be found during pmi.dll run. Optional; the argument values are translated to PMIPATH environment variable.")
collect_parser.add_argument("-output_mch_path", help="Location to place the final MCH file.")
collect_parser.add_argument("--merge_mch_files", action="store_true", help="Merge multiple MCH files. Use the -mch_files flag to pass a list of MCH files to merge.")
collect_parser.add_argument("-mch_files", metavar="MCH_FILE", nargs='+', help="Pass a sequence of MCH files which will be merged. Required by --merge_mch_files.")
collect_parser.add_argument("--use_zapdisable", action="store_true", help="Sets COMPlus_ZapDisable=1 and COMPlus_ReadyToRun=0 when doing collection to cause NGEN/ReadyToRun images to not be used, and thus causes JIT compilation and SuperPMI collection of these methods.")
collect_parser.add_argument("--tiered_compilation", action="store_true", help="Sets COMPlus_TieredCompilation=1 when doing collections.")
# Allow for continuing a collection in progress
collect_parser.add_argument("-temp_dir", help="Specify an existing temporary directory to use. Useful if continuing an ongoing collection process, or forcing a temporary directory to a particular hard drive. Optional; default is to create a temporary directory in the usual TEMP location.")
collect_parser.add_argument("--skip_collection_step", action="store_true", help="Do not run the collection step.")
collect_parser.add_argument("--skip_merge_step", action="store_true", help="Do not run the merge step.")
collect_parser.add_argument("--skip_clean_and_verify_step", action="store_true", help="Do not run the collection cleaning, TOC creation, and verifying step.")
collect_parser.add_argument("--skip_collect_mc_files", action="store_true", help="Do not collect .MC files")
# Create a set of arguments common to all SuperPMI replay commands, namely basic replay and ASM diffs.
# Note that SuperPMI collection also runs a replay to verify the final MCH file, so many arguments
# common to replay are also applicable to that replay as well.
replay_common_parser = argparse.ArgumentParser(add_help=False)
replay_common_parser.add_argument("-mch_files", metavar="MCH_FILE", nargs='+', help=replay_mch_files_help)
replay_common_parser.add_argument("-filter", nargs='+', help=filter_help)
replay_common_parser.add_argument("-product_location", help=product_location_help)
replay_common_parser.add_argument("--force_download", action="store_true", help=force_download_help)
replay_common_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
replay_common_parser.add_argument("-private_store", action="append", help=private_store_help)
replay_common_parser.add_argument("-compile", "-c", help=compile_help)
# subparser for replay
replay_parser = subparsers.add_parser("replay", description=replay_description, parents=[core_root_parser, target_parser, superpmi_common_parser, replay_common_parser])
replay_parser.add_argument("-jit_path", help="Path to clrjit. Defaults to Core_Root JIT.")
replay_parser.add_argument("-jitoption", action="append", help="Pass option through to the jit. Format is key=value, where key is the option name without leading COMPlus_")
# subparser for asmdiffs
asm_diff_parser = subparsers.add_parser("asmdiffs", description=asm_diff_description, parents=[core_root_parser, target_parser, superpmi_common_parser, replay_common_parser])
asm_diff_parser.add_argument("-base_jit_path", help="Path to baseline clrjit. Defaults to baseline JIT from rolling build, by computing baseline git hash.")
asm_diff_parser.add_argument("-diff_jit_path", help="Path to diff clrjit. Defaults to Core_Root JIT.")
asm_diff_parser.add_argument("-git_hash", help="Use this git hash as the current hash for use to find a baseline JIT. Defaults to current git hash of source tree.")
asm_diff_parser.add_argument("-base_git_hash", help="Use this git hash as the baseline JIT hash. Default: search for the baseline hash.")
asm_diff_parser.add_argument("--diff_jit_dump", action="store_true", help="Generate JitDump output for diffs. Default: only generate asm, not JitDump.")
asm_diff_parser.add_argument("--gcinfo", action="store_true", help="Include GC info in disassembly (sets COMPlus_JitGCDump/COMPlus_NgenGCDump; requires instructions to be prefixed by offsets).")
asm_diff_parser.add_argument("--debuginfo", action="store_true", help="Include debug info after disassembly (sets COMPlus_JitDebugDump/COMPlus_NgenDebugDump).")
asm_diff_parser.add_argument("-base_jit_option", action="append", help="Option to pass to the baseline JIT. Format is key=value, where key is the option name without leading COMPlus_...")
asm_diff_parser.add_argument("-diff_jit_option", action="append", help="Option to pass to the diff JIT. Format is key=value, where key is the option name without leading COMPlus_...")
asm_diff_parser.add_argument("-tag", help="Specify a word to add to the directory name where the asm diffs will be placed")
asm_diff_parser.add_argument("-metrics", action="append", help="Metrics option to pass to jit-analyze. Can be specified multiple times, or pass comma-separated values.")
asm_diff_parser.add_argument("-retainOnlyTopFiles", action="store_true", help="Retain only top .dasm files with largest improvements or regressions and delete remaining files.")
asm_diff_parser.add_argument("--diff_with_release", action="store_true", help="Specify if this is asmdiff using release binaries.")
# subparser for upload
upload_parser = subparsers.add_parser("upload", description=upload_description, parents=[core_root_parser, target_parser])
upload_parser.add_argument("-mch_files", metavar="MCH_FILE", required=True, nargs='+', help=upload_mch_files_help)
upload_parser.add_argument("-az_storage_key", help="Key for the clrjit Azure Storage location. Default: use the value of the CLRJIT_AZ_KEY environment variable.")
upload_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
upload_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
# subparser for upload-private
upload_private_parser = subparsers.add_parser("upload-private", description=upload_private_description, parents=[core_root_parser, target_parser])
upload_private_parser.add_argument("-mch_files", metavar="MCH_FILE", required=True, nargs='+', help=upload_mch_files_help)
upload_private_parser.add_argument("-private_store", required=True, help="Target directory root of the private store in which to place the files.")
upload_private_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
upload_private_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
# subparser for download
download_parser = subparsers.add_parser("download", description=download_description, parents=[core_root_parser, target_parser])
download_parser.add_argument("-filter", nargs='+', help=filter_help)
download_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
download_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
download_parser.add_argument("--force_download", action="store_true", help=force_download_help)
download_parser.add_argument("-mch_files", metavar="MCH_FILE", nargs='+', help=replay_mch_files_help)
download_parser.add_argument("-private_store", action="append", help=private_store_help)
# subparser for list-collections
list_collections_parser = subparsers.add_parser("list-collections", description=list_collections_description, parents=[core_root_parser, target_parser])
list_collections_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
list_collections_parser.add_argument("--all", action="store_true", help="Show all MCH files, not just those for the specified (or default) JIT-EE version, OS, and architecture")
list_collections_parser.add_argument("--local", action="store_true", help="Show the local MCH download cache")
# subparser for merge-mch
merge_mch_parser = subparsers.add_parser("merge-mch", description=merge_mch_description, parents=[core_root_parser])
merge_mch_parser.add_argument("-output_mch_path", required=True, help="Location to place the final MCH file.")
merge_mch_parser.add_argument("-pattern", required=True, help=merge_mch_pattern_help)
################################################################################
# Helper functions
################################################################################
def run_and_log(command, log_level=logging.DEBUG):
""" Return a command and log its output to the debug logger
Args:
command (list) : Command to run
log_level (int) : log level to use for logging output (but not the "Invoking" text)
Returns:
Process return code
"""
logging.log(log_level, "Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout_output, _ = proc.communicate()
for line in stdout_output.decode('utf-8', errors='replace').splitlines(): # There won't be any stderr output since it was piped to stdout
logging.log(log_level, line)
return proc.returncode
def write_file_to_log(filepath, log_level=logging.DEBUG):
""" Read the text of a file and write it to the logger. If the file doesn't exist, don't output anything.
Args:
filepath (string) : file to log
log_level (int) : log level to use for logging output
Returns:
Nothing
"""
if not os.path.exists(filepath):
return
logging.log(log_level, "============== Contents of %s", filepath)
with open(filepath) as file_handle:
lines = file_handle.readlines()
lines = [item.strip() for item in lines]
for line in lines:
logging.log(log_level, line)
logging.log(log_level, "============== End contents of %s", filepath)
# Functions to verify the OS and architecture. They take an instance of CoreclrArguments,
# which is used to find the list of legal OS and architectures
def check_host_os(coreclr_args, host_os):
return (host_os is not None) and (host_os in coreclr_args.valid_host_os)
def check_target_os(coreclr_args, target_os):
return (target_os is not None) and (target_os in coreclr_args.valid_host_os)
def check_arch(coreclr_args, arch):
return (arch is not None) and (arch in coreclr_args.valid_arches)
def check_target_arch(coreclr_args, target_arch):
return (target_arch is not None) and (target_arch in coreclr_args.valid_arches)
def check_mch_arch(coreclr_args, mch_arch):
return (mch_arch is not None) and (mch_arch in coreclr_args.valid_arches)
def create_artifacts_base_name(coreclr_args, mch_file):
""" Create an appropriate "base" name for use creating a directory name related to MCH file playback.
This will later be prepended by "asm." or "jitdump.", for example, and
create_unique_directory_name() should be called on the final name to ensure it is unique.
Use the MCH file base name as the main part of the directory name, removing
the trailing ".mch", if any.
If there is a tag specified (for asm diffs), prepend the tag.
Args:
coreclr_args : the parsed arguments
mch_file (str) : the MCH file name that is being replayed.
Returns:
A directory name to be used.
"""
artifacts_base_name = os.path.basename(mch_file)
if artifacts_base_name.lower().endswith(".mch"):
artifacts_base_name = artifacts_base_name[:-4]
if hasattr(coreclr_args, "tag") and coreclr_args.tag is not None:
artifacts_base_name = "{}.{}".format(coreclr_args.tag, artifacts_base_name)
return artifacts_base_name
def read_csv_metrics(path):
""" Read a metrics summary file produced by superpmi, and return the single row containing the information as a dictionary.
Args:
path (str) : path to .csv file
Returns:
A dictionary with each metric
"""
with open(path) as csv_file:
reader = csv.DictReader(csv_file)
for row in reader:
return row
return None
################################################################################
# Helper classes
################################################################################
class AsyncSubprocessHelper:
""" Class to help with async multiprocessing tasks.
"""
def __init__(self, items, subproc_count=multiprocessing.cpu_count(), verbose=False):
self.items = items
self.subproc_count = subproc_count
self.verbose = verbose
self.subproc_count_queue = None
if 'win32' in sys.platform:
# Windows specific event-loop policy & cmd
asyncio.set_event_loop(asyncio.ProactorEventLoop())
async def __get_item__(self, item, index, size, async_callback, *extra_args):
""" Wrapper to the async callback which will schedule based on the queue
"""
# Wait for the subproc_id queue to become free, meaning we have an available
# processor to run a task (specifically, we are below our maximum allowed
# parallelism). Then start running the sub process.
subproc_id = await self.subproc_count_queue.get()
print_prefix = ""
if self.verbose:
print_prefix = "[{}:{}]: ".format(index, size)
await async_callback(print_prefix, item, *extra_args)
# Add back to the queue, in case another process wants to run.
self.subproc_count_queue.put_nowait(subproc_id)
async def __run_to_completion__(self, async_callback, *extra_args):
""" async wrapper for run_to_completion
"""
# Create a queue with one entry for each of the threads we're
# going to allow. By default, this will be one entry per CPU.
# Using subproc_count_queue.get() will block when we're running
# a task on every CPU.
chunk_size = self.subproc_count
self.subproc_count_queue = asyncio.Queue(chunk_size)
for item in range(chunk_size):
self.subproc_count_queue.put_nowait(item)
# Create a 'tasks' list of async function calls, one for each item.
# When all these calls complete, we're done.
size = len(self.items)
count = 1
tasks = []
for item in self.items:
tasks.append(self.__get_item__(item, count, size, async_callback, *extra_args))
count += 1
# Inovke all the calls to __get_item__ concurrently and wait for them all to finish.
await asyncio.gather(*tasks)
def run_to_completion(self, async_callback, *extra_args):
""" Run until the item queue has been depleted
Notes:
Acts as a wrapper to abstract the async calls to
async_callback. Note that this will allow cpu_count
amount of running subprocesses. Each time the queue
is emptied, another process will start. Note that
the python code is single threaded, it will just
rely on async/await to start subprocesses at
subprocess_count
"""
reset_env = os.environ.copy()
loop = asyncio.get_event_loop()
loop.run_until_complete(self.__run_to_completion__(async_callback, *extra_args))
os.environ.clear()
os.environ.update(reset_env)
################################################################################
# SuperPMI Collect
################################################################################
class SuperPMICollect:
""" SuperPMI Collect class
Notes:
The object is responsible for setting up a SuperPMI collection given
the arguments passed into the script.
"""
def __init__(self, coreclr_args):
""" Constructor
Args:
coreclr_args (CoreclrArguments) : parsed args
"""
if coreclr_args.host_os == "OSX":
self.collection_shim_name = "libsuperpmi-shim-collector.dylib"
self.corerun_tool_name = "corerun"
elif coreclr_args.host_os == "Linux":
self.collection_shim_name = "libsuperpmi-shim-collector.so"
self.corerun_tool_name = "corerun"
elif coreclr_args.host_os == "windows":
self.collection_shim_name = "superpmi-shim-collector.dll"
self.corerun_tool_name = "corerun.exe"
else:
raise RuntimeError("Unsupported OS.")
self.jit_path = os.path.join(coreclr_args.core_root, determine_jit_name(coreclr_args))
self.superpmi_path = determine_superpmi_tool_path(coreclr_args)
self.mcs_path = determine_mcs_tool_path(coreclr_args)
self.core_root = coreclr_args.core_root
self.collection_command = coreclr_args.collection_command
self.collection_args = coreclr_args.collection_args
if coreclr_args.pmi:
self.pmi_location = determine_pmi_location(coreclr_args)
self.corerun = os.path.join(self.core_root, self.corerun_tool_name)
if coreclr_args.crossgen2:
self.corerun = os.path.join(self.core_root, self.corerun_tool_name)
if coreclr_args.dotnet_tool_path is None:
self.crossgen2_driver_tool = self.corerun
else:
self.crossgen2_driver_tool = coreclr_args.dotnet_tool_path
logging.debug("Using crossgen2 driver tool %s", self.crossgen2_driver_tool)
if coreclr_args.pmi or coreclr_args.crossgen2:
self.assemblies = coreclr_args.assemblies
self.exclude = coreclr_args.exclude
self.coreclr_args = coreclr_args
# Pathname for a temporary .MCL file used for noticing SuperPMI replay failures against base MCH.
self.base_fail_mcl_file = None
# The base .MCH file path
self.base_mch_file = None
# Final .MCH file path
self.final_mch_file = None
# The .TOC file path for the clean thin unique .MCH file
self.toc_file = None
self.temp_location = None
############################################################################
# Instance Methods
############################################################################
def collect(self):
""" Do the SuperPMI Collection.
"""
# Do a basic SuperPMI collect and validation:
# 1. Collect MC files by running a set of sample apps.
# 2. Create a merged thin unique MCH by using "mcs -merge -recursive -dedup -thin base.mch *.mc".
# 3. Create a clean MCH by running SuperPMI over the MCH, and using "mcs -strip" to filter
# out any failures (if any).
# 4. Create a TOC using "mcs -toc".
# 5. Verify the resulting MCH file is error-free when running SuperPMI against it with the
# same JIT used for collection.
#
# MCH files are big. If we don't need them anymore, clean them up right away to avoid
# running out of disk space in disk constrained situations.
passed = False
try:
with TempDir(self.coreclr_args.temp_dir, self.coreclr_args.skip_cleanup) as temp_location:
# Setup all of the temp locations
self.base_fail_mcl_file = os.path.join(temp_location, "basefail.mcl")
self.base_mch_file = os.path.join(temp_location, "base.mch")
self.temp_location = temp_location
if self.coreclr_args.output_mch_path is not None:
self.final_mch_file = os.path.abspath(self.coreclr_args.output_mch_path)
final_mch_dir = os.path.dirname(self.final_mch_file)
if not os.path.isdir(final_mch_dir):
os.makedirs(final_mch_dir)
else:
default_coreclr_bin_mch_location = os.path.join(self.coreclr_args.spmi_location, "mch", "{}.{}.{}".format(self.coreclr_args.host_os, self.coreclr_args.arch, self.coreclr_args.build_type))
if not os.path.isdir(default_coreclr_bin_mch_location):
os.makedirs(default_coreclr_bin_mch_location)
self.final_mch_file = os.path.abspath(os.path.join(default_coreclr_bin_mch_location, "{}.{}.{}.mch".format(self.coreclr_args.host_os, self.coreclr_args.arch, self.coreclr_args.build_type)))
self.toc_file = "{}.mct".format(self.final_mch_file)
# If we have passed temp_dir, then we have a few flags we need
# to check to see where we are in the collection process. Note that this
# functionality exists to help not lose progress during a SuperPMI collection.
# It is not unreasonable for the SuperPMI collection to take many hours
# therefore allow re-use of a collection in progress
if not self.coreclr_args.skip_collection_step:
self.__collect_mc_files__()
if not self.coreclr_args.skip_merge_step:
if not self.coreclr_args.merge_mch_files:
self.__merge_mc_files__()
else:
self.__merge_mch_files__()
if not self.coreclr_args.skip_clean_and_verify_step:
self.__create_clean_mch_file__()
self.__create_toc__()
self.__verify_final_mch__()
passed = True
except Exception as exception:
logging.critical(exception)
return passed
############################################################################
# Helper Methods
############################################################################
def __collect_mc_files__(self):
""" Do the actual SuperPMI collection for a command
Returns:
None
"""
if not self.coreclr_args.skip_collect_mc_files:
assert os.path.isdir(self.temp_location)
# Set environment variables. For crossgen2, we need to pass the COMPlus variables as arguments to the JIT using
# the `-codegenopt` argument.
env_copy = os.environ.copy()
root_env = {}
root_env["SuperPMIShimLogPath"] = self.temp_location
root_env["SuperPMIShimPath"] = self.jit_path
complus_env = {}
complus_env["EnableExtraSuperPmiQueries"] = "1"
if not self.coreclr_args.tiered_compilation:
complus_env["TieredCompilation"] = "0"
if self.coreclr_args.use_zapdisable:
complus_env["ZapDisable"] = "1"
complus_env["ReadyToRun"] = "0"
logging.debug("Starting collection.")
logging.debug("")
def set_and_report_env(env, root_env, complus_env = None):
for var, value in root_env.items():
env[var] = value
print_platform_specific_environment_vars(logging.DEBUG, self.coreclr_args, var, value)
if complus_env is not None:
for var, value in complus_env.items():
complus_var = "COMPlus_" + var
env[complus_var] = value
print_platform_specific_environment_vars(logging.DEBUG, self.coreclr_args, complus_var, value)
# If we need them, collect all the assemblies we're going to use for the collection(s).
# Remove the files matching the `-exclude` arguments (case-insensitive) from the list.
if self.coreclr_args.pmi or self.coreclr_args.crossgen2:
assemblies = []
for item in self.assemblies:
assemblies += get_files_from_path(item, match_func=lambda file: any(file.endswith(extension) for extension in [".dll", ".exe"]) and (self.exclude is None or not any(e.lower() in file.lower() for e in self.exclude)))
if len(assemblies) == 0:
logging.error("No assemblies found using `-assemblies` and `-exclude` arguments!")
else:
logging.debug("Using assemblies:")
for item in assemblies:
logging.debug(" %s", item)
logging.debug("") # add trailing empty line
################################################################################################ Do collection using given collection command (e.g., script)
if self.collection_command is not None:
logging.debug("Starting collection using command")
collection_command_env = env_copy.copy()
collection_complus_env = complus_env.copy()
collection_complus_env["JitName"] = self.collection_shim_name
set_and_report_env(collection_command_env, root_env, collection_complus_env)
logging.info("Collecting using command:")
logging.info(" %s %s", self.collection_command, " ".join(self.collection_args))
assert isinstance(self.collection_command, str)
assert isinstance(self.collection_args, list)
command = [self.collection_command, ] + self.collection_args
proc = subprocess.Popen(command, env=collection_command_env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout_output, _ = proc.communicate()
for line in stdout_output.decode('utf-8', errors='replace').splitlines(): # There won't be any stderr output since it was piped to stdout
logging.debug(line)
################################################################################################ end of "self.collection_command is not None"
################################################################################################ Do collection using PMI
if self.coreclr_args.pmi is True:
logging.debug("Starting collection using PMI")
async def run_pmi(print_prefix, assembly, self):
""" Run pmi over all dlls
"""
command = [self.corerun, self.pmi_location, "DRIVEALL", assembly]
command_string = " ".join(command)
logging.debug("%s%s", print_prefix, command_string)
# Save the stdout and stderr to files, so we can see if PMI wrote any interesting messages.
# Use the name of the assembly as the basename of the file. mkstemp() will ensure the file
# is unique.
root_output_filename = make_safe_filename("pmi_" + assembly + "_")
try:
stdout_file_handle, stdout_filepath = tempfile.mkstemp(suffix=".stdout", prefix=root_output_filename, dir=self.temp_location)
stderr_file_handle, stderr_filepath = tempfile.mkstemp(suffix=".stderr", prefix=root_output_filename, dir=self.temp_location)
proc = await asyncio.create_subprocess_shell(
command_string,
stdout=stdout_file_handle,
stderr=stderr_file_handle)
await proc.communicate()
os.close(stdout_file_handle)
os.close(stderr_file_handle)
# No need to keep zero-length files
if is_zero_length_file(stdout_filepath):
os.remove(stdout_filepath)
if is_zero_length_file(stderr_filepath):
os.remove(stderr_filepath)
return_code = proc.returncode
if return_code != 0:
logging.debug("'%s': Error return code: %s", command_string, return_code)
write_file_to_log(stdout_filepath, log_level=logging.DEBUG)
write_file_to_log(stderr_filepath, log_level=logging.DEBUG)
except OSError as ose:
if "[WinError 32] The process cannot access the file because it is being used by another " \
"process:" in format(ose):
logging.warning("Skipping file %s. Got error: %s", root_output_filename, ose)
else:
raise ose
# Set environment variables.
pmi_command_env = env_copy.copy()
pmi_complus_env = complus_env.copy()
pmi_complus_env["JitName"] = self.collection_shim_name
if self.coreclr_args.pmi_path is not None:
pmi_root_env = root_env.copy()
pmi_root_env["PMIPATH"] = ";".join(self.coreclr_args.pmi_path)
else:
pmi_root_env = root_env
set_and_report_env(pmi_command_env, pmi_root_env, pmi_complus_env)
old_env = os.environ.copy()
os.environ.update(pmi_command_env)
helper = AsyncSubprocessHelper(assemblies, verbose=True)
helper.run_to_completion(run_pmi, self)
os.environ.clear()
os.environ.update(old_env)
################################################################################################ end of "self.coreclr_args.pmi is True"
################################################################################################ Do collection using crossgen2
if self.coreclr_args.crossgen2 is True:
logging.debug("Starting collection using crossgen2")
async def run_crossgen2(print_prefix, assembly, self):
""" Run crossgen2 over all dlls
"""
root_crossgen2_output_filename = make_safe_filename("crossgen2_" + assembly) + ".out.dll"
crossgen2_output_assembly_filename = os.path.join(self.temp_location, root_crossgen2_output_filename)
try:
if os.path.exists(crossgen2_output_assembly_filename):
os.remove(crossgen2_output_assembly_filename)
except OSError as ose:
if "[WinError 32] The process cannot access the file because it is being used by another " \
"process:" in format(ose):
logging.warning("Skipping file %s. Got error: %s", crossgen2_output_assembly_filename, ose)
return
else:
raise ose
root_output_filename = make_safe_filename("crossgen2_" + assembly + "_")
# Create a temporary response file to put all the arguments to crossgen2 (otherwise the path length limit could be exceeded):
#
# <dll to compile>
# -o:<output dll>
# -r:<Core_Root>\System.*.dll
# -r:<Core_Root>\Microsoft.*.dll
# -r:<Core_Root>\mscorlib.dll
# -r:<Core_Root>\netstandard.dll
# --jitpath:<self.collection_shim_name>
# --codegenopt:<option>=<value> /// for each member of complus_env
#
# invoke with:
#
# dotnet <Core_Root>\crossgen2\crossgen2.dll @<temp.rsp>
#
# where "dotnet" is one of:
# 1. <runtime_root>\dotnet.cmd/sh
# 2. "dotnet" on PATH
# 3. corerun in Core_Root
rsp_file_handle, rsp_filepath = tempfile.mkstemp(suffix=".rsp", prefix=root_output_filename, dir=self.temp_location)
with open(rsp_file_handle, "w") as rsp_write_handle:
rsp_write_handle.write(assembly + "\n")
rsp_write_handle.write("-o:" + crossgen2_output_assembly_filename + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "System.*.dll") + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "Microsoft.*.dll") + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "mscorlib.dll") + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "netstandard.dll") + "\n")
rsp_write_handle.write("--parallelism:1" + "\n")
rsp_write_handle.write("--jitpath:" + os.path.join(self.core_root, self.collection_shim_name) + "\n")
for var, value in complus_env.items():
rsp_write_handle.write("--codegenopt:" + var + "=" + value + "\n")
# Log what is in the response file
write_file_to_log(rsp_filepath)
command = [self.crossgen2_driver_tool, self.coreclr_args.crossgen2_tool_path, "@" + rsp_filepath]
command_string = " ".join(command)
logging.debug("%s%s", print_prefix, command_string)
# Save the stdout and stderr to files, so we can see if crossgen2 wrote any interesting messages.
# Use the name of the assembly as the basename of the file. mkstemp() will ensure the file
# is unique.
try:
stdout_file_handle, stdout_filepath = tempfile.mkstemp(suffix=".stdout", prefix=root_output_filename, dir=self.temp_location)
stderr_file_handle, stderr_filepath = tempfile.mkstemp(suffix=".stderr", prefix=root_output_filename, dir=self.temp_location)
proc = await asyncio.create_subprocess_shell(
command_string,
stdout=stdout_file_handle,
stderr=stderr_file_handle)
await proc.communicate()
os.close(stdout_file_handle)
os.close(stderr_file_handle)
# No need to keep zero-length files
if is_zero_length_file(stdout_filepath):
os.remove(stdout_filepath)
if is_zero_length_file(stderr_filepath):
os.remove(stderr_filepath)
return_code = proc.returncode
if return_code != 0:
logging.debug("'%s': Error return code: %s", command_string, return_code)
write_file_to_log(stdout_filepath, log_level=logging.DEBUG)
write_file_to_log(stderr_filepath, log_level=logging.DEBUG)
except OSError as ose:
if "[WinError 32] The process cannot access the file because it is being used by another " \
"process:" in format(ose):
logging.warning("Skipping file %s. Got error: %s", root_output_filename, ose)
else:
raise ose
# Delete the response file unless we are skipping cleanup
if not self.coreclr_args.skip_cleanup:
os.remove(rsp_filepath)
# Set environment variables.
crossgen2_command_env = env_copy.copy()
set_and_report_env(crossgen2_command_env, root_env)
old_env = os.environ.copy()
os.environ.update(crossgen2_command_env)
# Note: crossgen2 compiles in parallel by default. However, it seems to lead to sharing violations
# in SuperPMI collection, accessing the MC file. So, disable crossgen2 parallism by using
# the "--parallelism:1" switch, and allowing coarse-grained (per-assembly) parallelism here.
# It turns out this works better anyway, as there is a lot of non-parallel time between
# crossgen2 parallel compilations.
helper = AsyncSubprocessHelper(assemblies, verbose=True)
helper.run_to_completion(run_crossgen2, self)
os.environ.clear()
os.environ.update(old_env)
################################################################################################ end of "self.coreclr_args.crossgen2 is True"
mc_files = [os.path.join(self.temp_location, item) for item in os.listdir(self.temp_location) if item.endswith(".mc")]
if len(mc_files) == 0:
raise RuntimeError("No .mc files generated.")
def __merge_mc_files__(self):
""" Merge the mc files that were generated
Notes:
mcs -merge <s_baseMchFile> <s_tempDir>\\*.mc -recursive -dedup -thin
"""
logging.info("Merging MC files")
pattern = os.path.join(self.temp_location, "*.mc")
command = [self.mcs_path, "-merge", self.base_mch_file, pattern, "-recursive", "-dedup", "-thin"]
run_and_log(command)
if not os.path.isfile(self.base_mch_file):
raise RuntimeError("MCH file failed to be generated at: %s" % self.base_mch_file)
# All the individual MC files are no longer necessary, now that we have
# merged them into the base.mch. Delete them.
if not self.coreclr_args.skip_cleanup:
mc_files = [os.path.join(self.temp_location, item) for item in os.listdir(self.temp_location) if item.endswith(".mc")]
for item in mc_files:
os.remove(item)
def __merge_mch_files__(self):
""" Merge MCH files in the mch_files list. This is only used with the `--merge_mch_files` argument.
Notes:
mcs -concat <s_baseMchFile> [self.coreclr_args.mch_files]
"""
logging.info("Merging MCH files")
for item in self.coreclr_args.mch_files:
command = [self.mcs_path, "-concat", self.base_mch_file, item]
run_and_log(command)
if not os.path.isfile(self.base_mch_file):
raise RuntimeError("MCH file failed to be generated at: %s" % self.base_mch_file)
def __create_clean_mch_file__(self):
""" Create a clean mch file
Notes:
<SuperPMIPath> -p -f <s_baseFailMclFile> <s_baseMchFile> <jitPath>
if <s_baseFailMclFile> is non-empty:
<mcl> -strip <s_baseFailMclFile> <s_baseMchFile> <s_finalMchFile>
else
# copy/move base file to final file
del <s_baseFailMclFile>
"""
logging.info("Cleaning MCH file")
command = [self.superpmi_path, "-p", "-f", self.base_fail_mcl_file, self.base_mch_file, self.jit_path]
run_and_log(command)
if is_nonzero_length_file(self.base_fail_mcl_file):
command = [self.mcs_path, "-strip", self.base_fail_mcl_file, self.base_mch_file, self.final_mch_file]
run_and_log(command)
else:
# Ideally we could just rename this file instead of copying it.
shutil.copy2(self.base_mch_file, self.final_mch_file)
if not os.path.isfile(self.final_mch_file):
raise RuntimeError("Final mch file failed to be generated.")
if not self.coreclr_args.skip_cleanup:
if os.path.isfile(self.base_fail_mcl_file):
os.remove(self.base_fail_mcl_file)
self.base_fail_mcl_file = None
if os.path.isfile(self.base_mch_file):
os.remove(self.base_mch_file)
self.base_mch_file = None
def __create_toc__(self):
""" Create a TOC file
Notes:
<mcl> -toc <s_finalMchFile>
"""
logging.info("Creating TOC file")
command = [self.mcs_path, "-toc", self.final_mch_file]
run_and_log(command)
if not os.path.isfile(self.toc_file):
raise RuntimeError("Error, toc file not created correctly at: %s" % self.toc_file)
def __verify_final_mch__(self):
""" Verify the resulting MCH file is error-free when running SuperPMI against it with the same JIT used for collection.
Notes:
<SuperPmiPath> -p -f <s_finalFailMclFile> <s_finalMchFile> <jitPath>
"""
logging.info("Verifying MCH file")
mch_files = [ self.final_mch_file ]
spmi_replay = SuperPMIReplay(self.coreclr_args, mch_files, self.jit_path)
passed = spmi_replay.replay()
if not passed:
raise RuntimeError("Error, unclean replay.")
################################################################################
# SuperPMI Replay helpers
################################################################################
def print_superpmi_result(return_code, coreclr_args, base_metrics, diff_metrics):
""" Print a description of a superpmi return (error) code. If the return code is
zero, meaning success, don't print anything.
Note that Python treats process return codes (at least on Windows) as
unsigned integers, so compare against both signed and unsigned numbers for
those return codes.
"""
if return_code == 0:
logging.info("Clean SuperPMI {} ({} contexts processed)".format("replay" if diff_metrics is None else "diff", base_metrics["Successful compiles"]))
elif return_code == -1 or return_code == 4294967295:
logging.error("General fatal error")
elif return_code == -2 or return_code == 4294967294:
logging.error("JIT failed to initialize")
elif return_code == 1:
logging.warning("Compilation failures")
elif return_code == 2:
logging.warning("Asm diffs found")
elif return_code == 3:
missing_base = int(base_metrics["Missing compiles"])
total_contexts = int(base_metrics["Successful compiles"]) + int(base_metrics["Failing compiles"])
if diff_metrics is None:
logging.warning("SuperPMI encountered missing data for {} out of {} contexts".format(missing_base, total_contexts))
else:
missing_diff = int(diff_metrics["Missing compiles"])
logging.warning("SuperPMI encountered missing data. Missing with base JIT: {}. Missing with diff JIT: {}. Total contexts: {}.".format(missing_base, missing_diff, total_contexts))
elif return_code == 139 and coreclr_args.host_os != "windows":
logging.error("Fatal error, SuperPMI has returned SIGSEGV (segmentation fault)")
else:
logging.error("Unknown error code %s", return_code)
def print_fail_mcl_file_method_numbers(fail_mcl_file):
""" Given a SuperPMI ".mcl" file (containing a list of failure indices), print out the method numbers.
"""
with open(fail_mcl_file) as file_handle:
mcl_lines = file_handle.readlines()
mcl_lines = [item.strip() for item in mcl_lines]
logging.debug("Method numbers with compilation failures:")
for line in mcl_lines:
logging.debug(line)
def save_repro_mc_files(temp_location, coreclr_args, artifacts_base_name, repro_base_command_line):
""" For commands that use the superpmi "-r" option to create "repro" .mc files, copy these to a
location where they are saved (and not in a "temp" directory) for easy use by the user.
"""
# If there are any .mc files, drop them into artifacts/repro/<host_os>.<arch>.<build_type>/*.mc
mc_files = [os.path.join(temp_location, item) for item in os.listdir(temp_location) if item.endswith(".mc")]
if len(mc_files) > 0:
repro_location = create_unique_directory_name(coreclr_args.spmi_location, "repro.{}".format(artifacts_base_name))
repro_files = []
for item in mc_files:
repro_files.append(os.path.join(repro_location, os.path.basename(item)))
logging.debug("Copying %s -> %s", item, repro_location)
shutil.copy2(item, repro_location)
logging.info("")
logging.info("Repro {} .mc file(s) created for failures:".format(len(repro_files)))
for item in repro_files:
logging.info(item)
logging.info("")
logging.info("To run a specific failure (replace JIT path and .mc filename as needed):")
logging.info("")
logging.info("%s %s%sxxxxx.mc", repro_base_command_line, repro_location, os.path.sep)
logging.info("")
################################################################################
# SuperPMI Replay
################################################################################
class SuperPMIReplay:
""" SuperPMI Replay class
Notes:
The object is responsible for replaying the MCH files given to the
instance of the class
"""
def __init__(self, coreclr_args, mch_files, jit_path):
""" Constructor
Args:
coreclr_args (CoreclrArguments) : parsed args
mch_files (list) : list of MCH files to replay
jit_path (str) : path to clrjit
"""
self.jit_path = jit_path
self.mch_files = mch_files
self.superpmi_path = determine_superpmi_tool_path(coreclr_args)
self.coreclr_args = coreclr_args
############################################################################
# Instance Methods
############################################################################
def replay(self):
""" Replay the given SuperPMI collection
Returns:
(bool) True on success; False otherwise
"""
result = True # Assume success
with TempDir() as temp_location:
logging.debug("")
logging.debug("Temp Location: %s", temp_location)
logging.debug("")
# `repro_flags` are the subset of flags we tell the user to pass to superpmi when reproducing
# a failure. This won't include things like "-p" for parallelism or "-r" to create a repro .mc file.
repro_flags = []
common_flags = [
"-v", "ewmi", # display errors, warnings, missing, jit info
"-r", os.path.join(temp_location, "repro") # Repro name, create .mc repro files
]
if self.coreclr_args.altjit:
repro_flags += [
"-jitoption", "force", "AltJit=*",
"-jitoption", "force", "AltJitNgen=*"
]
if self.coreclr_args.arch != self.coreclr_args.target_arch:
repro_flags += [ "-target", self.coreclr_args.target_arch ]
if not self.coreclr_args.sequential and not self.coreclr_args.compile:
common_flags += [ "-p" ]
if self.coreclr_args.break_on_assert:
common_flags += [ "-boa" ]
if self.coreclr_args.break_on_error:
common_flags += [ "-boe" ]
if self.coreclr_args.compile:
common_flags += [ "-c", self.coreclr_args.compile ]
if self.coreclr_args.spmi_log_file is not None:
common_flags += [ "-w", self.coreclr_args.spmi_log_file ]
if self.coreclr_args.error_limit is not None:
common_flags += ["-failureLimit", self.coreclr_args.error_limit]
if self.coreclr_args.jitoption:
for o in self.coreclr_args.jitoption:
repro_flags += "-jitoption", o
common_flags += repro_flags
# For each MCH file that we are going to replay, do the replay and replay post-processing.
#
# Consider: currently, we loop over all the steps for each MCH file, including (1) invoke
# SuperPMI, (2) process results. It might be better to do (1) for each MCH file, then
# process all the results at once. Currently, the results for some processing can be
# obscured by the normal run output for subsequent MCH files.
# Keep track of any MCH file replay failures
files_with_replay_failures = []
for mch_file in self.mch_files:
logging.info("Running SuperPMI replay of %s", mch_file)
flags = common_flags.copy()
fail_mcl_file = os.path.join(temp_location, os.path.basename(mch_file) + "_fail.mcl")
metrics_summary_file = os.path.join(temp_location, os.path.basename(mch_file) + "_metrics.csv")
flags += [
"-f", fail_mcl_file, # Failing mc List
"-metricsSummary", metrics_summary_file
]
command = [self.superpmi_path] + flags + [self.jit_path, mch_file]
return_code = run_and_log(command)
metrics = read_csv_metrics(metrics_summary_file)
print_superpmi_result(return_code, self.coreclr_args, metrics, None)
if return_code != 0:
# Don't report as replay failure missing data (return code 3).
# Anything else, such as compilation failure (return code 1, typically a JIT assert) will be
# reported as a replay failure.
if return_code != 3:
result = False
files_with_replay_failures.append(mch_file)
if is_nonzero_length_file(fail_mcl_file):
# Unclean replay. Examine the contents of the fail.mcl file to dig into failures.
if return_code == 0:
logging.warning("Warning: SuperPMI returned a zero exit code, but generated a non-zero-sized mcl file")
print_fail_mcl_file_method_numbers(fail_mcl_file)
repro_base_command_line = "{} {} {}".format(self.superpmi_path, " ".join(repro_flags), self.jit_path)
artifacts_base_name = create_artifacts_base_name(self.coreclr_args, mch_file)
save_repro_mc_files(temp_location, self.coreclr_args, artifacts_base_name, repro_base_command_line)
if not self.coreclr_args.skip_cleanup:
if os.path.isfile(fail_mcl_file):
os.remove(fail_mcl_file)
fail_mcl_file = None
################################################################################################ end of for mch_file in self.mch_files
logging.info("Replay summary:")
if len(files_with_replay_failures) == 0:
logging.info(" All replays clean")
else:
logging.info(" Replay failures in %s MCH files:", len(files_with_replay_failures))
for file in files_with_replay_failures:
logging.info(" %s", file)
return result
################################################################################
# SuperPMI Replay/AsmDiffs
################################################################################
class SuperPMIReplayAsmDiffs:
""" SuperPMI Replay AsmDiffs class
Notes:
The object is responsible for replaying the mch file given to the
instance of the class and doing diffs using the two passed jits.
"""
def __init__(self, coreclr_args, mch_files, base_jit_path, diff_jit_path):
""" Constructor
Args:
coreclr_args (CoreclrArguments) : parsed args
mch_files (list) : list of MCH files to replay
base_jit_path (str) : path to baseline clrjit
diff_jit_path (str) : path to diff clrjit
"""
self.base_jit_path = base_jit_path
self.diff_jit_path = diff_jit_path
self.mch_files = mch_files
self.superpmi_path = determine_superpmi_tool_path(coreclr_args)
self.coreclr_args = coreclr_args
self.diff_mcl_contents = None
############################################################################
# Instance Methods
############################################################################
def replay_with_asm_diffs(self):
""" Replay the given SuperPMI collection, generating asm diffs
Returns:
(bool) True on success; False otherwise
"""
result = True # Assume success
# Set up some settings we'll use below.
asm_complus_vars = {
"COMPlus_JitDisasm": "*",
"COMPlus_JitUnwindDump": "*",
"COMPlus_JitEHDump": "*",
"COMPlus_NgenDisasm": "*",
"COMPlus_NgenUnwindDump": "*",
"COMPlus_NgenEHDump": "*",
"COMPlus_JitDiffableDasm": "1",
"COMPlus_JitEnableNoWayAssert": "1",
"COMPlus_JitNoForceFallback": "1",
"COMPlus_JitDisasmWithGC": "1" }
if self.coreclr_args.gcinfo:
asm_complus_vars.update({
"COMPlus_JitGCDump": "*",
"COMPlus_NgenGCDump": "*" })
if self.coreclr_args.debuginfo:
asm_complus_vars.update({
"COMPlus_JitDebugDump": "*",
"COMPlus_NgenDebugDump": "*",
"COMPlus_JitDisasmWithDebugInfo": "1" })
jit_dump_complus_vars = asm_complus_vars.copy()
jit_dump_complus_vars.update({
"COMPlus_JitDump": "*",
"COMPlus_NgenDump": "*" })
asm_complus_vars_full_env = os.environ.copy()
asm_complus_vars_full_env.update(asm_complus_vars)
jit_dump_complus_vars_full_env = os.environ.copy()
jit_dump_complus_vars_full_env.update(jit_dump_complus_vars)
target_flags = []
if self.coreclr_args.arch != self.coreclr_args.target_arch:
target_flags += [ "-target", self.coreclr_args.target_arch ]
altjit_asm_diffs_flags = target_flags
altjit_replay_flags = target_flags
base_option_flags = []
if self.coreclr_args.base_jit_option:
for o in self.coreclr_args.base_jit_option:
base_option_flags += "-jitoption", o
base_option_flags_for_diff_artifact = base_option_flags
diff_option_flags = []
diff_option_flags_for_diff_artifact = []
if self.coreclr_args.diff_jit_option:
for o in self.coreclr_args.diff_jit_option:
diff_option_flags += "-jit2option", o
diff_option_flags_for_diff_artifact += "-jitoption", o
if self.coreclr_args.altjit:
altjit_asm_diffs_flags += [
"-jitoption", "force", "AltJit=*",
"-jitoption", "force", "AltJitNgen=*",
"-jit2option", "force", "AltJit=*",
"-jit2option", "force", "AltJitNgen=*"
]
altjit_replay_flags += [
"-jitoption", "force", "AltJit=*",
"-jitoption", "force", "AltJitNgen=*"
]
# Keep track if any MCH file replay had asm diffs
files_with_asm_diffs = []
files_with_replay_failures = []
# List of all Markdown summary files
all_md_summary_files = []
with TempDir(None, self.coreclr_args.skip_cleanup) as temp_location:
logging.debug("")
logging.debug("Temp Location: %s", temp_location)
logging.debug("")
# For each MCH file that we are going to replay, do the replay and replay post-processing.
#
# Consider: currently, we loop over all the steps for each MCH file, including (1) invoke
# SuperPMI, (2) process results. It might be better to do (1) for each MCH file, then
# process all the results at once. Currently, the results for some processing can be
# obscured by the normal run output for subsequent MCH files.
for mch_file in self.mch_files:
logging.info("Running asm diffs of %s", mch_file)
fail_mcl_file = os.path.join(temp_location, os.path.basename(mch_file) + "_fail.mcl")
diff_mcl_file = os.path.join(temp_location, os.path.basename(mch_file) + "_diff.mcl")
base_metrics_summary_file = os.path.join(temp_location, os.path.basename(mch_file) + "_base_metrics.csv")
diff_metrics_summary_file = os.path.join(temp_location, os.path.basename(mch_file) + "_diff_metrics.csv")
flags = [
"-a", # Asm diffs
"-v", "ewmi", # display errors, warnings, missing, jit info
"-f", fail_mcl_file, # Failing mc List
"-diffMCList", diff_mcl_file, # Create all of the diffs in an mcl file
"-r", os.path.join(temp_location, "repro"), # Repro name, create .mc repro files
"-baseMetricsSummary", base_metrics_summary_file, # Create summary of metrics we can use to get total code size impact
"-diffMetricsSummary", diff_metrics_summary_file,
]
flags += altjit_asm_diffs_flags
flags += base_option_flags
flags += diff_option_flags
if not self.coreclr_args.sequential and not self.coreclr_args.compile:
flags += [ "-p" ]
if self.coreclr_args.break_on_assert:
flags += [ "-boa" ]
if self.coreclr_args.break_on_error:
flags += [ "-boe" ]
if self.coreclr_args.compile:
flags += [ "-c", self.coreclr_args.compile ]
if self.coreclr_args.spmi_log_file is not None:
flags += [ "-w", self.coreclr_args.spmi_log_file ]
if self.coreclr_args.error_limit is not None:
flags += ["-failureLimit", self.coreclr_args.error_limit]
# Change the working directory to the Core_Root we will call SuperPMI from.
# This is done to allow libcoredistools to be loaded correctly on unix
# as the loadlibrary path will be relative to the current directory.
with ChangeDir(self.coreclr_args.core_root):
command = [self.superpmi_path] + flags + [self.base_jit_path, self.diff_jit_path, mch_file]
return_code = run_and_log(command)
logging.debug("return_code: %s", return_code)
base_metrics = read_csv_metrics(base_metrics_summary_file)
diff_metrics = read_csv_metrics(diff_metrics_summary_file)
print_superpmi_result(return_code, self.coreclr_args, base_metrics, diff_metrics)
artifacts_base_name = create_artifacts_base_name(self.coreclr_args, mch_file)
if return_code != 0:
# Don't report as replay failure asm diffs (return code 2) if not checking diffs with Release build or missing data (return code 3).
# Anything else, such as compilation failure (return code 1, typically a JIT assert) will be
# reported as a replay failure.
if (return_code != 2 or self.coreclr_args.diff_with_release) and return_code != 3:
result = False
files_with_replay_failures.append(mch_file)
if is_nonzero_length_file(fail_mcl_file):
# Unclean replay. Examine the contents of the fail.mcl file to dig into failures.
print_fail_mcl_file_method_numbers(fail_mcl_file)
repro_base_command_line = "{} {} {}".format(self.superpmi_path, " ".join(altjit_asm_diffs_flags), self.diff_jit_path)
save_repro_mc_files(temp_location, self.coreclr_args, artifacts_base_name, repro_base_command_line)
# This file had asm diffs; keep track of that.
if is_nonzero_length_file(diff_mcl_file):
files_with_asm_diffs.append(mch_file)
# There were diffs. Go through each method that created diffs and
# create a base/diff asm file with diffable asm. In addition, create
# a standalone .mc for easy iteration.
if is_nonzero_length_file(diff_mcl_file) and not self.coreclr_args.diff_with_release:
# AsmDiffs. Save the contents of the fail.mcl file to dig into failures.
if return_code == 0:
logging.warning("Warning: SuperPMI returned a zero exit code, but generated a non-zero-sized mcl file")
self.diff_mcl_contents = None
with open(diff_mcl_file) as file_handle:
mcl_lines = file_handle.readlines()
mcl_lines = [item.strip() for item in mcl_lines]
self.diff_mcl_contents = mcl_lines
asm_root_dir = create_unique_directory_name(self.coreclr_args.spmi_location, "asm.{}".format(artifacts_base_name))
base_asm_location = os.path.join(asm_root_dir, "base")
diff_asm_location = os.path.join(asm_root_dir, "diff")
os.makedirs(base_asm_location)
os.makedirs(diff_asm_location)
if self.coreclr_args.diff_jit_dump:
# If JIT dumps are requested, create a diff and baseline directory for JIT dumps
jitdump_root_dir = create_unique_directory_name(self.coreclr_args.spmi_location, "jitdump.{}".format(artifacts_base_name))
base_dump_location = os.path.join(jitdump_root_dir, "base")
diff_dump_location = os.path.join(jitdump_root_dir, "diff")
os.makedirs(base_dump_location)
os.makedirs(diff_dump_location)
text_differences = queue.Queue()
jit_dump_differences = queue.Queue()
async def create_replay_artifacts(print_prefix, item, self, mch_file, env, jit_differences_queue, base_location, diff_location, extension):
""" Run superpmi over an MC to create JIT asm or JIT dumps for the method.
"""
# Setup flags to call SuperPMI for both the diff jit and the base jit
flags = [
"-c", item,
"-v", "q" # only log from the jit.
]
flags += altjit_replay_flags
# Change the working directory to the core root we will call SuperPMI from.
# This is done to allow libcoredistools to be loaded correctly on unix
# as the LoadLibrary path will be relative to the current directory.
with ChangeDir(self.coreclr_args.core_root):
async def create_one_artifact(jit_path: str, location: str, flags) -> str:
command = [self.superpmi_path] + flags + [jit_path, mch_file]
item_path = os.path.join(location, "{}{}".format(item, extension))
with open(item_path, 'w') as file_handle:
logging.debug("%sGenerating %s", print_prefix, item_path)
logging.debug("%sInvoking: %s", print_prefix, " ".join(command))
proc = await asyncio.create_subprocess_shell(" ".join(command), stdout=file_handle, stderr=asyncio.subprocess.PIPE, env=env)
await proc.communicate()
with open(item_path, 'r') as file_handle:
generated_txt = file_handle.read()
return generated_txt
# Generate diff and base JIT dumps
base_txt = await create_one_artifact(self.base_jit_path, base_location, flags + base_option_flags_for_diff_artifact)
diff_txt = await create_one_artifact(self.diff_jit_path, diff_location, flags + diff_option_flags_for_diff_artifact)
if base_txt != diff_txt:
jit_differences_queue.put_nowait(item)
################################################################################################ end of create_replay_artifacts()
diff_items = []
for item in self.diff_mcl_contents:
diff_items.append(item)
logging.info("Creating dasm files: %s %s", base_asm_location, diff_asm_location)
subproc_helper = AsyncSubprocessHelper(diff_items, verbose=True)
subproc_helper.run_to_completion(create_replay_artifacts, self, mch_file, asm_complus_vars_full_env, text_differences, base_asm_location, diff_asm_location, ".dasm")
if self.coreclr_args.diff_jit_dump:
logging.info("Creating JitDump files: %s %s", base_dump_location, diff_dump_location)
subproc_helper.run_to_completion(create_replay_artifacts, self, mch_file, jit_dump_complus_vars_full_env, jit_dump_differences, base_dump_location, diff_dump_location, ".txt")
logging.info("Differences found. To replay SuperPMI use:")
logging.info("")
for var, value in asm_complus_vars.items():
print_platform_specific_environment_vars(logging.INFO, self.coreclr_args, var, value)
logging.info("%s %s -c ### %s %s", self.superpmi_path, " ".join(altjit_replay_flags), self.diff_jit_path, mch_file)
logging.info("")
if self.coreclr_args.diff_jit_dump:
logging.info("To generate JitDump with SuperPMI use:")
logging.info("")
for var, value in jit_dump_complus_vars.items():
print_platform_specific_environment_vars(logging.INFO, self.coreclr_args, var, value)
logging.info("%s %s -c ### %s %s", self.superpmi_path, " ".join(altjit_replay_flags), self.diff_jit_path, mch_file)
logging.info("")
logging.debug("Method numbers with binary differences:")
for item in self.diff_mcl_contents:
logging.debug(item)
logging.debug("")
if base_metrics is not None and diff_metrics is not None:
base_bytes = int(base_metrics["Diffed code bytes"])
diff_bytes = int(diff_metrics["Diffed code bytes"])
logging.info("Total bytes of base: {}".format(base_bytes))
logging.info("Total bytes of diff: {}".format(diff_bytes))
delta_bytes = diff_bytes - base_bytes
logging.info("Total bytes of delta: {} ({:.2%} of base)".format(delta_bytes, delta_bytes / base_bytes))
try:
current_text_diff = text_differences.get_nowait()
except:
current_text_diff = None
logging.info("Generated asm is located under %s %s", base_asm_location, diff_asm_location)
if current_text_diff is not None:
logging.info("Textual differences found in generated asm.")
# Find jit-analyze on PATH, if it exists, then invoke it.
ran_jit_analyze = False
path_var = os.environ.get("PATH")
if path_var is not None:
jit_analyze_file = "jit-analyze.exe" if platform.system() == "Windows" else "jit-analyze"
jit_analyze_path = find_file(jit_analyze_file, path_var.split(os.pathsep))
if jit_analyze_path is not None:
# It appears we have a built jit-analyze on the path, so try to run it.
md_summary_file = os.path.join(asm_root_dir, "summary.md")
summary_file_info = ( mch_file, md_summary_file )
all_md_summary_files.append(summary_file_info)
command = [ jit_analyze_path, "--md", md_summary_file, "-r", "--base", base_asm_location, "--diff", diff_asm_location ]
if self.coreclr_args.retainOnlyTopFiles:
command += [ "--retainOnlyTopFiles" ]
if self.coreclr_args.metrics:
command += [ "--metrics", ",".join(self.coreclr_args.metrics) ]
elif base_bytes is not None and diff_bytes is not None:
command += [ "--override-total-base-metric", str(base_bytes), "--override-total-diff-metric", str(diff_bytes) ]
run_and_log(command, logging.INFO)
ran_jit_analyze = True
if not ran_jit_analyze:
logging.info("jit-analyze not found on PATH. Generate a diff analysis report by building jit-analyze from https://github.com/dotnet/jitutils and running:")
logging.info(" jit-analyze -r --base %s --diff %s", base_asm_location, diff_asm_location)
else:
logging.warning("No textual differences. Is this an issue with coredistools?")
if self.coreclr_args.diff_jit_dump:
try:
current_jit_dump_diff = jit_dump_differences.get_nowait()
except:
current_jit_dump_diff = None
logging.info("Generated JitDump is located under %s %s", base_dump_location, diff_dump_location)
if current_jit_dump_diff is not None:
logging.info("Textual differences found in generated JitDump.")
else:
logging.warning("No textual differences found in generated JitDump. Is this an issue with coredistools?")
if base_metrics is not None and diff_metrics is not None:
missing_base = int(base_metrics["Missing compiles"])
missing_diff = int(diff_metrics["Missing compiles"])
total_contexts = int(base_metrics["Successful compiles"]) + int(base_metrics["Failing compiles"])
if missing_base > 0 or missing_diff > 0:
logging.warning("Warning: SuperPMI encountered missing data during the diff. The diff summary printed above may be misleading.")
logging.warning("Missing with base JIT: {}. Missing with diff JIT: {}. Total contexts: {}.".format(missing_base, missing_diff, total_contexts))
################################################################################################ end of processing asm diffs (if is_nonzero_length_file(diff_mcl_file)...
if not self.coreclr_args.skip_cleanup:
if os.path.isfile(fail_mcl_file):
os.remove(fail_mcl_file)
fail_mcl_file = None
if os.path.isfile(base_metrics_summary_file):
os.remove(base_metrics_summary_file)
base_metrics_summary_file = None
if os.path.isfile(diff_metrics_summary_file):
os.remove(diff_metrics_summary_file)
diff_metrics_summary_file = None
################################################################################################ end of for mch_file in self.mch_files
# Report the overall results summary of the asmdiffs run
logging.info("Asm diffs summary:")
# Construct an overall Markdown summary file.
if len(all_md_summary_files) > 0 and not self.coreclr_args.diff_with_release:
overall_md_summary_file = create_unique_file_name(self.coreclr_args.spmi_location, "diff_summary", "md")
if not os.path.isdir(self.coreclr_args.spmi_location):
os.makedirs(self.coreclr_args.spmi_location)
if os.path.isfile(overall_md_summary_file):
os.remove(overall_md_summary_file)
with open(overall_md_summary_file, "w") as write_fh:
for summary_file_info in all_md_summary_files:
summary_mch = summary_file_info[0]
summary_mch_filename = os.path.basename(summary_mch) # Display just the MCH filename, not the full path
summary_file = summary_file_info[1]
with open(summary_file, "r") as read_fh:
write_fh.write("## " + summary_mch_filename + ":\n\n")
shutil.copyfileobj(read_fh, write_fh)
logging.info(" Summary Markdown file: %s", overall_md_summary_file)
# Report the set of MCH files with asm diffs and replay failures.
if len(files_with_replay_failures) != 0:
logging.info(" Replay failures in %s MCH files:", len(files_with_replay_failures))
for file in files_with_replay_failures:
logging.info(" %s", file)
if len(files_with_asm_diffs) == 0:
logging.info(" No asm diffs")
else:
logging.info(" Asm diffs in %s MCH files:", len(files_with_asm_diffs))
for file in files_with_asm_diffs:
logging.info(" %s", file)
return result
################################################################################################ end of replay_with_asm_diffs()
################################################################################
# Argument handling helpers
################################################################################
def determine_coredis_tools(coreclr_args):
""" Determine the coredistools location. First, look in Core_Root. It will be there if
the setup-stress-dependencies.cmd/sh script has been run, which is typically only
if tests have been run. If unable to find coredistools, download it from a cached
copy in the CLRJIT Azure Storage. (Ideally, we would instead download the NuGet
package and extract it using the same mechanism as setup-stress-dependencies
instead of having our own copy in Azure Storage).
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
coredistools_location (str) : path of [lib]coredistools.dylib|so|dll
"""
if not hasattr(coreclr_args, "core_root") or coreclr_args.core_root is None:
raise RuntimeError("Core_Root not set properly")
coredistools_dll_name = None
if coreclr_args.host_os.lower() == "osx":
coredistools_dll_name = "libcoredistools.dylib"
elif coreclr_args.host_os.lower() == "linux":
coredistools_dll_name = "libcoredistools.so"
elif coreclr_args.host_os.lower() == "windows":
coredistools_dll_name = "coredistools.dll"
else:
raise RuntimeError("Unknown host os: {}".format(coreclr_args.host_os))
coredistools_location = os.path.join(coreclr_args.core_root, coredistools_dll_name)
if os.path.isfile(coredistools_location):
logging.info("Using coredistools found at %s", coredistools_location)
else:
# Often, Core_Root will already exist. However, you can do a product build without
# creating a Core_Root, and successfully run replay or asm diffs, if we just create Core_Root
# and copy coredistools there. Note that our replays all depend on Core_Root existing, as we
# set the current directory to Core_Root before running superpmi.
if not os.path.isdir(coreclr_args.core_root):
logging.warning("Warning: Core_Root does not exist at \"%s\"; creating it now", coreclr_args.core_root)
os.makedirs(coreclr_args.core_root)
coredistools_uri = az_blob_storage_superpmi_container_uri + "/libcoredistools/{}-{}/{}".format(coreclr_args.host_os.lower(), coreclr_args.arch.lower(), coredistools_dll_name)
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
download_one_url(coredistools_uri, coredistools_location, is_azure_storage=True, display_progress=not skip_progress)
assert os.path.isfile(coredistools_location)
return coredistools_location
def determine_pmi_location(coreclr_args):
""" Determine pmi.dll location, using the following steps:
First, use the `-pmi_location` argument, if set.
Else, look for pmi.dll on the PATH. This will be true if you build jitutils yourself
and put the built `bin` directory on your PATH.
Else, look for pmi.dll in Core_Root. This is where we cache it if downloaded from Azure Storage
Otherwise, download a cached copy from CLRJIT Azure Storage and cache it in Core_Root.
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
pmi_location (str) : path of pmi.dll
"""
if coreclr_args.pmi_location is not None:
pmi_location = os.path.abspath(coreclr_args.pmi_location)
if not os.path.isfile(pmi_location):
raise RuntimeError("PMI not found at {}".format(pmi_location))
logging.info("Using PMI at %s", pmi_location)
else:
path_var = os.environ.get("PATH")
pmi_location = find_file("pmi.dll", path_var.split(os.pathsep)) if path_var is not None else None
if pmi_location is not None:
logging.info("Using PMI found on PATH at %s", pmi_location)
else:
pmi_location = os.path.join(coreclr_args.core_root, "pmi.dll")
if os.path.isfile(pmi_location):
logging.info("Using PMI found at %s", pmi_location)
else:
pmi_uri = az_blob_storage_superpmi_container_uri + "/pmi/pmi.dll"
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
download_one_url(pmi_uri, pmi_location, is_azure_storage=True, display_progress=not skip_progress)
assert os.path.isfile(pmi_location)
return pmi_location
def determine_jit_name(coreclr_args):
""" Determine the jit based on the OS. If "-jit_name" is specified, then use the specified jit.
This function is called for cases where the "-jit_name" flag is not used, so be careful not
to depend on the "jit_name" attribute existing.
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) : name of the jit for this OS
"""
# If `-jit_name` is used, it must be given a full filename, not just a "base name", so use it without additional processing.
if hasattr(coreclr_args, "jit_name") and coreclr_args.jit_name is not None:
return coreclr_args.jit_name
jit_base_name = "clrjit"
if coreclr_args.host_os == "OSX":
return "lib" + jit_base_name + ".dylib"
elif coreclr_args.host_os == "Linux":
return "lib" + jit_base_name + ".so"
elif coreclr_args.host_os == "windows":
return jit_base_name + ".dll"
else:
raise RuntimeError("Unknown OS.")
def find_tool(coreclr_args, tool_name, search_core_root=True, search_product_location=True, search_path=True, throw_on_not_found=True):
""" Find a tool or any specified file (e.g., clrjit.dll) and return the full path to that tool if found.
Args:
coreclr_args (CoreclrArguments): parsed args
tool_name (str): tool to find, e.g., "superpmi.exe"
search_core_root (bool): True to search the Core_Root folder
search_product_location: True to search the build product folder
search_path: True to search along the PATH
Return:
(str) Full path of the tool, or None if not found.
"""
# First, look in Core_Root, if there is one.
if search_core_root and hasattr(coreclr_args, "core_root") and coreclr_args.core_root is not None and os.path.isdir(coreclr_args.core_root):
tool_path = os.path.join(coreclr_args.core_root, tool_name)
if os.path.isfile(tool_path):
logging.debug("Using %s from Core_Root: %s", tool_name, tool_path)
return tool_path
# Next, look in the built product directory, if it exists. We can use superpmi/mcs directly from the
# product build directory instead from Core_Root because they don't depend on managed code libraries.
if search_product_location and hasattr(coreclr_args, "product_location") and coreclr_args.product_location is not None and os.path.isdir(coreclr_args.product_location):
tool_path = os.path.join(coreclr_args.product_location, tool_name)
if os.path.isfile(tool_path):
logging.debug("Using %s from product build location: %s", tool_name, tool_path)
return tool_path
# Finally, look on the PATH
if search_path:
path_var = os.environ.get("PATH")
if path_var is not None:
tool_path = find_file(tool_name, path_var.split(os.pathsep))
if tool_path is not None:
logging.debug("Using %s from PATH: %s", tool_name, tool_path)
return tool_path
if throw_on_not_found:
raise RuntimeError("Tool " + tool_name + " not found. Have you built the runtime repo and created a Core_Root, or put it on your PATH?")
return None
def determine_superpmi_tool_name(coreclr_args):
""" Determine the superpmi tool name based on the OS
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Name of the superpmi tool to use
"""
if coreclr_args.host_os == "OSX" or coreclr_args.host_os == "Linux":
return "superpmi"
elif coreclr_args.host_os == "windows":
return "superpmi.exe"
else:
raise RuntimeError("Unknown OS.")
def determine_superpmi_tool_path(coreclr_args):
""" Determine the superpmi tool full path
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Path of the superpmi tool to use
"""
superpmi_tool_name = determine_superpmi_tool_name(coreclr_args)
return find_tool(coreclr_args, superpmi_tool_name)
def determine_mcs_tool_name(coreclr_args):
""" Determine the mcs tool name based on the OS
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Name of the mcs tool to use
"""
if coreclr_args.host_os == "OSX" or coreclr_args.host_os == "Linux":
return "mcs"
elif coreclr_args.host_os == "windows":
return "mcs.exe"
else:
raise RuntimeError("Unsupported OS.")
def determine_mcs_tool_path(coreclr_args):
""" Determine the mcs tool full path
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Path of the mcs tool to use
"""
mcs_tool_name = determine_mcs_tool_name(coreclr_args)
return find_tool(coreclr_args, mcs_tool_name)
def determine_dotnet_tool_name(coreclr_args):
""" Determine the dotnet tool name based on the OS
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Name of the dotnet tool to use
"""
if coreclr_args.host_os == "OSX" or coreclr_args.host_os == "Linux":
return "dotnet"
elif coreclr_args.host_os == "windows":
return "dotnet.exe"
else:
raise RuntimeError("Unsupported OS.")
def determine_jit_ee_version(coreclr_args):
""" Determine the JIT-EE version to use.
The JIT-EE version is used for determining which MCH files to download and use. It is determined as follows:
1. Try to parse it out of the source code. If we can find src\\coreclr\\inc\\jiteeversionguid.h in the source
tree (and we're already assuming we can find the repo root from the relative path of this script),
then the JIT-EE version lives in jiteeversionguid.h as follows:
constexpr GUID JITEEVersionIdentifier = { /* a5eec3a4-4176-43a7-8c2b-a05b551d4f49 */
0xa5eec3a4,
0x4176,
0x43a7,
{0x8c, 0x2b, 0xa0, 0x5b, 0x55, 0x1d, 0x4f, 0x49}
};
We want the string between the /* */ comments.
2. Find the mcs tool and run "mcs -printJITEEVersion".
3. Otherwise, just use "unknown-jit-ee-version", which will probably cause downstream failures.
NOTE: When using mcs, we need to run the tool. So we need a version that will run. If a user specifies
an "-arch" argument that creates a Core_Root path that won't run, like an arm32 Core_Root on an
x64 machine, this won't work. This could happen if doing "upload", "upload-private", or "list-collections" on
collections from a machine that didn't create the native collections. We should create a "native"
Core_Root and use that in case there are "cross-arch" scenarios.
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) The JIT-EE version to use
"""
jiteeversionguid_h_path = os.path.join(coreclr_args.coreclr_dir, "inc", "jiteeversionguid.h")
if os.path.isfile(jiteeversionguid_h_path):
# The string is near the beginning of the somewhat large file, so just read a line at a time when searching.
with open(jiteeversionguid_h_path, 'r') as file_handle:
for line in file_handle:
match_obj = re.search(r'^constexpr GUID JITEEVersionIdentifier *= *{ */\* *([^ ]*) *\*/', line)
if match_obj is not None:
jiteeversionguid_h_jit_ee_version = match_obj.group(1)
jiteeversionguid_h_jit_ee_version = jiteeversionguid_h_jit_ee_version.lower()
logging.info("Using JIT/EE Version from jiteeversionguid.h: %s", jiteeversionguid_h_jit_ee_version)
return jiteeversionguid_h_jit_ee_version
logging.warning("Warning: couldn't find JITEEVersionIdentifier in %s; is the file corrupt?", jiteeversionguid_h_path)
mcs_path = determine_mcs_tool_path(coreclr_args)
command = [mcs_path, "-printJITEEVersion"]
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_jit_ee_version, _ = proc.communicate()
return_code = proc.returncode
if return_code == 0:
mcs_jit_ee_version = stdout_jit_ee_version.decode('utf-8').strip()
mcs_jit_ee_version = mcs_jit_ee_version.lower()
logging.info("Using JIT/EE Version from mcs: %s", mcs_jit_ee_version)
return mcs_jit_ee_version
# Otherwise, use the default "unknown" version.
default_jit_ee_version = "unknown-jit-ee-version"
logging.info("Using default JIT/EE Version: %s", default_jit_ee_version)
return default_jit_ee_version
def print_platform_specific_environment_vars(loglevel, coreclr_args, var, value):
""" Print environment variables as set {}={} or export {}={}
Args:
coreclr_args (CoreclrArguments): parsed args
var (str): variable to set
value (str): value being set.
"""
if coreclr_args.host_os == "windows":
logging.log(loglevel, "set %s=%s", var, value)
else:
logging.log(loglevel, "export %s=%s", var, value)
def list_superpmi_collections_container_via_rest_api(path_filter=lambda unused: True):
""" List the superpmi collections using the Azure Storage REST api
Args:
path_filter (lambda: string -> bool): filter to apply to the list. The filter takes a relative
collection path and returns True if this path is acceptable.
Returns:
Returns a list of collections, each element a relative path with:
<jit-ee-guid>/<os>/<architecture>/<filename>
Notes:
This method does not require installing the Azure Storage python package.
"""
# This URI will return *all* the blobs, for all jit-ee-version/OS/architecture combinations.
# pass "prefix=foo/bar/..." to only show a subset. Or, we can filter later using string search.
#
# Note that there is a maximum number of results returned in one query of 5000. So we might need to
# iterate. In that case, the XML result contains a `<NextMarker>` element like:
#
# <NextMarker>2!184!MDAwMDkyIWJ1aWxkcy8wMTZlYzI5OTAzMzkwMmY2ZTY4Yzg0YWMwYTNlYzkxN2Y5MzA0OTQ2L0xpbnV4L3g2NC9DaGVja2VkL2xpYmNscmppdF93aW5fYXJtNjRfeDY0LnNvITAwMDAyOCE5OTk5LTEyLTMxVDIzOjU5OjU5Ljk5OTk5OTlaIQ--</NextMarker>
#
# which we need to pass to the REST API with `marker=...`.
paths = []
list_superpmi_container_uri_base = az_blob_storage_superpmi_container_uri + "?restype=container&comp=list&prefix=" + az_collections_root_folder + "/"
iter = 1
marker = ""
while True:
list_superpmi_container_uri = list_superpmi_container_uri_base + marker
try:
contents = urllib.request.urlopen(list_superpmi_container_uri).read().decode('utf-8')
except Exception as exception:
logging.error("Didn't find any collections using %s", list_superpmi_container_uri)
logging.error(" Error: %s", exception)
return None
# Contents is an XML file with contents like:
#
# <EnumerationResults ContainerName="https://clrjit.blob.core.windows.net/superpmi/collections">
# <Blobs>
# <Blob>
# <Name>jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip</Name>
# <Url>https://clrjit.blob.core.windows.net/superpmi/collections/jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip</Url>
# <Properties>
# ...
# </Properties>
# </Blob>
# <Blob>
# <Name>jit-ee-guid/Linux/x64/Linux.x64.Checked.mch.zip</Name>
# <Url>https://clrjit.blob.core.windows.net/superpmi/collections/jit-ee-guid/Linux/x64/Linux.x64.Checked.mch.zip</Url>
# ... etc. ...
# </Blobs>
# </EnumerationResults>
#
# We just want to extract the <Url> entries. We could probably use an XML parsing package, but we just
# use regular expressions.
url_prefix = az_blob_storage_superpmi_container_uri + "/" + az_collections_root_folder + "/"
urls_split = contents.split("<Url>")[1:]
for item in urls_split:
url = item.split("</Url>")[0].strip()
path = remove_prefix(url, url_prefix)
if path_filter(path):
paths.append(path)
# Look for a continuation marker.
re_match = re.match(r'.*<NextMarker>(.*)</NextMarker>.*', contents)
if re_match:
marker_text = re_match.group(1)
marker = "&marker=" + marker_text
iter += 1
else:
break
return paths
def list_superpmi_collections_container_via_azure_api(path_filter=lambda unused: True):
""" List the superpmi collections using the Azure Storage API
Args:
path_filter (lambda: string -> bool): filter to apply to the list. The filter takes a relative
collection path and returns True if this path is acceptable.
Returns:
Returns a list of collections, each element a relative path with:
<jit-ee-guid>/<os>/<architecture>/<filename>
"""
require_azure_storage_libraries()
from jitutil import ContainerClient, AzureCliCredential
superpmi_container_url = az_blob_storage_superpmi_container_uri
paths = []
ok = True
try:
az_credential = AzureCliCredential()
container = ContainerClient.from_container_url(superpmi_container_url, credential=az_credential)
blob_name_prefix = az_collections_root_folder + "/"
blob_list = container.list_blobs(name_starts_with=blob_name_prefix, retry_total=0)
for blob in blob_list:
# The blob name looks something like:
# collections/f556df6c-b9c7-479c-b895-8e1f1959fe59/Linux/arm/tests.pmi.Linux.arm.checked.mch.zip
# remove the leading "collections/" part of the name.
path = remove_prefix(blob.name, blob_name_prefix)
if path_filter(path):
paths.append(path)
except Exception as exception:
logging.error("Failed to list collections: %s", superpmi_container_url)
report_azure_error()
logging.error(exception)
return None
return paths
def list_superpmi_collections_container(path_filter=lambda unused: True):
""" List the superpmi collections using either the REST API or the Azure API with authentication.
Args:
path_filter (lambda: string -> bool): filter to apply to the list. The filter takes a relative
collection path and returns True if this path is acceptable.
Returns:
Returns a list of collections, each element a relative path with:
<jit-ee-guid>/<os>/<architecture>/<filename>
"""
if authenticate_using_azure:
return list_superpmi_collections_container_via_azure_api(path_filter)
else:
return list_superpmi_collections_container_via_rest_api(path_filter)
def process_local_mch_files(coreclr_args, mch_files, mch_cache_dir):
""" Process the MCH files to use.
Args:
coreclr_args (CoreclrArguments): parsed args
mch_files (list): list of MCH files locations. Normally, this comes from the `-mch_files` argument, but it can
also come from the `private_store` argument. It can be a list of files or directories or both.
mch_cache_dir (str): the directory to cache any downloads.
Returns:
list of full paths of locally cached MCH files to use
"""
# Create the cache location. Note that we'll create it even if we end up not copying anything.
if not os.path.isdir(mch_cache_dir):
os.makedirs(mch_cache_dir)
# Process the mch_files list. Download and cache UNC and HTTP files.
urls = []
local_mch_files = []
for item in mch_files:
# On Windows only, see if any of the mch_files are UNC paths (i.e., "\\server\share\...").
# If so, download and cache all the files found there to our usual local cache location, to avoid future network access.
if coreclr_args.host_os == "windows":# and item.startswith("\\\\"):
# Special case: if the user specifies a .mch file, we'll also look for and cache a .mch.mct file next to it, if one exists.
# This happens naturally if a directory is passed and we search for all .mch and .mct files in that directory.
mch_file = os.path.abspath(item)
if os.path.isfile(mch_file) and mch_file.endswith(".mch"):
urls.append(mch_file)
mct_file = mch_file + ".mct"
if os.path.isfile(mct_file):
urls.append(mct_file)
else:
urls += get_files_from_path(mch_file, match_func=lambda path: any(path.lower().endswith(extension) for extension in [".mch", ".mct", ".zip"]))
elif item.lower().startswith("http:") or item.lower().startswith("https:"): # probably could use urllib.parse to be more precise
urls.append(item)
else:
# Doesn't appear to be a UNC path (on Windows) or a URL, so just use it as-is.
local_mch_files.append(item)
# Now apply any filtering we've been asked to do.
def filter_local_path(path):
path = path.lower()
return (coreclr_args.filter is None) or any((filter_item.lower() in path) for filter_item in coreclr_args.filter)
urls = [url for url in urls if filter_local_path(url)]
# Download all the urls at once, and add the local cache filenames to our accumulated list of local file names.
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
if len(urls) != 0:
local_mch_files += download_files(urls, mch_cache_dir, is_azure_storage=True, display_progress=not skip_progress)
# Special case: walk the URLs list and for every ".mch" or ".mch.zip" file, check to see that either the associated ".mct" file is already
# in the list, or add it to a new list to attempt to download (but don't fail the download if it doesn't exist).
mct_urls = []
for url in urls:
if url.endswith(".mch") or url.endswith(".mch.zip"):
mct_url = url.replace(".mch", ".mch.mct")
if mct_url not in urls:
mct_urls.append(mct_url)
if len(mct_urls) != 0:
local_mch_files += download_files(mct_urls, mch_cache_dir, fail_if_not_found=False, is_azure_storage=True, display_progress=not skip_progress)
# Even though we might have downloaded MCT files, only return the set of MCH files.
local_mch_files = [file for file in local_mch_files if any(file.lower().endswith(extension) for extension in [".mch"])]
return local_mch_files
def process_mch_files_arg(coreclr_args):
""" Process the -mch_files argument. If the argument is not specified, then download files
from Azure Storage and any specified private MCH stores.
Any files on UNC (i.e., "\\server\share" paths on Windows) or Azure Storage stores,
even if specified via the `-mch_files` argument, will be downloaded and cached locally,
replacing the paths with a reference to the newly cached local paths.
If the `-mch_files` argument is specified, files are always either used directly or copied and
cached locally. These will be the only files used.
If the `-mch_files` argument is not specified, and there exists a cache, then only files already
in the cache are used and no MCH stores are consulted, unless the `--force_download` option is
specified, in which case normal MCH store processing is done. This behavior is to avoid
touching the network unless required.
Args:
coreclr_args (CoreclrArguments): parsed args
Returns:
list of local full paths of MCH files or directories to use
"""
mch_cache_dir = os.path.join(coreclr_args.spmi_location, "mch", "{}.{}.{}".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch))
# If an `-mch_files` argument was given, then use exactly that set of files.
if coreclr_args.mch_files is not None:
return process_local_mch_files(coreclr_args, coreclr_args.mch_files, mch_cache_dir)
# Otherwise, use both Azure Storage, and optionally, private stores.
# See if the cache directory already exists. If so, we just use it (unless `--force_download` is passed).
if os.path.isdir(mch_cache_dir) and not coreclr_args.force_download:
# The cache directory is already there, and "--force_download" was not passed, so just
# assume it's got what we want.
# NOTE: a different solution might be to verify that everything we would download is
# already in the cache, and simply not download if it is. However, that would
# require hitting the network, and currently once you've cached these, you
# don't need to do that.
logging.info("Found download cache directory \"%s\" and --force_download not set; skipping download", mch_cache_dir)
return [ mch_cache_dir ]
local_mch_paths = download_mch_from_azure(coreclr_args, mch_cache_dir)
# Add the private store files
if coreclr_args.private_store is not None:
# Only include the directories corresponding to the current JIT/EE version, target OS, and MCH architecture (this is the
# same filtering done for Azure storage). Only include them if they actually exist (e.g., the private store might have
# windows x64 but not Linux arm).
target_specific_stores = [ os.path.abspath(os.path.join(store, coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)) for store in coreclr_args.private_store ]
filtered_stores = [ s for s in target_specific_stores if os.path.isdir(s) ]
local_mch_paths += process_local_mch_files(coreclr_args, filtered_stores, mch_cache_dir)
return local_mch_paths
def download_mch_from_azure(coreclr_args, target_dir):
""" Download the mch files. This can be called to re-download files and
overwrite them in the target location.
Args:
coreclr_args (CoreclrArguments): parsed args
target_dir (str): target directory to download the files
Returns:
list containing the local path of files downloaded
"""
blob_filter_string = "{}/{}/{}/".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch).lower()
# Determine if a URL in Azure Storage should be allowed. The path looks like:
# jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip
# Filter to just the current jit-ee-guid, OS, and architecture.
# Include both MCH and MCT files as well as the CLR JIT dll (processed below).
# If there are filters, only download those matching files.
def filter_superpmi_collections(path):
path = path.lower()
return path.startswith(blob_filter_string) and ((coreclr_args.filter is None) or any((filter_item.lower() in path) for filter_item in coreclr_args.filter))
paths = list_superpmi_collections_container(filter_superpmi_collections)
if paths is None or len(paths) == 0:
print("No Azure Storage MCH files to download from {}".format(blob_filter_string))
return []
blob_url_prefix = "{}/{}/".format(az_blob_storage_superpmi_container_uri, az_collections_root_folder)
urls = [blob_url_prefix + path for path in paths]
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
return download_files(urls, target_dir, is_azure_storage=True, display_progress=not skip_progress)
def upload_mch(coreclr_args):
""" Upload a set of MCH files. Each MCH file is first ZIP compressed to save data space and upload/download time.
Args:
coreclr_args (CoreclrArguments): parsed args
"""
require_azure_storage_libraries(need_azure_identity=False)
from jitutil import BlobServiceClient
def upload_blob(file, blob_name):
blob_client = blob_service_client.get_blob_client(container=az_superpmi_container_name, blob=blob_name)
# Check if the blob already exists, and delete it if it does, before uploading / replacing it.
try:
blob_client.get_blob_properties()
# If no exception, then the blob already exists. Delete it!
logging.warning("Warning: replacing existing blob!")
blob_client.delete_blob()
except Exception:
# Blob doesn't exist already; that's good
pass
with open(file, "rb") as data:
blob_client.upload_blob(data)
files = []
for item in coreclr_args.mch_files:
files += get_files_from_path(item, match_func=lambda path: any(path.endswith(extension) for extension in [".mch"]))
files_to_upload = []
# Special case: walk the files list and for every ".mch" file, check to see that either the associated ".mct" file is already
# in the list, or add it if the ".mct" file exists.
for file in files.copy():
if file.endswith(".mch") and os.stat(file).st_size > 0:
files_to_upload.append(file)
mct_file = file + ".mct"
if os.path.isfile(mct_file) and os.stat(mct_file).st_size > 0:
files_to_upload.append(mct_file)
logging.info("Uploading:")
for item in files_to_upload:
logging.info(" %s", item)
blob_service_client = BlobServiceClient(account_url=az_blob_storage_account_uri, credential=coreclr_args.az_storage_key)
blob_folder_name = "{}/{}/{}/{}".format(az_collections_root_folder, coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)
total_bytes_uploaded = 0
with TempDir() as temp_location:
for file in files_to_upload:
# Zip compress the file we will upload
zip_name = os.path.basename(file) + ".zip"
zip_path = os.path.join(temp_location, zip_name)
logging.info("Compress %s -> %s", file, zip_path)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zip_file:
zip_file.write(file, os.path.basename(file))
original_stat_result = os.stat(file)
zip_stat_result = os.stat(zip_path)
logging.info("Compressed {:n} to {:n} bytes".format(original_stat_result.st_size, zip_stat_result.st_size))
total_bytes_uploaded += zip_stat_result.st_size
blob_name = "{}/{}".format(blob_folder_name, zip_name)
logging.info("Uploading: %s (%s) -> %s", file, zip_path, az_blob_storage_superpmi_container_uri + "/" + blob_name)
upload_blob(zip_path, blob_name)
logging.info("Uploaded {:n} bytes".format(total_bytes_uploaded))
def upload_private_mch(coreclr_args):
""" Upload a set of MCH files. Each MCH file is first ZIP compressed to save data space and upload/download time.
Args:
coreclr_args (CoreclrArguments): parsed args
"""
files = []
for item in coreclr_args.mch_files:
files += get_files_from_path(item, match_func=lambda path: any(path.endswith(extension) for extension in [".mch"]))
files_to_upload = []
# Special case: walk the files list and for every ".mch" file, check to see that either the associated ".mct" file is already
# in the list, or add it if the ".mct" file exists.
for file in files.copy():
if file.endswith(".mch") and os.stat(file).st_size > 0:
files_to_upload.append(file)
mct_file = file + ".mct"
if os.path.isfile(mct_file) and os.stat(mct_file).st_size > 0:
files_to_upload.append(mct_file)
logging.info("Uploading:")
for item in files_to_upload:
logging.info(" %s", item)
file_folder_name = os.path.join(coreclr_args.private_store, coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)
if not os.path.isdir(file_folder_name):
os.makedirs(file_folder_name)
total_bytes_uploaded = 0
with TempDir() as temp_location:
for file in files_to_upload:
# Zip compress the file we will upload
zip_name = os.path.basename(file) + ".zip"
zip_path = os.path.join(temp_location, zip_name)
logging.info("Compress %s -> %s", file, zip_path)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zip_file:
zip_file.write(file, os.path.basename(file))
original_stat_result = os.stat(file)
zip_stat_result = os.stat(zip_path)
logging.info("Compressed {:n} to {:n} bytes".format(original_stat_result.st_size, zip_stat_result.st_size))
total_bytes_uploaded += zip_stat_result.st_size
target_path = os.path.join(file_folder_name, zip_name)
logging.info("Uploading: %s (%s) -> %s", file, zip_path, target_path)
if os.path.exists(target_path):
logging.warning("Warning: replacing existing file '%s'!", target_path)
os.remove(target_path)
shutil.copy2(zip_path, target_path)
logging.info("Uploaded {:n} bytes".format(total_bytes_uploaded))
def list_collections_command(coreclr_args):
""" List the SuperPMI collections in Azure Storage
Args:
coreclr_args (CoreclrArguments) : parsed args
"""
blob_filter_string = "{}/{}/{}/".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch).lower()
# Determine if a URL in Azure Storage should be allowed. The URL looks like:
# https://clrjit.blob.core.windows.net/superpmi/jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip
# By default, filter to just the current jit-ee-guid, OS, and architecture.
# Only include MCH files, not MCT (TOC) files.
def filter_superpmi_collections(path: str):
path = path.lower()
return (path.endswith(".mch") or path.endswith(".mch.zip")) and (coreclr_args.all or path.startswith(blob_filter_string))
paths = list_superpmi_collections_container(filter_superpmi_collections)
if paths is None:
return
blob_url_prefix = "{}/{}/".format(az_blob_storage_superpmi_container_uri, az_collections_root_folder)
urls = [blob_url_prefix + path for path in paths]
count = len(urls)
logging.info("SuperPMI list-collections")
logging.info("")
if coreclr_args.all:
logging.info("%s collections", count)
else:
logging.info("%s collections for %s", count, blob_filter_string)
logging.info("")
for url in urls:
logging.info("%s", url)
def list_collections_local_command(coreclr_args):
""" List the SuperPMI collections local cache: where the Azure Storage collections are copied
Args:
coreclr_args (CoreclrArguments) : parsed args
"""
# Display the blob filter string the local cache corresponds to
blob_filter_string = "{}/{}/{}/".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)
default_mch_root_dir = os.path.join(coreclr_args.spmi_location, "mch")
default_mch_dir = os.path.join(default_mch_root_dir, "{}.{}.{}".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch))
# Determine if a file should be allowed. The filenames look like:
# c:\gh\runtime\artifacts\spmi\mch\a5eec3a4-4176-43a7-8c2b-a05b551d4f49.windows.x64\corelib.windows.x64.Checked.mch
# c:\gh\runtime\artifacts\spmi\mch\a5eec3a4-4176-43a7-8c2b-a05b551d4f49.windows.x64\corelib.windows.x64.Checked.mch.mct
# Only include MCH files, not MCT (TOC) files.
def filter_superpmi_collections(path: str):
return path.lower().endswith(".mch")
if coreclr_args.all:
if not os.path.isdir(default_mch_root_dir):
logging.error("Local dir \"%s\" not found", default_mch_root_dir)
return
local_items = get_files_from_path(default_mch_root_dir)
else:
if not os.path.isdir(default_mch_dir):
logging.error("Local dir \"%s\" not found", default_mch_dir)
return
local_items = get_files_from_path(default_mch_dir)
filtered_local_items = [item for item in local_items if filter_superpmi_collections(item)]
count = len(filtered_local_items)
logging.info("SuperPMI list-collections --local")
logging.info("")
if coreclr_args.all:
logging.info("%s collections", count)
else:
logging.info("%s collections for %s", count, blob_filter_string)
logging.info("")
for item in filtered_local_items:
logging.info("%s", item)
def merge_mch(coreclr_args):
""" Merge all the files specified by a given pattern into a single output MCH file.
This is a utility function mostly for use by the CI scripting. It is a
thin wrapper around:
mcs -merge <output_mch_path> <pattern> -recursive -dedup -thin
mcs -toc <output_mch_path>
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
True on success, else False
"""
logging.info("Merging %s -> %s", coreclr_args.pattern, coreclr_args.output_mch_path)
mcs_path = determine_mcs_tool_path(coreclr_args)
command = [mcs_path, "-merge", coreclr_args.output_mch_path, coreclr_args.pattern, "-recursive", "-dedup", "-thin"]
return_code = run_and_log(command)
if return_code != 0:
logging.error("mcs -merge Failed with code %s", return_code)
return False
logging.info("Creating MCT file for %s", coreclr_args.output_mch_path)
command = [mcs_path, "-toc", coreclr_args.output_mch_path]
return_code = run_and_log(command)
if return_code != 0:
logging.error("mcs -toc Failed with code %s", return_code)
return False
return True
def get_mch_files_for_replay(local_mch_paths, filters):
""" Given a list of local MCH files, and any specified filters (in coreclr_args.filter),
find all the MCH files to use for replay. Note that `local_mch_paths` can contain
both files and directories.
Args:
local_mch_paths (list) : list of local files and directories to use to find MCH files to use
filters (list) : list of strings, one of which must match each candidate MCH path
Returns:
None if error (with an error message already printed), else a filtered list of full paths of MCH files.
"""
if local_mch_paths is None:
logging.error("No MCH files specified")
return None
mch_files = []
for item in local_mch_paths:
# If there are specified filters, only run those matching files.
mch_files += get_files_from_path(item,
match_func=lambda path:
any(path.endswith(extension) for extension in [".mch"])
and ((filters is None) or any(filter_item.lower() in path for filter_item in filters)))
if len(mch_files) == 0:
logging.error("No MCH files found to replay")
return None
return mch_files
def process_base_jit_path_arg(coreclr_args):
""" Process the -base_jit_path argument.
If the argument is present, check it for being a path to a file.
If not present, try to find and download a baseline JIT based on the current environment:
1. Determine the current git hash using:
git rev-parse HEAD
or use the `-git_hash` argument (call the result `git_hash`).
2. Determine the baseline: where does this hash meet `main` using:
git merge-base `git_hash` main
or use the `-base_git_hash` argument (call the result `base_git_hash`).
3. If the `-base_git_hash` argument is used, use that directly as the exact git
hash of the baseline JIT to use.
4. Otherwise, figure out the latest hash, starting with `base_git_hash`, that contains any changes to
the src\\coreclr\\jit directory. (We do this because the JIT rolling build only includes
builds for changes to this directory. So, this logic needs to stay in sync with the logic
that determines what causes the JIT directory to be rebuilt. E.g., it should also get
rebuilt if the JIT-EE interface GUID changes. Alternatively, we can take the entire list
of changes, and probe the rolling build drop for all of them.)
5. Check if we've already downloaded a JIT that matches `base_git_hash`, and use that if available.
6. Starting with `base_git_hash`, and possibly walking to older changes, look for matching builds
in the JIT rolling build drops.
7. If a baseline clrjit is found, download it to the `spmi/basejit/git-hash.os.architecture.build_type`
cache directory.
8. Set coreclr_args.base_jit_path to the full path to the downloaded baseline JIT.
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
Nothing
coreclr_args.base_jit_path is set to the path to the JIT to use for the baseline JIT.
"""
if coreclr_args.base_jit_path is not None:
if not os.path.isfile(coreclr_args.base_jit_path):
raise RuntimeError("Specified -base_jit_path does not point to a file")
coreclr_args.base_jit_path = os.path.abspath(coreclr_args.base_jit_path)
return
# We cache baseline jits under the following directory. Note that we can't create the full directory path
# until we know the baseline JIT hash.
default_basejit_root_dir = os.path.join(coreclr_args.spmi_location, "basejit")
# Do all the remaining commands, including a number of 'git' commands including relative paths,
# from the root of the runtime repo.
with ChangeDir(coreclr_args.runtime_repo_location):
if coreclr_args.git_hash is None:
command = [ "git", "rev-parse", "HEAD" ]
logging.debug("Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_git_rev_parse, _ = proc.communicate()
return_code = proc.returncode
if return_code == 0:
current_hash = stdout_git_rev_parse.decode('utf-8').strip()
logging.debug("Current hash: %s", current_hash)
else:
raise RuntimeError("Couldn't determine current git hash")
else:
current_hash = coreclr_args.git_hash
if coreclr_args.base_git_hash is None:
# We've got the current hash; figure out the baseline hash.
command = [ "git", "merge-base", current_hash, "main" ]
logging.debug("Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_git_merge_base, _ = proc.communicate()
return_code = proc.returncode
if return_code == 0:
baseline_hash = stdout_git_merge_base.decode('utf-8').strip()
logging.info("Baseline hash: %s", current_hash)
else:
raise RuntimeError("Couldn't determine baseline git hash")
else:
baseline_hash = coreclr_args.base_git_hash
if coreclr_args.base_git_hash is None:
# Enumerate the last 20 changes, starting with the baseline, that included JIT changes.
command = [ "git", "log", "--pretty=format:%H", baseline_hash, "-20", "--", "src/coreclr/jit/*" ]
logging.debug("Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_change_list, _ = proc.communicate()
return_code = proc.returncode
change_list_hashes = []
if return_code == 0:
change_list_hashes = stdout_change_list.decode('utf-8').strip().splitlines()
else:
raise RuntimeError("Couldn't determine list of JIT changes starting with baseline hash")
if len(change_list_hashes) == 0:
raise RuntimeError("No JIT changes found starting with baseline hash")
else:
# If `-base_git_hash` is specified, then we use exactly that hash and no other for the baseline.
change_list_hashes = [ coreclr_args.base_git_hash ]
# For each hash, (1) see if we have the JIT already, and if not (2) try to download the corresponding JIT from the rolling build.
hashnum = 1
for git_hash in change_list_hashes:
logging.debug("%s: %s", hashnum, git_hash)
jit_name = determine_jit_name(coreclr_args)
basejit_dir = os.path.join(default_basejit_root_dir, "{}.{}.{}.{}".format(git_hash, coreclr_args.host_os, coreclr_args.arch, coreclr_args.build_type))
basejit_path = os.path.join(basejit_dir, jit_name)
if os.path.isfile(basejit_path):
# We found this baseline JIT in our cache; use it!
coreclr_args.base_jit_path = basejit_path
logging.info("Using baseline %s", coreclr_args.base_jit_path)
return
# It's not in our cache; is there one built by the rolling build to download?
blob_folder_name = "{}/{}/{}/{}/{}/{}".format(az_builds_root_folder, git_hash, coreclr_args.host_os, coreclr_args.arch, coreclr_args.build_type, jit_name)
blob_uri = "{}/{}".format(az_blob_storage_jitrollingbuild_container_uri, blob_folder_name)
urls = [ blob_uri ]
local_files = download_files(urls, basejit_dir, verbose=False, is_azure_storage=True, fail_if_not_found=False)
if len(local_files) > 0:
if hashnum > 1:
logging.warning("Warning: the baseline found is not built with the first git hash with JIT code changes; there may be extraneous diffs")
# We expect local_files to be length 1, since we only attempted to download a single file.
if len(local_files) > 1:
logging.error("Error: downloaded more than one file?")
coreclr_args.base_jit_path = local_files[0]
logging.info("Downloaded %s", blob_uri)
logging.info("Using baseline %s", coreclr_args.base_jit_path)
return
# We didn't find a baseline; keep looking
hashnum += 1
# We ran out of hashes of JIT changes, and didn't find a baseline. Give up.
logging.error("Error: no baseline JIT found")
raise RuntimeError("No baseline JIT found")
def setup_args(args):
""" Setup the args for SuperPMI to use.
Args:
args (ArgParse): args parsed by arg parser
Returns:
args (CoreclrArguments)
"""
# Start setting up logging.
# Set up the console logger immediately. Later, after we've parsed some arguments, we'll add the file logger and
# change the console logger level to the one parsed by the arguments. We need to do this initial setup before the first
# logging command is executed.
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
stream_handler = logging.StreamHandler(sys.stdout)
stream_handler.setLevel(logging.DEBUG)
logger.addHandler(stream_handler)
# Parse the arguments
coreclr_args = CoreclrArguments(args, require_built_core_root=False, require_built_product_dir=False, require_built_test_dir=False, default_build_type="Checked")
coreclr_args.verify(args,
"mode", # "mode" is from the `parser.add_subparsers(dest='mode')` call
lambda unused: True,
"Unable to set mode")
coreclr_args.verify(args,
"log_level",
lambda arg: any(arg.upper() == level for level in [ "CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG" ]),
"Unable to set log_level {}".format,
modify_arg=lambda arg: "INFO" if arg is None else arg.upper())
coreclr_args.verify(args,
"log_file",
lambda unused: True,
"Unable to set log_file.")
def setup_spmi_location_arg(spmi_location):
if spmi_location is None:
if "SUPERPMI_CACHE_DIRECTORY" in os.environ:
spmi_location = os.environ["SUPERPMI_CACHE_DIRECTORY"]
spmi_location = os.path.abspath(spmi_location)
else:
spmi_location = os.path.abspath(os.path.join(coreclr_args.artifacts_location, "spmi"))
return spmi_location
coreclr_args.verify(args,
"spmi_location",
lambda unused: True,
"Unable to set spmi_location",
modify_arg=setup_spmi_location_arg)
coreclr_args.verify(args,
"no_progress",
lambda unused: True,
"Unable to set no_progress")
# Finish setting up logging.
# The spmi_location is the root directory where we put the log file.
# Log everything to the log file and only the specified verbosity to the console logger.
# Now, change the stream handler output level.
stream_handler.setLevel(coreclr_args.log_level)
log_file = None
if coreclr_args.log_file is None:
if hasattr(coreclr_args, "spmi_location"):
log_file = create_unique_file_name(coreclr_args.spmi_location, "superpmi", "log")
if not os.path.isdir(coreclr_args.spmi_location):
os.makedirs(coreclr_args.spmi_location)
else:
log_file = coreclr_args.log_file
log_dir = os.path.dirname(log_file)
if not os.path.isdir(log_dir):
print("Creating log directory {} for log file {}".format(log_dir, log_file))
os.makedirs(log_dir)
if log_file is not None:
# If the log file exists, we could use the default behavior and simply append.
# For now, though, just delete it and warn. We can change behavior later if there's user feedback on it.
if os.path.isfile(log_file):
logging.critical("Warning: deleting existing log file %s", log_file)
os.remove(log_file)
file_handler = logging.FileHandler(log_file, encoding='utf8')
file_handler.setLevel(logging.DEBUG)
logger.addHandler(file_handler)
logging.critical("================ Logging to %s", log_file)
# Finish verifying the arguments
def setup_jit_ee_version_arg(jit_ee_version):
if jit_ee_version is not None:
# The user passed a specific jit_ee_version on the command-line, so use that
return jit_ee_version
return determine_jit_ee_version(coreclr_args)
def setup_jit_path_arg(jit_path):
if jit_path is not None:
return os.path.abspath(jit_path)
return find_tool(coreclr_args, determine_jit_name(coreclr_args), search_path=False) # It doesn't make sense to search PATH for the JIT dll.
def setup_error_limit(error_limit):
if error_limit is None:
return None
elif not error_limit.isnumeric():
return None
return error_limit
def verify_jit_ee_version_arg():
coreclr_args.verify(args,
"jit_ee_version",
lambda unused: True,
"Invalid JIT-EE Version.",
modify_arg=setup_jit_ee_version_arg)
def verify_target_args():
coreclr_args.verify(args,
"target_os",
lambda target_os: check_target_os(coreclr_args, target_os),
lambda target_os: "Unknown target_os {}\nSupported OS: {}".format(target_os, (", ".join(coreclr_args.valid_host_os))),
modify_arg=lambda target_os: target_os if target_os is not None else coreclr_args.host_os) # Default to `host_os`
coreclr_args.verify(args,
"target_arch",
lambda target_arch: check_target_arch(coreclr_args, target_arch),
lambda target_arch: "Unknown target_arch {}\nSupported architectures: {}".format(target_arch, (", ".join(coreclr_args.valid_arches))),
modify_arg=lambda target_arch: target_arch if target_arch is not None else coreclr_args.arch) # Default to `arch`
coreclr_args.verify(args,
"mch_arch",
lambda mch_arch: check_mch_arch(coreclr_args, mch_arch),
lambda mch_arch: "Unknown mch_arch {}\nSupported architectures: {}".format(mch_arch, (", ".join(coreclr_args.valid_arches))),
modify_arg=lambda mch_arch: mch_arch if mch_arch is not None else coreclr_args.target_arch) # Default to `target_arch`
def verify_superpmi_common_args():
coreclr_args.verify(args,
"break_on_assert",
lambda unused: True,
"Unable to set break_on_assert")
coreclr_args.verify(args,
"break_on_error",
lambda unused: True,
"Unable to set break_on_error")
coreclr_args.verify(args,
"skip_cleanup",
lambda unused: True,
"Unable to set skip_cleanup")
coreclr_args.verify(args,
"sequential",
lambda unused: True,
"Unable to set sequential.")
coreclr_args.verify(args,
"error_limit",
lambda unused: True,
"Unable to set error_limit",
modify_arg=setup_error_limit)
coreclr_args.verify(args,
"spmi_log_file",
lambda unused: True,
"Unable to set spmi_log_file.")
if coreclr_args.spmi_log_file is not None and not coreclr_args.sequential:
print("-spmi_log_file requires --sequential")
sys.exit(1)
def verify_replay_common_args():
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"force_download",
lambda unused: True,
"Unable to set force_download")
coreclr_args.verify(args,
"jit_name",
lambda unused: True,
"Unable to set jit_name.")
coreclr_args.verify(args,
"altjit", # Must be set before `jit_path` (determine_jit_name() depends on it)
lambda unused: True,
"Unable to set altjit.")
coreclr_args.verify(args,
"filter",
lambda unused: True,
"Unable to set filter.")
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
coreclr_args.verify(args,
"compile",
lambda unused: True,
"Method context not valid")
coreclr_args.verify(args,
"private_store",
lambda item: True,
"Specify private_store or set environment variable SUPERPMI_PRIVATE_STORE to use a private store.",
modify_arg=lambda arg: os.environ["SUPERPMI_PRIVATE_STORE"].split(";") if arg is None and "SUPERPMI_PRIVATE_STORE" in os.environ else arg)
if coreclr_args.mode == "collect":
verify_target_args()
verify_superpmi_common_args()
coreclr_args.verify(args,
"jit_name", # The replay code checks this, so make sure it's set
lambda unused: True,
"Unable to set jit_name.")
coreclr_args.verify(args,
"altjit", # The replay code checks this, so make sure it's set
lambda unused: True,
"Unable to set altjit.")
coreclr_args.verify(args,
"jitoption", # The replay code checks this, so make sure it's set
lambda unused: True,
"Unable to set jitoption")
coreclr_args.verify(args,
"compile", # The replay code checks this, so make sure it's set
lambda unused: True,
"Method context not valid")
coreclr_args.verify(args,
"collection_command",
lambda unused: True,
"Unable to set collection_command.")
coreclr_args.verify(args,
"collection_args",
lambda unused: True,
"Unable to set collection_args",
modify_arg=lambda collection_args: collection_args.split(" ") if collection_args is not None else [])
coreclr_args.verify(args,
"pmi",
lambda unused: True,
"Unable to set pmi")
coreclr_args.verify(args,
"crossgen2",
lambda unused: True,
"Unable to set crossgen2")
coreclr_args.verify(args,
"assemblies",
lambda unused: True,
"Unable to set assemblies",
modify_arg=lambda items: [item for item in items if os.path.isdir(item) or os.path.isfile(item)])
coreclr_args.verify(args,
"exclude",
lambda unused: True,
"Unable to set exclude")
coreclr_args.verify(args,
"pmi_location",
lambda unused: True,
"Unable to set pmi_location")
coreclr_args.verify(args,
"output_mch_path",
lambda output_mch_path: output_mch_path is None or (not os.path.isdir(os.path.abspath(output_mch_path)) and not os.path.isfile(os.path.abspath(output_mch_path))),
"Invalid output_mch_path \"{}\"; is it an existing directory or file?".format,
modify_arg=lambda output_mch_path: None if output_mch_path is None else os.path.abspath(output_mch_path))
coreclr_args.verify(args,
"merge_mch_files",
lambda unused: True,
"Unable to set merge_mch_files.")
coreclr_args.verify(args,
"mch_files",
lambda items: items is None or len(items) > 0,
"Unable to set mch_files.")
coreclr_args.verify(args,
"skip_collect_mc_files",
lambda unused: True,
"Unable to set skip_collect_mc_files")
coreclr_args.verify(args,
"temp_dir",
lambda unused: True,
"Unable to set temp_dir.")
coreclr_args.verify(args,
"skip_collection_step",
lambda unused: True,
"Unable to set skip_collection_step.")
coreclr_args.verify(args,
"skip_merge_step",
lambda unused: True,
"Unable to set skip_merge_step.")
coreclr_args.verify(args,
"skip_clean_and_verify_step",
lambda unused: True,
"Unable to set skip_clean_and_verify_step.")
coreclr_args.verify(args,
"use_zapdisable",
lambda unused: True,
"Unable to set use_zapdisable")
coreclr_args.verify(args,
"tiered_compilation",
lambda unused: True,
"Unable to set tiered_compilation")
coreclr_args.verify(args,
"pmi_path",
lambda unused: True,
"Unable to set pmi_path")
if (args.collection_command is None) and (args.pmi is False) and (args.crossgen2 is False):
print("Either a collection command or `--pmi` or `--crossgen2` must be specified")
sys.exit(1)
if (args.collection_command is not None) and (len(args.assemblies) > 0):
print("Don't specify `-assemblies` if a collection command is given")
sys.exit(1)
if (args.collection_command is not None) and (len(args.exclude) > 0):
print("Don't specify `-exclude` if a collection command is given")
sys.exit(1)
if ((args.pmi is True) or (args.crossgen2 is True)) and (len(args.assemblies) == 0):
print("Specify `-assemblies` if `--pmi` or `--crossgen2` is given")
sys.exit(1)
if not args.pmi:
if args.pmi_path is not None:
logging.warning("Warning: -pmi_path is set but --pmi is not.")
if args.pmi_location is not None:
logging.warning("Warning: -pmi_location is set but --pmi is not.")
if args.collection_command is None and args.merge_mch_files is not True:
assert args.collection_args is None
assert (args.pmi is True) or (args.crossgen2 is True)
assert len(args.assemblies) > 0
if coreclr_args.merge_mch_files:
assert len(coreclr_args.mch_files) > 0
coreclr_args.skip_collection_step = True
if coreclr_args.crossgen2:
# Can we find crossgen2?
crossgen2_tool_name = "crossgen2.dll"
crossgen2_tool_path = os.path.abspath(os.path.join(coreclr_args.core_root, "crossgen2", crossgen2_tool_name))
if not os.path.exists(crossgen2_tool_path):
print("`--crossgen2` is specified, but couldn't find " + crossgen2_tool_path + ". (Is it built?)")
sys.exit(1)
# Which dotnet will we use to run it?
dotnet_script_name = "dotnet.cmd" if platform.system() == "Windows" else "dotnet.sh"
dotnet_tool_path = os.path.abspath(os.path.join(coreclr_args.runtime_repo_location, dotnet_script_name))
if not os.path.exists(dotnet_tool_path):
dotnet_tool_name = determine_dotnet_tool_name(coreclr_args)
dotnet_tool_path = find_tool(coreclr_args, dotnet_tool_name, search_core_root=False, search_product_location=False, search_path=True, throw_on_not_found=False) # Only search path
coreclr_args.crossgen2_tool_path = crossgen2_tool_path
coreclr_args.dotnet_tool_path = dotnet_tool_path
logging.debug("Using crossgen2 tool %s", coreclr_args.crossgen2_tool_path)
if coreclr_args.dotnet_tool_path is not None:
logging.debug("Using dotnet tool %s", coreclr_args.dotnet_tool_path)
if coreclr_args.temp_dir is not None:
coreclr_args.temp_dir = os.path.abspath(coreclr_args.temp_dir)
logging.debug("Using temp_dir %s", coreclr_args.temp_dir)
if coreclr_args.collection_command is not None:
if os.path.isfile(coreclr_args.collection_command):
coreclr_args.collection_command = os.path.abspath(coreclr_args.collection_command)
else:
# Look on path and in Core_Root. Searching Core_Root is useful so you can just specify "corerun.exe" as the collection command in it can be found.
collection_tool_path = find_tool(coreclr_args, coreclr_args.collection_command, search_core_root=True, search_product_location=False, search_path=True, throw_on_not_found=False)
if collection_tool_path is None:
print("Couldn't find collection command \"{}\"".format(coreclr_args.collection_command))
sys.exit(1)
coreclr_args.collection_command = collection_tool_path
logging.info("Using collection command from PATH: \"%s\"", coreclr_args.collection_command)
elif coreclr_args.mode == "replay":
verify_target_args()
verify_superpmi_common_args()
verify_replay_common_args()
coreclr_args.verify(args,
"jit_path",
os.path.isfile,
"Error: JIT not found at jit_path {}".format,
modify_arg=setup_jit_path_arg)
coreclr_args.verify(args,
"jitoption",
lambda unused: True,
"Unable to set jitoption")
jit_in_product_location = False
if coreclr_args.product_location.lower() in coreclr_args.jit_path.lower():
jit_in_product_location = True
determined_arch = None
determined_build_type = None
if jit_in_product_location:
# Get os/arch/flavor directory, e.g. split "F:\gh\runtime\artifacts\bin\coreclr\windows.x64.Checked" with "F:\gh\runtime\artifacts\bin\coreclr"
# yielding
# [0]: ""
# [1]: "\windows.x64.Checked"
standard_location_split = os.path.dirname(coreclr_args.jit_path).split(os.path.dirname(coreclr_args.product_location))
assert coreclr_args.host_os in standard_location_split[1]
# Get arch/flavor. Remove leading slash.
specialized_path = standard_location_split[1].split(os.path.sep)[1]
# Split components: "windows.x64.Checked" into:
# [0]: "windows"
# [1]: "x64"
# [2]: "Checked"
determined_split = specialized_path.split(".")
determined_arch = determined_split[1]
determined_build_type = determined_split[2]
# Make a more intelligent decision about the arch and build type
# based on the path of the jit passed
if jit_in_product_location and coreclr_args.build_type not in coreclr_args.jit_path:
coreclr_args.verify(determined_arch.lower(),
"arch",
lambda unused: True,
"Unable to set arch")
coreclr_args.verify(determined_build_type,
"build_type",
coreclr_args.check_build_type,
"Invalid build_type")
elif coreclr_args.mode == "asmdiffs":
verify_target_args()
verify_superpmi_common_args()
verify_replay_common_args()
coreclr_args.verify(args,
"base_jit_path",
lambda unused: True,
"Unable to set base_jit_path")
coreclr_args.verify(args,
"diff_jit_path",
os.path.isfile,
"Error: JIT not found at diff_jit_path {}".format,
modify_arg=setup_jit_path_arg)
coreclr_args.verify(args,
"git_hash",
lambda unused: True,
"Unable to set git_hash")
coreclr_args.verify(args,
"base_git_hash",
lambda unused: True,
"Unable to set base_git_hash")
coreclr_args.verify(args,
"gcinfo",
lambda unused: True,
"Unable to set gcinfo.")
coreclr_args.verify(args,
"debuginfo",
lambda unused: True,
"Unable to set debuginfo.")
coreclr_args.verify(args,
"diff_jit_dump",
lambda unused: True,
"Unable to set diff_jit_dump.")
coreclr_args.verify(args,
"base_jit_option",
lambda unused: True,
"Unable to set base_jit_option.")
coreclr_args.verify(args,
"diff_jit_option",
lambda unused: True,
"Unable to set diff_jit_option.")
coreclr_args.verify(args,
"tag",
lambda unused: True,
"Unable to set tag.",
modify_arg=lambda arg: make_safe_filename(arg) if arg is not None else arg)
coreclr_args.verify(args,
"metrics",
lambda unused: True,
"Unable to set metrics.")
coreclr_args.verify(args,
"retainOnlyTopFiles",
lambda unused: True,
"Unable to set retainOnlyTopFiles.")
coreclr_args.verify(args,
"diff_with_release",
lambda unused: True,
"Unable to set diff_with_release.")
process_base_jit_path_arg(coreclr_args)
jit_in_product_location = False
if coreclr_args.product_location.lower() in coreclr_args.base_jit_path.lower():
jit_in_product_location = True
determined_arch = None
determined_build_type = None
if jit_in_product_location:
# Get os/arch/flavor directory, e.g. split "F:\gh\runtime\artifacts\bin\coreclr\windows.x64.Checked" with "F:\gh\runtime\artifacts\bin\coreclr"
# yielding
# [0]: ""
# [1]: "\windows.x64.Checked"
standard_location_split = os.path.dirname(coreclr_args.base_jit_path).split(os.path.dirname(coreclr_args.product_location))
assert coreclr_args.host_os in standard_location_split[1]
# Get arch/flavor. Remove leading slash.
specialized_path = standard_location_split[1].split(os.path.sep)[1]
# Split components: "windows.x64.Checked" into:
# [0]: "windows"
# [1]: "x64"
# [2]: "Checked"
determined_split = specialized_path.split(".")
determined_arch = determined_split[1]
determined_build_type = determined_split[2]
# Make a more intelligent decision about the arch and build type
# based on the path of the jit passed
if jit_in_product_location and coreclr_args.build_type not in coreclr_args.base_jit_path:
coreclr_args.verify(determined_build_type,
"build_type",
coreclr_args.check_build_type,
"Invalid build_type")
if jit_in_product_location and coreclr_args.arch not in coreclr_args.base_jit_path:
coreclr_args.verify(determined_arch.lower(),
"arch",
lambda unused: True,
"Unable to set arch")
coreclr_args.verify(determine_coredis_tools(coreclr_args),
"coredistools_location",
os.path.isfile,
"Unable to find coredistools.")
elif coreclr_args.mode == "upload":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"az_storage_key",
lambda item: item is not None,
"Specify az_storage_key or set environment variable CLRJIT_AZ_KEY to the key to use.",
modify_arg=lambda arg: os.environ["CLRJIT_AZ_KEY"] if arg is None and "CLRJIT_AZ_KEY" in os.environ else arg)
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
elif coreclr_args.mode == "upload-private":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
coreclr_args.verify(args,
"private_store",
lambda unused: True,
"Unable to set private_store")
if not os.path.isdir(coreclr_args.private_store):
print("Error: private store directory '" + coreclr_args.private_store + "' not found.")
sys.exit(1)
# Safety measure: don't allow CLRJIT_AZ_KEY to be set if we are uploading to a private store.
# Note that this should be safe anyway, since we're publishing something private, not public.
if "CLRJIT_AZ_KEY" in os.environ:
print("Error: environment variable CLRJIT_AZ_KEY is set, but command is `upload-private`, not `upload`. That is not allowed.")
sys.exit(1)
elif coreclr_args.mode == "download":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"force_download",
lambda unused: True,
"Unable to set force_download")
coreclr_args.verify(args,
"filter",
lambda unused: True,
"Unable to set filter.")
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
coreclr_args.verify(args,
"private_store",
lambda item: True,
"Specify private_store or set environment variable SUPERPMI_PRIVATE_STORE to use a private store.",
modify_arg=lambda arg: os.environ["SUPERPMI_PRIVATE_STORE"].split(";") if arg is None and "SUPERPMI_PRIVATE_STORE" in os.environ else arg)
elif coreclr_args.mode == "list-collections":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"all",
lambda unused: True,
"Unable to set all")
coreclr_args.verify(args,
"local",
lambda unused: True,
"Unable to set local")
elif coreclr_args.mode == "merge-mch":
coreclr_args.verify(args,
"output_mch_path",
lambda output_mch_path: not os.path.isdir(os.path.abspath(output_mch_path)) and not os.path.isfile(os.path.abspath(output_mch_path)),
"Invalid output_mch_path \"{}\"; is it an existing directory or file?".format,
modify_arg=lambda output_mch_path: os.path.abspath(output_mch_path))
coreclr_args.verify(args,
"pattern",
lambda unused: True,
"Unable to set pattern")
if coreclr_args.mode == "replay" or coreclr_args.mode == "asmdiffs" or coreclr_args.mode == "download":
if hasattr(coreclr_args, "private_store") and coreclr_args.private_store is not None:
logging.info("Using private stores:")
for path in coreclr_args.private_store:
logging.info(" %s", path)
return coreclr_args
################################################################################
# main
################################################################################
def main(args):
""" Main method
"""
# await/async requires python >= 3.7
if sys.version_info.major < 3 and sys.version_info.minor < 7:
print("Error, language features require the latest python version.")
print("Please install python 3.7 or greater")
return 1
# Parse the arguments.
coreclr_args = setup_args(args)
#
# Run the selected command
#
success = True
if coreclr_args.mode == "collect":
# Start a new SuperPMI Collection.
begin_time = datetime.datetime.now()
logging.info("SuperPMI collect")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
collection = SuperPMICollect(coreclr_args)
success = collection.collect()
if success and coreclr_args.output_mch_path is not None:
logging.info("Generated MCH file: %s", coreclr_args.output_mch_path)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "replay":
# Start a new SuperPMI Replay
local_mch_paths = process_mch_files_arg(coreclr_args)
mch_files = get_mch_files_for_replay(local_mch_paths, coreclr_args.filter)
if mch_files is None:
return 1
begin_time = datetime.datetime.now()
logging.info("SuperPMI replay")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
jit_path = coreclr_args.jit_path
logging.info("JIT Path: %s", jit_path)
logging.info("Using MCH files:")
for mch_file in mch_files:
logging.info(" %s", mch_file)
replay = SuperPMIReplay(coreclr_args, mch_files, jit_path)
success = replay.replay()
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "asmdiffs":
# Start a new SuperPMI Replay with AsmDiffs
local_mch_paths = process_mch_files_arg(coreclr_args)
mch_files = get_mch_files_for_replay(local_mch_paths, coreclr_args.filter)
if mch_files is None:
return 1
begin_time = datetime.datetime.now()
logging.info("SuperPMI ASM diffs")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
base_jit_path = coreclr_args.base_jit_path
diff_jit_path = coreclr_args.diff_jit_path
if coreclr_args.diff_with_release:
logging.info("Diff between Checked and Release.")
logging.info("Base JIT Path: %s", base_jit_path)
logging.info("Diff JIT Path: %s", diff_jit_path)
logging.info("Using MCH files:")
for mch_file in mch_files:
logging.info(" %s", mch_file)
asm_diffs = SuperPMIReplayAsmDiffs(coreclr_args, mch_files, base_jit_path, diff_jit_path)
success = asm_diffs.replay_with_asm_diffs()
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "upload":
begin_time = datetime.datetime.now()
logging.info("SuperPMI upload")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
upload_mch(coreclr_args)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "upload-private":
begin_time = datetime.datetime.now()
logging.info("SuperPMI upload-private")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
upload_private_mch(coreclr_args)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "download":
begin_time = datetime.datetime.now()
logging.info("SuperPMI download")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
# Processing the arg does the download and caching
process_mch_files_arg(coreclr_args)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "list-collections":
if coreclr_args.local:
list_collections_local_command(coreclr_args)
else:
list_collections_command(coreclr_args)
elif coreclr_args.mode == "merge-mch":
success = merge_mch(coreclr_args)
else:
raise NotImplementedError(coreclr_args.mode)
return 0 if success else 1
################################################################################
# __main__
################################################################################
if __name__ == "__main__":
args = parser.parse_args()
sys.exit(main(args))
| #!/usr/bin/env python3
#
## Licensed to the .NET Foundation under one or more agreements.
## The .NET Foundation licenses this file to you under the MIT license.
#
##
# Title : superpmi.py
#
# Notes:
#
# Script to orchestrate SuperPMI collections, replays, asm diffs, and SuperPMI
# data management. Note that some of the options provided by this script are
# also provided in our SuperPMI collect test. The test can be found here:
# https://github.com/dotnet/runtime/blob/main/src/tests/JIT/superpmi/superpmicollect.cs.
#
################################################################################
################################################################################
import argparse
import asyncio
import csv
import datetime
import locale
import logging
import os
import multiprocessing
import platform
import shutil
import subprocess
import sys
import tempfile
import queue
import re
import urllib
import urllib.request
import zipfile
from coreclr_arguments import *
from jitutil import TempDir, ChangeDir, remove_prefix, is_zero_length_file, is_nonzero_length_file, \
make_safe_filename, find_file, download_one_url, download_files, report_azure_error, \
require_azure_storage_libraries, authenticate_using_azure, \
create_unique_directory_name, create_unique_file_name, get_files_from_path
locale.setlocale(locale.LC_ALL, '') # Use '' for auto, or force e.g. to 'en_US.UTF-8'
################################################################################
# Azure Storage information
################################################################################
# We store several things in Azure Blob Storage:
# 1. SuperPMI collections
# 2. A copy of PMI.dll, as a fallback in case we need it but can't find it locally,
# so we don't need to download dotnet/jitutils and build it ourselves.
# (Note: if PMI is ever published as a package, we could just download that instead.)
# 3. A copy of coredistools. If, when doing asm diffs, a copy of the coredistools
# library is not found in the Core_Root directory, we download a cached copy.
# Note: it would be better to download and use the official coredistools
# NuGet packages (like the setup-stress-dependencies scripts do).
az_account_name = "clrjit2"
az_superpmi_container_name = "superpmi"
az_collections_root_folder = "collections"
az_blob_storage_account_uri = "https://" + az_account_name + ".blob.core.windows.net/"
az_blob_storage_superpmi_container_uri = az_blob_storage_account_uri + az_superpmi_container_name
az_jitrollingbuild_container_name = "jitrollingbuild"
az_builds_root_folder = "builds"
az_blob_storage_jitrollingbuild_container_uri = az_blob_storage_account_uri + az_jitrollingbuild_container_name
################################################################################
# Argument Parser
################################################################################
description = """\
Script to run SuperPMI replay, ASM diffs, and collections.
The script also manages the Azure store of pre-created SuperPMI collection files.
Help for each individual command can be shown by asking for help on the individual command, for example
`superpmi.py collect --help`.
"""
collect_description = """\
Automate a SuperPMI collection.
"""
replay_description = """\
Run SuperPMI replay on one or more collections.
"""
asm_diff_description = """\
Run SuperPMI ASM diffs on one or more collections.
"""
upload_description = """\
Upload a collection to SuperPMI Azure storage.
"""
upload_private_description = """\
Upload a collection to a local file system path.
"""
download_description = """\
Download collections from SuperPMI Azure storage.
Normally, collections are automatically downloaded to a local cache
as part of doing a 'replay' operation. This command allows you to
download without doing a 'replay'.
"""
list_collections_description = """\
List the existing collections in the SuperPMI Azure storage.
"""
merge_mch_description = """\
Utility command to merge MCH files. This is a thin wrapper around
'mcs -merge -recursive -dedup -thin' followed by 'mcs -toc'.
"""
spmi_log_file_help = "Write SuperPMI tool output to a log file. Requires --sequential."
jit_ee_version_help = """\
JIT/EE interface version (the JITEEVersionIdentifier GUID from jiteeversionguid.h in the format
'a5eec3a4-4176-43a7-8c2b-a05b551d4f49'). Default: if the mcs tool is found, assume it
was built with the same JIT/EE version as the JIT we are using, and run "mcs -printJITEEVersion"
to get that version. Otherwise, use "unknown-jit-ee-version".
"""
host_os_help = "OS (windows, OSX, Linux). Default: current OS."
arch_help = "Architecture (x64, x86, arm, arm64). Default: current architecture."
target_os_help = "Target OS, for use with cross-compilation JIT (windows, OSX, Linux). Default: current OS."
target_arch_help = "Target architecture, for use with cross-compilation JIT (x64, x86, arm, arm64). Passed as asm diffs target to SuperPMI. Default: current architecture."
mch_arch_help = "Architecture of MCH files to download, used for cross-compilation altjit (x64, x86, arm, arm64). Default: target architecture."
build_type_help = "Build type (Debug, Checked, Release). Default: Checked."
core_root_help = "Core_Root location. Optional; it will be deduced if possible from runtime repo root."
log_level_help = """\
Console log level (output verbosity level).
One of: critical, error, warning, info, debug.
Output from this level and higher is output to the console.
All output is always written to the log file.
Default: warning.
"""
log_file_help = "Output log file path. If not specified, a default location is chosen."
product_location_help = "Built Product directory location. Optional; it will be deduced if possible from runtime repo root."
spmi_location_help = """\
Directory in which to put SuperPMI files, such as downloaded MCH files, asm diffs, and repro .MC files.
Optional. Default is 'spmi' within the repo 'artifacts' directory.
If 'SUPERPMI_CACHE_DIRECTORY' environment variable is set to a path, it will use that directory.
"""
superpmi_collect_help = """\
Command to run SuperPMI collect over. Note that there cannot be any dotnet CLI commands
invoked inside this command, as they will fail due to the shim JIT being set.
"""
replay_mch_files_help = """\
MCH files, or directories containing MCH files, to use for replay. For each directory passed,
all recursively found MCH files in that directory root will be used. Files may either be a path
on disk or a URI to a MCH file to download. Use these MCH files instead of a collection from
the Azure Storage MCH file store. UNC paths will be downloaded and cached locally.
"""
private_store_help = """\
Specify the path to one or more private SuperPMI data stores. Default: use the semicolon separated
value of the SUPERPMI_PRIVATE_STORE environment variable, if it exists.
"""
filter_help = """\
Specify one or more filters to restrict the set of MCH files to download or use from the local cache.
A filter is a simple case-insensitive substring search against the MCH file path. If multiple filter
strings are specified, any maching path is accepted (it is "or", not "and").
"""
upload_mch_files_help = """\
MCH files, or directories containing MCH files, to upload. For each directory passed,
all recursively found MCH files in that directory root will be uploaded. MCT files are also uploaded.
"""
skip_cleanup_help = "Skip intermediate file removal."
break_on_assert_help = "Enable break on assert during SuperPMI replay."
break_on_error_help = "Enable break on error during SuperPMI replay."
force_download_help = """\
If downloading an MCH file, always download it. Don't use an existing file in the download location.
Normally, we don't download if the target directory exists. This forces download even if the
target directory already exists.
"""
download_no_progress_help = """\
If specified, then download progress will not be shown.
"""
merge_mch_pattern_help = """\
A pattern to describing files to merge, passed through directly to `mcs -merge`.
Acceptable patterns include `*.mch`, `file*.mch`, and `c:\\my\\directory\\*.mch`.
Only the final component can contain a `*` wildcard; the directory path cannot.
"""
error_limit_help = """
Specify the failure `limit` after which replay and asmdiffs will exit if it sees
more than `limit` failures.
"""
compile_help = """\
Compile only specified method contexts, e.g., `-compile 20,25`. This is passed directly to the superpmi.exe `-compile` argument. See `superpmi.exe -?` for full documentation about allowed formats.
"""
# Start of parser object creation.
parser = argparse.ArgumentParser(description=description)
subparsers = parser.add_subparsers(dest='mode', help="Command to invoke")
subparsers.required = True
# Create a parser for core_root. It can be specified directly,
# or computed from the script location and host OS, architecture, and build type:
#
# script location implies repo root,
# implies artifacts location,
# implies test location from host OS, architecture, build type,
# implies Core_Root path
#
# You normally use the default host OS, but for Azure Storage upload and other
# operations, it can be useful to allow it to be specified.
core_root_parser = argparse.ArgumentParser(add_help=False)
core_root_parser.add_argument("-arch", help=arch_help)
core_root_parser.add_argument("-build_type", default="Checked", help=build_type_help)
core_root_parser.add_argument("-host_os", help=host_os_help)
core_root_parser.add_argument("-core_root", help=core_root_help)
core_root_parser.add_argument("-log_level", help=log_level_help)
core_root_parser.add_argument("-log_file", help=log_file_help)
core_root_parser.add_argument("-spmi_location", help=spmi_location_help)
core_root_parser.add_argument("--no_progress", action="store_true", help=download_no_progress_help)
# Create a set of arguments common to target specification. Used for collect, replay, asmdiffs, upload, upload-private, download, list-collections.
target_parser = argparse.ArgumentParser(add_help=False)
target_parser.add_argument("-target_arch", help=target_arch_help)
target_parser.add_argument("-target_os", help=target_os_help)
target_parser.add_argument("-mch_arch", help=mch_arch_help)
# Create a set of arguments common to all commands that run SuperPMI.
superpmi_common_parser = argparse.ArgumentParser(add_help=False)
superpmi_common_parser.add_argument("--break_on_assert", action="store_true", help=break_on_assert_help)
superpmi_common_parser.add_argument("--break_on_error", action="store_true", help=break_on_error_help)
superpmi_common_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
superpmi_common_parser.add_argument("--sequential", action="store_true", help="Run SuperPMI in sequential mode. Default is to run in parallel for faster runs.")
superpmi_common_parser.add_argument("-spmi_log_file", help=spmi_log_file_help)
superpmi_common_parser.add_argument("-jit_name", help="Specify the filename of the jit to use, e.g., 'clrjit_universal_arm64_x64.dll'. Default is clrjit.dll/libclrjit.so")
superpmi_common_parser.add_argument("--altjit", action="store_true", help="Set the altjit variables on replay.")
superpmi_common_parser.add_argument("-error_limit", help=error_limit_help)
# subparser for collect
collect_parser = subparsers.add_parser("collect", description=collect_description, parents=[core_root_parser, target_parser, superpmi_common_parser])
# Add required arguments
collect_parser.add_argument("collection_command", nargs='?', help=superpmi_collect_help)
collect_parser.add_argument("collection_args", nargs='?', help="Arguments to pass to the SuperPMI collect command. This is a single string; quote it if necessary if the arguments contain spaces.")
collect_parser.add_argument("--pmi", action="store_true", help="Run PMI on a set of directories or assemblies.")
collect_parser.add_argument("--crossgen2", action="store_true", help="Run crossgen2 on a set of directories or assemblies.")
collect_parser.add_argument("-assemblies", dest="assemblies", nargs="+", default=[], help="A list of managed dlls or directories to recursively use while collecting with PMI or crossgen2. Required if --pmi or --crossgen2 is specified.")
collect_parser.add_argument("-exclude", dest="exclude", nargs="+", default=[], help="A list of files or directories to exclude from the files and directories specified by `-assemblies`.")
collect_parser.add_argument("-pmi_location", help="Path to pmi.dll to use during PMI run. Optional; pmi.dll will be downloaded from Azure Storage if necessary.")
collect_parser.add_argument("-pmi_path", metavar="PMIPATH_DIR", nargs='*', help="Specify a \"load path\" where assemblies can be found during pmi.dll run. Optional; the argument values are translated to PMIPATH environment variable.")
collect_parser.add_argument("-output_mch_path", help="Location to place the final MCH file.")
collect_parser.add_argument("--merge_mch_files", action="store_true", help="Merge multiple MCH files. Use the -mch_files flag to pass a list of MCH files to merge.")
collect_parser.add_argument("-mch_files", metavar="MCH_FILE", nargs='+', help="Pass a sequence of MCH files which will be merged. Required by --merge_mch_files.")
collect_parser.add_argument("--use_zapdisable", action="store_true", help="Sets COMPlus_ZapDisable=1 and COMPlus_ReadyToRun=0 when doing collection to cause NGEN/ReadyToRun images to not be used, and thus causes JIT compilation and SuperPMI collection of these methods.")
collect_parser.add_argument("--tiered_compilation", action="store_true", help="Sets COMPlus_TieredCompilation=1 when doing collections.")
# Allow for continuing a collection in progress
collect_parser.add_argument("-temp_dir", help="Specify an existing temporary directory to use. Useful if continuing an ongoing collection process, or forcing a temporary directory to a particular hard drive. Optional; default is to create a temporary directory in the usual TEMP location.")
collect_parser.add_argument("--skip_collection_step", action="store_true", help="Do not run the collection step.")
collect_parser.add_argument("--skip_merge_step", action="store_true", help="Do not run the merge step.")
collect_parser.add_argument("--skip_clean_and_verify_step", action="store_true", help="Do not run the collection cleaning, TOC creation, and verifying step.")
collect_parser.add_argument("--skip_collect_mc_files", action="store_true", help="Do not collect .MC files")
# Create a set of arguments common to all SuperPMI replay commands, namely basic replay and ASM diffs.
# Note that SuperPMI collection also runs a replay to verify the final MCH file, so many arguments
# common to replay are also applicable to that replay as well.
replay_common_parser = argparse.ArgumentParser(add_help=False)
replay_common_parser.add_argument("-mch_files", metavar="MCH_FILE", nargs='+', help=replay_mch_files_help)
replay_common_parser.add_argument("-filter", nargs='+', help=filter_help)
replay_common_parser.add_argument("-product_location", help=product_location_help)
replay_common_parser.add_argument("--force_download", action="store_true", help=force_download_help)
replay_common_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
replay_common_parser.add_argument("-private_store", action="append", help=private_store_help)
replay_common_parser.add_argument("-compile", "-c", help=compile_help)
# subparser for replay
replay_parser = subparsers.add_parser("replay", description=replay_description, parents=[core_root_parser, target_parser, superpmi_common_parser, replay_common_parser])
replay_parser.add_argument("-jit_path", help="Path to clrjit. Defaults to Core_Root JIT.")
replay_parser.add_argument("-jitoption", action="append", help="Pass option through to the jit. Format is key=value, where key is the option name without leading COMPlus_")
# subparser for asmdiffs
asm_diff_parser = subparsers.add_parser("asmdiffs", description=asm_diff_description, parents=[core_root_parser, target_parser, superpmi_common_parser, replay_common_parser])
asm_diff_parser.add_argument("-base_jit_path", help="Path to baseline clrjit. Defaults to baseline JIT from rolling build, by computing baseline git hash.")
asm_diff_parser.add_argument("-diff_jit_path", help="Path to diff clrjit. Defaults to Core_Root JIT.")
asm_diff_parser.add_argument("-git_hash", help="Use this git hash as the current hash for use to find a baseline JIT. Defaults to current git hash of source tree.")
asm_diff_parser.add_argument("-base_git_hash", help="Use this git hash as the baseline JIT hash. Default: search for the baseline hash.")
asm_diff_parser.add_argument("--diff_jit_dump", action="store_true", help="Generate JitDump output for diffs. Default: only generate asm, not JitDump.")
asm_diff_parser.add_argument("--gcinfo", action="store_true", help="Include GC info in disassembly (sets COMPlus_JitGCDump/COMPlus_NgenGCDump; requires instructions to be prefixed by offsets).")
asm_diff_parser.add_argument("--debuginfo", action="store_true", help="Include debug info after disassembly (sets COMPlus_JitDebugDump/COMPlus_NgenDebugDump).")
asm_diff_parser.add_argument("-base_jit_option", action="append", help="Option to pass to the baseline JIT. Format is key=value, where key is the option name without leading COMPlus_...")
asm_diff_parser.add_argument("-diff_jit_option", action="append", help="Option to pass to the diff JIT. Format is key=value, where key is the option name without leading COMPlus_...")
asm_diff_parser.add_argument("-tag", help="Specify a word to add to the directory name where the asm diffs will be placed")
asm_diff_parser.add_argument("-metrics", action="append", help="Metrics option to pass to jit-analyze. Can be specified multiple times, or pass comma-separated values.")
asm_diff_parser.add_argument("-retainOnlyTopFiles", action="store_true", help="Retain only top .dasm files with largest improvements or regressions and delete remaining files.")
asm_diff_parser.add_argument("--diff_with_release", action="store_true", help="Specify if this is asmdiff using release binaries.")
# subparser for upload
upload_parser = subparsers.add_parser("upload", description=upload_description, parents=[core_root_parser, target_parser])
upload_parser.add_argument("-mch_files", metavar="MCH_FILE", required=True, nargs='+', help=upload_mch_files_help)
upload_parser.add_argument("-az_storage_key", help="Key for the clrjit Azure Storage location. Default: use the value of the CLRJIT_AZ_KEY environment variable.")
upload_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
upload_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
# subparser for upload-private
upload_private_parser = subparsers.add_parser("upload-private", description=upload_private_description, parents=[core_root_parser, target_parser])
upload_private_parser.add_argument("-mch_files", metavar="MCH_FILE", required=True, nargs='+', help=upload_mch_files_help)
upload_private_parser.add_argument("-private_store", required=True, help="Target directory root of the private store in which to place the files.")
upload_private_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
upload_private_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
# subparser for download
download_parser = subparsers.add_parser("download", description=download_description, parents=[core_root_parser, target_parser])
download_parser.add_argument("-filter", nargs='+', help=filter_help)
download_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
download_parser.add_argument("--skip_cleanup", action="store_true", help=skip_cleanup_help)
download_parser.add_argument("--force_download", action="store_true", help=force_download_help)
download_parser.add_argument("-mch_files", metavar="MCH_FILE", nargs='+', help=replay_mch_files_help)
download_parser.add_argument("-private_store", action="append", help=private_store_help)
# subparser for list-collections
list_collections_parser = subparsers.add_parser("list-collections", description=list_collections_description, parents=[core_root_parser, target_parser])
list_collections_parser.add_argument("-jit_ee_version", help=jit_ee_version_help)
list_collections_parser.add_argument("--all", action="store_true", help="Show all MCH files, not just those for the specified (or default) JIT-EE version, OS, and architecture")
list_collections_parser.add_argument("--local", action="store_true", help="Show the local MCH download cache")
# subparser for merge-mch
merge_mch_parser = subparsers.add_parser("merge-mch", description=merge_mch_description, parents=[core_root_parser])
merge_mch_parser.add_argument("-output_mch_path", required=True, help="Location to place the final MCH file.")
merge_mch_parser.add_argument("-pattern", required=True, help=merge_mch_pattern_help)
################################################################################
# Helper functions
################################################################################
def run_and_log(command, log_level=logging.DEBUG):
""" Return a command and log its output to the debug logger
Args:
command (list) : Command to run
log_level (int) : log level to use for logging output (but not the "Invoking" text)
Returns:
Process return code
"""
logging.log(log_level, "Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout_output, _ = proc.communicate()
for line in stdout_output.decode('utf-8', errors='replace').splitlines(): # There won't be any stderr output since it was piped to stdout
logging.log(log_level, line)
return proc.returncode
def write_file_to_log(filepath, log_level=logging.DEBUG):
""" Read the text of a file and write it to the logger. If the file doesn't exist, don't output anything.
Args:
filepath (string) : file to log
log_level (int) : log level to use for logging output
Returns:
Nothing
"""
if not os.path.exists(filepath):
return
logging.log(log_level, "============== Contents of %s", filepath)
with open(filepath) as file_handle:
lines = file_handle.readlines()
lines = [item.strip() for item in lines]
for line in lines:
logging.log(log_level, line)
logging.log(log_level, "============== End contents of %s", filepath)
# Functions to verify the OS and architecture. They take an instance of CoreclrArguments,
# which is used to find the list of legal OS and architectures
def check_host_os(coreclr_args, host_os):
return (host_os is not None) and (host_os in coreclr_args.valid_host_os)
def check_target_os(coreclr_args, target_os):
return (target_os is not None) and (target_os in coreclr_args.valid_host_os)
def check_arch(coreclr_args, arch):
return (arch is not None) and (arch in coreclr_args.valid_arches)
def check_target_arch(coreclr_args, target_arch):
return (target_arch is not None) and (target_arch in coreclr_args.valid_arches)
def check_mch_arch(coreclr_args, mch_arch):
return (mch_arch is not None) and (mch_arch in coreclr_args.valid_arches)
def create_artifacts_base_name(coreclr_args, mch_file):
""" Create an appropriate "base" name for use creating a directory name related to MCH file playback.
This will later be prepended by "asm." or "jitdump.", for example, and
create_unique_directory_name() should be called on the final name to ensure it is unique.
Use the MCH file base name as the main part of the directory name, removing
the trailing ".mch", if any.
If there is a tag specified (for asm diffs), prepend the tag.
Args:
coreclr_args : the parsed arguments
mch_file (str) : the MCH file name that is being replayed.
Returns:
A directory name to be used.
"""
artifacts_base_name = os.path.basename(mch_file)
if artifacts_base_name.lower().endswith(".mch"):
artifacts_base_name = artifacts_base_name[:-4]
if hasattr(coreclr_args, "tag") and coreclr_args.tag is not None:
artifacts_base_name = "{}.{}".format(coreclr_args.tag, artifacts_base_name)
return artifacts_base_name
def read_csv_metrics(path):
""" Read a metrics summary file produced by superpmi, and return the single row containing the information as a dictionary.
Args:
path (str) : path to .csv file
Returns:
A dictionary with each metric
"""
with open(path) as csv_file:
reader = csv.DictReader(csv_file)
for row in reader:
return row
return None
################################################################################
# Helper classes
################################################################################
class AsyncSubprocessHelper:
""" Class to help with async multiprocessing tasks.
"""
def __init__(self, items, subproc_count=multiprocessing.cpu_count(), verbose=False):
self.items = items
self.subproc_count = subproc_count
self.verbose = verbose
self.subproc_count_queue = None
if 'win32' in sys.platform:
# Windows specific event-loop policy & cmd
asyncio.set_event_loop(asyncio.ProactorEventLoop())
async def __get_item__(self, item, index, size, async_callback, *extra_args):
""" Wrapper to the async callback which will schedule based on the queue
"""
# Wait for the subproc_id queue to become free, meaning we have an available
# processor to run a task (specifically, we are below our maximum allowed
# parallelism). Then start running the sub process.
subproc_id = await self.subproc_count_queue.get()
print_prefix = ""
if self.verbose:
print_prefix = "[{}:{}]: ".format(index, size)
await async_callback(print_prefix, item, *extra_args)
# Add back to the queue, in case another process wants to run.
self.subproc_count_queue.put_nowait(subproc_id)
async def __run_to_completion__(self, async_callback, *extra_args):
""" async wrapper for run_to_completion
"""
# Create a queue with one entry for each of the threads we're
# going to allow. By default, this will be one entry per CPU.
# Using subproc_count_queue.get() will block when we're running
# a task on every CPU.
chunk_size = self.subproc_count
self.subproc_count_queue = asyncio.Queue(chunk_size)
for item in range(chunk_size):
self.subproc_count_queue.put_nowait(item)
# Create a 'tasks' list of async function calls, one for each item.
# When all these calls complete, we're done.
size = len(self.items)
count = 1
tasks = []
for item in self.items:
tasks.append(self.__get_item__(item, count, size, async_callback, *extra_args))
count += 1
# Inovke all the calls to __get_item__ concurrently and wait for them all to finish.
await asyncio.gather(*tasks)
def run_to_completion(self, async_callback, *extra_args):
""" Run until the item queue has been depleted
Notes:
Acts as a wrapper to abstract the async calls to
async_callback. Note that this will allow cpu_count
amount of running subprocesses. Each time the queue
is emptied, another process will start. Note that
the python code is single threaded, it will just
rely on async/await to start subprocesses at
subprocess_count
"""
reset_env = os.environ.copy()
loop = asyncio.get_event_loop()
loop.run_until_complete(self.__run_to_completion__(async_callback, *extra_args))
os.environ.clear()
os.environ.update(reset_env)
################################################################################
# SuperPMI Collect
################################################################################
class SuperPMICollect:
""" SuperPMI Collect class
Notes:
The object is responsible for setting up a SuperPMI collection given
the arguments passed into the script.
"""
def __init__(self, coreclr_args):
""" Constructor
Args:
coreclr_args (CoreclrArguments) : parsed args
"""
if coreclr_args.host_os == "OSX":
self.collection_shim_name = "libsuperpmi-shim-collector.dylib"
self.corerun_tool_name = "corerun"
elif coreclr_args.host_os == "Linux":
self.collection_shim_name = "libsuperpmi-shim-collector.so"
self.corerun_tool_name = "corerun"
elif coreclr_args.host_os == "windows":
self.collection_shim_name = "superpmi-shim-collector.dll"
self.corerun_tool_name = "corerun.exe"
else:
raise RuntimeError("Unsupported OS.")
self.jit_path = os.path.join(coreclr_args.core_root, determine_jit_name(coreclr_args))
self.superpmi_path = determine_superpmi_tool_path(coreclr_args)
self.mcs_path = determine_mcs_tool_path(coreclr_args)
self.core_root = coreclr_args.core_root
self.collection_command = coreclr_args.collection_command
self.collection_args = coreclr_args.collection_args
if coreclr_args.pmi:
self.pmi_location = determine_pmi_location(coreclr_args)
self.corerun = os.path.join(self.core_root, self.corerun_tool_name)
if coreclr_args.crossgen2:
self.corerun = os.path.join(self.core_root, self.corerun_tool_name)
if coreclr_args.dotnet_tool_path is None:
self.crossgen2_driver_tool = self.corerun
else:
self.crossgen2_driver_tool = coreclr_args.dotnet_tool_path
logging.debug("Using crossgen2 driver tool %s", self.crossgen2_driver_tool)
if coreclr_args.pmi or coreclr_args.crossgen2:
self.assemblies = coreclr_args.assemblies
self.exclude = coreclr_args.exclude
self.coreclr_args = coreclr_args
# Pathname for a temporary .MCL file used for noticing SuperPMI replay failures against base MCH.
self.base_fail_mcl_file = None
# The base .MCH file path
self.base_mch_file = None
# Final .MCH file path
self.final_mch_file = None
# The .TOC file path for the clean thin unique .MCH file
self.toc_file = None
self.temp_location = None
############################################################################
# Instance Methods
############################################################################
def collect(self):
""" Do the SuperPMI Collection.
"""
# Do a basic SuperPMI collect and validation:
# 1. Collect MC files by running a set of sample apps.
# 2. Create a merged thin unique MCH by using "mcs -merge -recursive -dedup -thin base.mch *.mc".
# 3. Create a clean MCH by running SuperPMI over the MCH, and using "mcs -strip" to filter
# out any failures (if any).
# 4. Create a TOC using "mcs -toc".
# 5. Verify the resulting MCH file is error-free when running SuperPMI against it with the
# same JIT used for collection.
#
# MCH files are big. If we don't need them anymore, clean them up right away to avoid
# running out of disk space in disk constrained situations.
passed = False
try:
with TempDir(self.coreclr_args.temp_dir, self.coreclr_args.skip_cleanup) as temp_location:
# Setup all of the temp locations
self.base_fail_mcl_file = os.path.join(temp_location, "basefail.mcl")
self.base_mch_file = os.path.join(temp_location, "base.mch")
self.temp_location = temp_location
if self.coreclr_args.output_mch_path is not None:
self.final_mch_file = os.path.abspath(self.coreclr_args.output_mch_path)
final_mch_dir = os.path.dirname(self.final_mch_file)
if not os.path.isdir(final_mch_dir):
os.makedirs(final_mch_dir)
else:
default_coreclr_bin_mch_location = os.path.join(self.coreclr_args.spmi_location, "mch", "{}.{}.{}".format(self.coreclr_args.host_os, self.coreclr_args.arch, self.coreclr_args.build_type))
if not os.path.isdir(default_coreclr_bin_mch_location):
os.makedirs(default_coreclr_bin_mch_location)
self.final_mch_file = os.path.abspath(os.path.join(default_coreclr_bin_mch_location, "{}.{}.{}.mch".format(self.coreclr_args.host_os, self.coreclr_args.arch, self.coreclr_args.build_type)))
self.toc_file = "{}.mct".format(self.final_mch_file)
# If we have passed temp_dir, then we have a few flags we need
# to check to see where we are in the collection process. Note that this
# functionality exists to help not lose progress during a SuperPMI collection.
# It is not unreasonable for the SuperPMI collection to take many hours
# therefore allow re-use of a collection in progress
if not self.coreclr_args.skip_collection_step:
self.__collect_mc_files__()
if not self.coreclr_args.skip_merge_step:
if not self.coreclr_args.merge_mch_files:
self.__merge_mc_files__()
else:
self.__merge_mch_files__()
if not self.coreclr_args.skip_clean_and_verify_step:
self.__create_clean_mch_file__()
self.__create_toc__()
self.__verify_final_mch__()
passed = True
except Exception as exception:
logging.critical(exception)
return passed
############################################################################
# Helper Methods
############################################################################
def __collect_mc_files__(self):
""" Do the actual SuperPMI collection for a command
Returns:
None
"""
if not self.coreclr_args.skip_collect_mc_files:
assert os.path.isdir(self.temp_location)
# Set environment variables. For crossgen2, we need to pass the COMPlus variables as arguments to the JIT using
# the `-codegenopt` argument.
env_copy = os.environ.copy()
root_env = {}
root_env["SuperPMIShimLogPath"] = self.temp_location
root_env["SuperPMIShimPath"] = self.jit_path
complus_env = {}
complus_env["EnableExtraSuperPmiQueries"] = "1"
if not self.coreclr_args.tiered_compilation:
complus_env["TieredCompilation"] = "0"
if self.coreclr_args.use_zapdisable:
complus_env["ZapDisable"] = "1"
complus_env["ReadyToRun"] = "0"
logging.debug("Starting collection.")
logging.debug("")
def set_and_report_env(env, root_env, complus_env = None):
for var, value in root_env.items():
env[var] = value
print_platform_specific_environment_vars(logging.DEBUG, self.coreclr_args, var, value)
if complus_env is not None:
for var, value in complus_env.items():
complus_var = "COMPlus_" + var
env[complus_var] = value
print_platform_specific_environment_vars(logging.DEBUG, self.coreclr_args, complus_var, value)
# If we need them, collect all the assemblies we're going to use for the collection(s).
# Remove the files matching the `-exclude` arguments (case-insensitive) from the list.
if self.coreclr_args.pmi or self.coreclr_args.crossgen2:
assemblies = []
for item in self.assemblies:
assemblies += get_files_from_path(item, match_func=lambda file: any(file.endswith(extension) for extension in [".dll", ".exe"]) and (self.exclude is None or not any(e.lower() in file.lower() for e in self.exclude)))
if len(assemblies) == 0:
logging.error("No assemblies found using `-assemblies` and `-exclude` arguments!")
else:
logging.debug("Using assemblies:")
for item in assemblies:
logging.debug(" %s", item)
logging.debug("") # add trailing empty line
################################################################################################ Do collection using given collection command (e.g., script)
if self.collection_command is not None:
logging.debug("Starting collection using command")
collection_command_env = env_copy.copy()
collection_complus_env = complus_env.copy()
collection_complus_env["JitName"] = self.collection_shim_name
set_and_report_env(collection_command_env, root_env, collection_complus_env)
logging.info("Collecting using command:")
logging.info(" %s %s", self.collection_command, " ".join(self.collection_args))
assert isinstance(self.collection_command, str)
assert isinstance(self.collection_args, list)
command = [self.collection_command, ] + self.collection_args
proc = subprocess.Popen(command, env=collection_command_env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout_output, _ = proc.communicate()
for line in stdout_output.decode('utf-8', errors='replace').splitlines(): # There won't be any stderr output since it was piped to stdout
logging.debug(line)
################################################################################################ end of "self.collection_command is not None"
################################################################################################ Do collection using PMI
if self.coreclr_args.pmi is True:
logging.debug("Starting collection using PMI")
async def run_pmi(print_prefix, assembly, self):
""" Run pmi over all dlls
"""
command = [self.corerun, self.pmi_location, "DRIVEALL", assembly]
command_string = " ".join(command)
logging.debug("%s%s", print_prefix, command_string)
# Save the stdout and stderr to files, so we can see if PMI wrote any interesting messages.
# Use the name of the assembly as the basename of the file. mkstemp() will ensure the file
# is unique.
root_output_filename = make_safe_filename("pmi_" + assembly + "_")
try:
stdout_file_handle, stdout_filepath = tempfile.mkstemp(suffix=".stdout", prefix=root_output_filename, dir=self.temp_location)
stderr_file_handle, stderr_filepath = tempfile.mkstemp(suffix=".stderr", prefix=root_output_filename, dir=self.temp_location)
proc = await asyncio.create_subprocess_shell(
command_string,
stdout=stdout_file_handle,
stderr=stderr_file_handle)
await proc.communicate()
os.close(stdout_file_handle)
os.close(stderr_file_handle)
# No need to keep zero-length files
if is_zero_length_file(stdout_filepath):
os.remove(stdout_filepath)
if is_zero_length_file(stderr_filepath):
os.remove(stderr_filepath)
return_code = proc.returncode
if return_code != 0:
logging.debug("'%s': Error return code: %s", command_string, return_code)
write_file_to_log(stdout_filepath, log_level=logging.DEBUG)
write_file_to_log(stderr_filepath, log_level=logging.DEBUG)
except OSError as ose:
if "[WinError 32] The process cannot access the file because it is being used by another " \
"process:" in format(ose):
logging.warning("Skipping file %s. Got error: %s", root_output_filename, ose)
else:
raise ose
# Set environment variables.
pmi_command_env = env_copy.copy()
pmi_complus_env = complus_env.copy()
pmi_complus_env["JitName"] = self.collection_shim_name
if self.coreclr_args.pmi_path is not None:
pmi_root_env = root_env.copy()
pmi_root_env["PMIPATH"] = ";".join(self.coreclr_args.pmi_path)
else:
pmi_root_env = root_env
set_and_report_env(pmi_command_env, pmi_root_env, pmi_complus_env)
old_env = os.environ.copy()
os.environ.update(pmi_command_env)
helper = AsyncSubprocessHelper(assemblies, verbose=True)
helper.run_to_completion(run_pmi, self)
os.environ.clear()
os.environ.update(old_env)
################################################################################################ end of "self.coreclr_args.pmi is True"
################################################################################################ Do collection using crossgen2
if self.coreclr_args.crossgen2 is True:
logging.debug("Starting collection using crossgen2")
async def run_crossgen2(print_prefix, assembly, self):
""" Run crossgen2 over all dlls
"""
root_crossgen2_output_filename = make_safe_filename("crossgen2_" + assembly) + ".out.dll"
crossgen2_output_assembly_filename = os.path.join(self.temp_location, root_crossgen2_output_filename)
try:
if os.path.exists(crossgen2_output_assembly_filename):
os.remove(crossgen2_output_assembly_filename)
except OSError as ose:
if "[WinError 32] The process cannot access the file because it is being used by another " \
"process:" in format(ose):
logging.warning("Skipping file %s. Got error: %s", crossgen2_output_assembly_filename, ose)
return
else:
raise ose
root_output_filename = make_safe_filename("crossgen2_" + assembly + "_")
# Create a temporary response file to put all the arguments to crossgen2 (otherwise the path length limit could be exceeded):
#
# <dll to compile>
# -o:<output dll>
# -r:<Core_Root>\System.*.dll
# -r:<Core_Root>\Microsoft.*.dll
# -r:<Core_Root>\mscorlib.dll
# -r:<Core_Root>\netstandard.dll
# --jitpath:<self.collection_shim_name>
# --codegenopt:<option>=<value> /// for each member of complus_env
#
# invoke with:
#
# dotnet <Core_Root>\crossgen2\crossgen2.dll @<temp.rsp>
#
# where "dotnet" is one of:
# 1. <runtime_root>\dotnet.cmd/sh
# 2. "dotnet" on PATH
# 3. corerun in Core_Root
rsp_file_handle, rsp_filepath = tempfile.mkstemp(suffix=".rsp", prefix=root_output_filename, dir=self.temp_location)
with open(rsp_file_handle, "w") as rsp_write_handle:
rsp_write_handle.write(assembly + "\n")
rsp_write_handle.write("-o:" + crossgen2_output_assembly_filename + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "System.*.dll") + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "Microsoft.*.dll") + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "mscorlib.dll") + "\n")
rsp_write_handle.write("-r:" + os.path.join(self.core_root, "netstandard.dll") + "\n")
rsp_write_handle.write("--parallelism:1" + "\n")
rsp_write_handle.write("--jitpath:" + os.path.join(self.core_root, self.collection_shim_name) + "\n")
for var, value in complus_env.items():
rsp_write_handle.write("--codegenopt:" + var + "=" + value + "\n")
# Log what is in the response file
write_file_to_log(rsp_filepath)
command = [self.crossgen2_driver_tool, self.coreclr_args.crossgen2_tool_path, "@" + rsp_filepath]
command_string = " ".join(command)
logging.debug("%s%s", print_prefix, command_string)
# Save the stdout and stderr to files, so we can see if crossgen2 wrote any interesting messages.
# Use the name of the assembly as the basename of the file. mkstemp() will ensure the file
# is unique.
try:
stdout_file_handle, stdout_filepath = tempfile.mkstemp(suffix=".stdout", prefix=root_output_filename, dir=self.temp_location)
stderr_file_handle, stderr_filepath = tempfile.mkstemp(suffix=".stderr", prefix=root_output_filename, dir=self.temp_location)
proc = await asyncio.create_subprocess_shell(
command_string,
stdout=stdout_file_handle,
stderr=stderr_file_handle)
await proc.communicate()
os.close(stdout_file_handle)
os.close(stderr_file_handle)
# No need to keep zero-length files
if is_zero_length_file(stdout_filepath):
os.remove(stdout_filepath)
if is_zero_length_file(stderr_filepath):
os.remove(stderr_filepath)
return_code = proc.returncode
if return_code != 0:
logging.debug("'%s': Error return code: %s", command_string, return_code)
write_file_to_log(stdout_filepath, log_level=logging.DEBUG)
write_file_to_log(stderr_filepath, log_level=logging.DEBUG)
except OSError as ose:
if "[WinError 32] The process cannot access the file because it is being used by another " \
"process:" in format(ose):
logging.warning("Skipping file %s. Got error: %s", root_output_filename, ose)
else:
raise ose
# Delete the response file unless we are skipping cleanup
if not self.coreclr_args.skip_cleanup:
os.remove(rsp_filepath)
# Set environment variables.
crossgen2_command_env = env_copy.copy()
set_and_report_env(crossgen2_command_env, root_env)
old_env = os.environ.copy()
os.environ.update(crossgen2_command_env)
# Note: crossgen2 compiles in parallel by default. However, it seems to lead to sharing violations
# in SuperPMI collection, accessing the MC file. So, disable crossgen2 parallism by using
# the "--parallelism:1" switch, and allowing coarse-grained (per-assembly) parallelism here.
# It turns out this works better anyway, as there is a lot of non-parallel time between
# crossgen2 parallel compilations.
helper = AsyncSubprocessHelper(assemblies, verbose=True)
helper.run_to_completion(run_crossgen2, self)
os.environ.clear()
os.environ.update(old_env)
################################################################################################ end of "self.coreclr_args.crossgen2 is True"
mc_files = [os.path.join(self.temp_location, item) for item in os.listdir(self.temp_location) if item.endswith(".mc")]
if len(mc_files) == 0:
raise RuntimeError("No .mc files generated.")
def __merge_mc_files__(self):
""" Merge the mc files that were generated
Notes:
mcs -merge <s_baseMchFile> <s_tempDir>\\*.mc -recursive -dedup -thin
"""
logging.info("Merging MC files")
pattern = os.path.join(self.temp_location, "*.mc")
command = [self.mcs_path, "-merge", self.base_mch_file, pattern, "-recursive", "-dedup", "-thin"]
run_and_log(command)
if not os.path.isfile(self.base_mch_file):
raise RuntimeError("MCH file failed to be generated at: %s" % self.base_mch_file)
# All the individual MC files are no longer necessary, now that we have
# merged them into the base.mch. Delete them.
if not self.coreclr_args.skip_cleanup:
mc_files = [os.path.join(self.temp_location, item) for item in os.listdir(self.temp_location) if item.endswith(".mc")]
for item in mc_files:
os.remove(item)
def __merge_mch_files__(self):
""" Merge MCH files in the mch_files list. This is only used with the `--merge_mch_files` argument.
Notes:
mcs -concat <s_baseMchFile> [self.coreclr_args.mch_files]
"""
logging.info("Merging MCH files")
for item in self.coreclr_args.mch_files:
command = [self.mcs_path, "-concat", self.base_mch_file, item]
run_and_log(command)
if not os.path.isfile(self.base_mch_file):
raise RuntimeError("MCH file failed to be generated at: %s" % self.base_mch_file)
def __create_clean_mch_file__(self):
""" Create a clean mch file
Notes:
<SuperPMIPath> -p -f <s_baseFailMclFile> <s_baseMchFile> <jitPath>
if <s_baseFailMclFile> is non-empty:
<mcl> -strip <s_baseFailMclFile> <s_baseMchFile> <s_finalMchFile>
else
# copy/move base file to final file
del <s_baseFailMclFile>
"""
logging.info("Cleaning MCH file")
command = [self.superpmi_path, "-p", "-f", self.base_fail_mcl_file, self.base_mch_file, self.jit_path]
run_and_log(command)
if is_nonzero_length_file(self.base_fail_mcl_file):
command = [self.mcs_path, "-strip", self.base_fail_mcl_file, self.base_mch_file, self.final_mch_file]
run_and_log(command)
else:
# Ideally we could just rename this file instead of copying it.
shutil.copy2(self.base_mch_file, self.final_mch_file)
if not os.path.isfile(self.final_mch_file):
raise RuntimeError("Final mch file failed to be generated.")
if not self.coreclr_args.skip_cleanup:
if os.path.isfile(self.base_fail_mcl_file):
os.remove(self.base_fail_mcl_file)
self.base_fail_mcl_file = None
if os.path.isfile(self.base_mch_file):
os.remove(self.base_mch_file)
self.base_mch_file = None
def __create_toc__(self):
""" Create a TOC file
Notes:
<mcl> -toc <s_finalMchFile>
"""
logging.info("Creating TOC file")
command = [self.mcs_path, "-toc", self.final_mch_file]
run_and_log(command)
if not os.path.isfile(self.toc_file):
raise RuntimeError("Error, toc file not created correctly at: %s" % self.toc_file)
def __verify_final_mch__(self):
""" Verify the resulting MCH file is error-free when running SuperPMI against it with the same JIT used for collection.
Notes:
<SuperPmiPath> -p -f <s_finalFailMclFile> <s_finalMchFile> <jitPath>
"""
logging.info("Verifying MCH file")
mch_files = [ self.final_mch_file ]
spmi_replay = SuperPMIReplay(self.coreclr_args, mch_files, self.jit_path)
passed = spmi_replay.replay()
if not passed:
raise RuntimeError("Error, unclean replay.")
################################################################################
# SuperPMI Replay helpers
################################################################################
def print_superpmi_result(return_code, coreclr_args, base_metrics, diff_metrics):
""" Print a description of a superpmi return (error) code. If the return code is
zero, meaning success, don't print anything.
Note that Python treats process return codes (at least on Windows) as
unsigned integers, so compare against both signed and unsigned numbers for
those return codes.
"""
if return_code == 0:
logging.info("Clean SuperPMI {} ({} contexts processed)".format("replay" if diff_metrics is None else "diff", base_metrics["Successful compiles"]))
elif return_code == -1 or return_code == 4294967295:
logging.error("General fatal error")
elif return_code == -2 or return_code == 4294967294:
logging.error("JIT failed to initialize")
elif return_code == 1:
logging.warning("Compilation failures")
elif return_code == 2:
logging.warning("Asm diffs found")
elif return_code == 3:
missing_base = int(base_metrics["Missing compiles"])
total_contexts = int(base_metrics["Successful compiles"]) + int(base_metrics["Failing compiles"])
if diff_metrics is None:
logging.warning("SuperPMI encountered missing data for {} out of {} contexts".format(missing_base, total_contexts))
else:
missing_diff = int(diff_metrics["Missing compiles"])
logging.warning("SuperPMI encountered missing data. Missing with base JIT: {}. Missing with diff JIT: {}. Total contexts: {}.".format(missing_base, missing_diff, total_contexts))
elif return_code == 139 and coreclr_args.host_os != "windows":
logging.error("Fatal error, SuperPMI has returned SIGSEGV (segmentation fault)")
else:
logging.error("Unknown error code %s", return_code)
def print_fail_mcl_file_method_numbers(fail_mcl_file):
""" Given a SuperPMI ".mcl" file (containing a list of failure indices), print out the method numbers.
"""
with open(fail_mcl_file) as file_handle:
mcl_lines = file_handle.readlines()
mcl_lines = [item.strip() for item in mcl_lines]
logging.debug("Method numbers with compilation failures:")
for line in mcl_lines:
logging.debug(line)
def save_repro_mc_files(temp_location, coreclr_args, artifacts_base_name, repro_base_command_line):
""" For commands that use the superpmi "-r" option to create "repro" .mc files, copy these to a
location where they are saved (and not in a "temp" directory) for easy use by the user.
"""
# If there are any .mc files, drop them into artifacts/repro/<host_os>.<arch>.<build_type>/*.mc
mc_files = [os.path.join(temp_location, item) for item in os.listdir(temp_location) if item.endswith(".mc")]
if len(mc_files) > 0:
repro_location = create_unique_directory_name(coreclr_args.spmi_location, "repro.{}".format(artifacts_base_name))
repro_files = []
for item in mc_files:
repro_files.append(os.path.join(repro_location, os.path.basename(item)))
logging.debug("Copying %s -> %s", item, repro_location)
shutil.copy2(item, repro_location)
logging.info("")
logging.info("Repro {} .mc file(s) created for failures:".format(len(repro_files)))
for item in repro_files:
logging.info(item)
logging.info("")
logging.info("To run a specific failure (replace JIT path and .mc filename as needed):")
logging.info("")
logging.info("%s %s%sxxxxx.mc", repro_base_command_line, repro_location, os.path.sep)
logging.info("")
################################################################################
# SuperPMI Replay
################################################################################
class SuperPMIReplay:
""" SuperPMI Replay class
Notes:
The object is responsible for replaying the MCH files given to the
instance of the class
"""
def __init__(self, coreclr_args, mch_files, jit_path):
""" Constructor
Args:
coreclr_args (CoreclrArguments) : parsed args
mch_files (list) : list of MCH files to replay
jit_path (str) : path to clrjit
"""
self.jit_path = jit_path
self.mch_files = mch_files
self.superpmi_path = determine_superpmi_tool_path(coreclr_args)
self.coreclr_args = coreclr_args
############################################################################
# Instance Methods
############################################################################
def replay(self):
""" Replay the given SuperPMI collection
Returns:
(bool) True on success; False otherwise
"""
result = True # Assume success
with TempDir() as temp_location:
logging.debug("")
logging.debug("Temp Location: %s", temp_location)
logging.debug("")
# `repro_flags` are the subset of flags we tell the user to pass to superpmi when reproducing
# a failure. This won't include things like "-p" for parallelism or "-r" to create a repro .mc file.
repro_flags = []
common_flags = [
"-v", "ewmi", # display errors, warnings, missing, jit info
"-r", os.path.join(temp_location, "repro") # Repro name, create .mc repro files
]
if self.coreclr_args.altjit:
repro_flags += [
"-jitoption", "force", "AltJit=*",
"-jitoption", "force", "AltJitNgen=*"
]
if self.coreclr_args.arch != self.coreclr_args.target_arch:
repro_flags += [ "-target", self.coreclr_args.target_arch ]
if not self.coreclr_args.sequential and not self.coreclr_args.compile:
common_flags += [ "-p" ]
if self.coreclr_args.break_on_assert:
common_flags += [ "-boa" ]
if self.coreclr_args.break_on_error:
common_flags += [ "-boe" ]
if self.coreclr_args.compile:
common_flags += [ "-c", self.coreclr_args.compile ]
if self.coreclr_args.spmi_log_file is not None:
common_flags += [ "-w", self.coreclr_args.spmi_log_file ]
if self.coreclr_args.error_limit is not None:
common_flags += ["-failureLimit", self.coreclr_args.error_limit]
if self.coreclr_args.jitoption:
for o in self.coreclr_args.jitoption:
repro_flags += "-jitoption", o
common_flags += repro_flags
# For each MCH file that we are going to replay, do the replay and replay post-processing.
#
# Consider: currently, we loop over all the steps for each MCH file, including (1) invoke
# SuperPMI, (2) process results. It might be better to do (1) for each MCH file, then
# process all the results at once. Currently, the results for some processing can be
# obscured by the normal run output for subsequent MCH files.
# Keep track of any MCH file replay failures
files_with_replay_failures = []
for mch_file in self.mch_files:
logging.info("Running SuperPMI replay of %s", mch_file)
flags = common_flags.copy()
fail_mcl_file = os.path.join(temp_location, os.path.basename(mch_file) + "_fail.mcl")
metrics_summary_file = os.path.join(temp_location, os.path.basename(mch_file) + "_metrics.csv")
flags += [
"-f", fail_mcl_file, # Failing mc List
"-metricsSummary", metrics_summary_file
]
command = [self.superpmi_path] + flags + [self.jit_path, mch_file]
return_code = run_and_log(command)
metrics = read_csv_metrics(metrics_summary_file)
print_superpmi_result(return_code, self.coreclr_args, metrics, None)
if return_code != 0:
# Don't report as replay failure missing data (return code 3).
# Anything else, such as compilation failure (return code 1, typically a JIT assert) will be
# reported as a replay failure.
if return_code != 3:
result = False
files_with_replay_failures.append(mch_file)
if is_nonzero_length_file(fail_mcl_file):
# Unclean replay. Examine the contents of the fail.mcl file to dig into failures.
if return_code == 0:
logging.warning("Warning: SuperPMI returned a zero exit code, but generated a non-zero-sized mcl file")
print_fail_mcl_file_method_numbers(fail_mcl_file)
repro_base_command_line = "{} {} {}".format(self.superpmi_path, " ".join(repro_flags), self.jit_path)
artifacts_base_name = create_artifacts_base_name(self.coreclr_args, mch_file)
save_repro_mc_files(temp_location, self.coreclr_args, artifacts_base_name, repro_base_command_line)
if not self.coreclr_args.skip_cleanup:
if os.path.isfile(fail_mcl_file):
os.remove(fail_mcl_file)
fail_mcl_file = None
################################################################################################ end of for mch_file in self.mch_files
logging.info("Replay summary:")
if len(files_with_replay_failures) == 0:
logging.info(" All replays clean")
else:
logging.info(" Replay failures in %s MCH files:", len(files_with_replay_failures))
for file in files_with_replay_failures:
logging.info(" %s", file)
return result
################################################################################
# SuperPMI Replay/AsmDiffs
################################################################################
class SuperPMIReplayAsmDiffs:
""" SuperPMI Replay AsmDiffs class
Notes:
The object is responsible for replaying the mch file given to the
instance of the class and doing diffs using the two passed jits.
"""
def __init__(self, coreclr_args, mch_files, base_jit_path, diff_jit_path):
""" Constructor
Args:
coreclr_args (CoreclrArguments) : parsed args
mch_files (list) : list of MCH files to replay
base_jit_path (str) : path to baseline clrjit
diff_jit_path (str) : path to diff clrjit
"""
self.base_jit_path = base_jit_path
self.diff_jit_path = diff_jit_path
self.mch_files = mch_files
self.superpmi_path = determine_superpmi_tool_path(coreclr_args)
self.coreclr_args = coreclr_args
self.diff_mcl_contents = None
############################################################################
# Instance Methods
############################################################################
def replay_with_asm_diffs(self):
""" Replay the given SuperPMI collection, generating asm diffs
Returns:
(bool) True on success; False otherwise
"""
result = True # Assume success
# Set up some settings we'll use below.
asm_complus_vars = {
"COMPlus_JitDisasm": "*",
"COMPlus_JitUnwindDump": "*",
"COMPlus_JitEHDump": "*",
"COMPlus_NgenDisasm": "*",
"COMPlus_NgenUnwindDump": "*",
"COMPlus_NgenEHDump": "*",
"COMPlus_JitDiffableDasm": "1",
"COMPlus_JitEnableNoWayAssert": "1",
"COMPlus_JitNoForceFallback": "1",
"COMPlus_JitDisasmWithGC": "1" }
if self.coreclr_args.gcinfo:
asm_complus_vars.update({
"COMPlus_JitGCDump": "*",
"COMPlus_NgenGCDump": "*" })
if self.coreclr_args.debuginfo:
asm_complus_vars.update({
"COMPlus_JitDebugDump": "*",
"COMPlus_NgenDebugDump": "*",
"COMPlus_JitDisasmWithDebugInfo": "1" })
jit_dump_complus_vars = asm_complus_vars.copy()
jit_dump_complus_vars.update({
"COMPlus_JitDump": "*",
"COMPlus_NgenDump": "*" })
asm_complus_vars_full_env = os.environ.copy()
asm_complus_vars_full_env.update(asm_complus_vars)
jit_dump_complus_vars_full_env = os.environ.copy()
jit_dump_complus_vars_full_env.update(jit_dump_complus_vars)
target_flags = []
if self.coreclr_args.arch != self.coreclr_args.target_arch:
target_flags += [ "-target", self.coreclr_args.target_arch ]
altjit_asm_diffs_flags = target_flags
altjit_replay_flags = target_flags
base_option_flags = []
if self.coreclr_args.base_jit_option:
for o in self.coreclr_args.base_jit_option:
base_option_flags += "-jitoption", o
base_option_flags_for_diff_artifact = base_option_flags
diff_option_flags = []
diff_option_flags_for_diff_artifact = []
if self.coreclr_args.diff_jit_option:
for o in self.coreclr_args.diff_jit_option:
diff_option_flags += "-jit2option", o
diff_option_flags_for_diff_artifact += "-jitoption", o
if self.coreclr_args.altjit:
altjit_asm_diffs_flags += [
"-jitoption", "force", "AltJit=*",
"-jitoption", "force", "AltJitNgen=*",
"-jit2option", "force", "AltJit=*",
"-jit2option", "force", "AltJitNgen=*"
]
altjit_replay_flags += [
"-jitoption", "force", "AltJit=*",
"-jitoption", "force", "AltJitNgen=*"
]
# Keep track if any MCH file replay had asm diffs
files_with_asm_diffs = []
files_with_replay_failures = []
# List of all Markdown summary files
all_md_summary_files = []
with TempDir(None, self.coreclr_args.skip_cleanup) as temp_location:
logging.debug("")
logging.debug("Temp Location: %s", temp_location)
logging.debug("")
# For each MCH file that we are going to replay, do the replay and replay post-processing.
#
# Consider: currently, we loop over all the steps for each MCH file, including (1) invoke
# SuperPMI, (2) process results. It might be better to do (1) for each MCH file, then
# process all the results at once. Currently, the results for some processing can be
# obscured by the normal run output for subsequent MCH files.
for mch_file in self.mch_files:
logging.info("Running asm diffs of %s", mch_file)
fail_mcl_file = os.path.join(temp_location, os.path.basename(mch_file) + "_fail.mcl")
diff_mcl_file = os.path.join(temp_location, os.path.basename(mch_file) + "_diff.mcl")
base_metrics_summary_file = os.path.join(temp_location, os.path.basename(mch_file) + "_base_metrics.csv")
diff_metrics_summary_file = os.path.join(temp_location, os.path.basename(mch_file) + "_diff_metrics.csv")
flags = [
"-a", # Asm diffs
"-v", "ewmi", # display errors, warnings, missing, jit info
"-f", fail_mcl_file, # Failing mc List
"-diffMCList", diff_mcl_file, # Create all of the diffs in an mcl file
"-r", os.path.join(temp_location, "repro"), # Repro name, create .mc repro files
"-baseMetricsSummary", base_metrics_summary_file, # Create summary of metrics we can use to get total code size impact
"-diffMetricsSummary", diff_metrics_summary_file,
]
flags += altjit_asm_diffs_flags
flags += base_option_flags
flags += diff_option_flags
if not self.coreclr_args.sequential and not self.coreclr_args.compile:
flags += [ "-p" ]
if self.coreclr_args.break_on_assert:
flags += [ "-boa" ]
if self.coreclr_args.break_on_error:
flags += [ "-boe" ]
if self.coreclr_args.compile:
flags += [ "-c", self.coreclr_args.compile ]
if self.coreclr_args.spmi_log_file is not None:
flags += [ "-w", self.coreclr_args.spmi_log_file ]
if self.coreclr_args.error_limit is not None:
flags += ["-failureLimit", self.coreclr_args.error_limit]
# Change the working directory to the Core_Root we will call SuperPMI from.
# This is done to allow libcoredistools to be loaded correctly on unix
# as the loadlibrary path will be relative to the current directory.
with ChangeDir(self.coreclr_args.core_root):
command = [self.superpmi_path] + flags + [self.base_jit_path, self.diff_jit_path, mch_file]
return_code = run_and_log(command)
logging.debug("return_code: %s", return_code)
base_metrics = read_csv_metrics(base_metrics_summary_file)
diff_metrics = read_csv_metrics(diff_metrics_summary_file)
print_superpmi_result(return_code, self.coreclr_args, base_metrics, diff_metrics)
artifacts_base_name = create_artifacts_base_name(self.coreclr_args, mch_file)
if return_code != 0:
# Don't report as replay failure asm diffs (return code 2) if not checking diffs with Release build or missing data (return code 3).
# Anything else, such as compilation failure (return code 1, typically a JIT assert) will be
# reported as a replay failure.
if (return_code != 2 or self.coreclr_args.diff_with_release) and return_code != 3:
result = False
files_with_replay_failures.append(mch_file)
if is_nonzero_length_file(fail_mcl_file):
# Unclean replay. Examine the contents of the fail.mcl file to dig into failures.
print_fail_mcl_file_method_numbers(fail_mcl_file)
repro_base_command_line = "{} {} {}".format(self.superpmi_path, " ".join(altjit_asm_diffs_flags), self.diff_jit_path)
save_repro_mc_files(temp_location, self.coreclr_args, artifacts_base_name, repro_base_command_line)
# This file had asm diffs; keep track of that.
if is_nonzero_length_file(diff_mcl_file):
files_with_asm_diffs.append(mch_file)
# There were diffs. Go through each method that created diffs and
# create a base/diff asm file with diffable asm. In addition, create
# a standalone .mc for easy iteration.
if is_nonzero_length_file(diff_mcl_file) and not self.coreclr_args.diff_with_release:
# AsmDiffs. Save the contents of the fail.mcl file to dig into failures.
if return_code == 0:
logging.warning("Warning: SuperPMI returned a zero exit code, but generated a non-zero-sized mcl file")
self.diff_mcl_contents = None
with open(diff_mcl_file) as file_handle:
mcl_lines = file_handle.readlines()
mcl_lines = [item.strip() for item in mcl_lines]
self.diff_mcl_contents = mcl_lines
asm_root_dir = create_unique_directory_name(self.coreclr_args.spmi_location, "asm.{}".format(artifacts_base_name))
base_asm_location = os.path.join(asm_root_dir, "base")
diff_asm_location = os.path.join(asm_root_dir, "diff")
os.makedirs(base_asm_location)
os.makedirs(diff_asm_location)
if self.coreclr_args.diff_jit_dump:
# If JIT dumps are requested, create a diff and baseline directory for JIT dumps
jitdump_root_dir = create_unique_directory_name(self.coreclr_args.spmi_location, "jitdump.{}".format(artifacts_base_name))
base_dump_location = os.path.join(jitdump_root_dir, "base")
diff_dump_location = os.path.join(jitdump_root_dir, "diff")
os.makedirs(base_dump_location)
os.makedirs(diff_dump_location)
text_differences = queue.Queue()
jit_dump_differences = queue.Queue()
async def create_replay_artifacts(print_prefix, item, self, mch_file, env, jit_differences_queue, base_location, diff_location, extension):
""" Run superpmi over an MC to create JIT asm or JIT dumps for the method.
"""
# Setup flags to call SuperPMI for both the diff jit and the base jit
flags = [
"-c", item,
"-v", "q" # only log from the jit.
]
flags += altjit_replay_flags
# Change the working directory to the core root we will call SuperPMI from.
# This is done to allow libcoredistools to be loaded correctly on unix
# as the LoadLibrary path will be relative to the current directory.
with ChangeDir(self.coreclr_args.core_root):
async def create_one_artifact(jit_path: str, location: str, flags) -> str:
command = [self.superpmi_path] + flags + [jit_path, mch_file]
item_path = os.path.join(location, "{}{}".format(item, extension))
with open(item_path, 'w') as file_handle:
logging.debug("%sGenerating %s", print_prefix, item_path)
logging.debug("%sInvoking: %s", print_prefix, " ".join(command))
proc = await asyncio.create_subprocess_shell(" ".join(command), stdout=file_handle, stderr=asyncio.subprocess.PIPE, env=env)
await proc.communicate()
with open(item_path, 'r') as file_handle:
generated_txt = file_handle.read()
return generated_txt
# Generate diff and base JIT dumps
base_txt = await create_one_artifact(self.base_jit_path, base_location, flags + base_option_flags_for_diff_artifact)
diff_txt = await create_one_artifact(self.diff_jit_path, diff_location, flags + diff_option_flags_for_diff_artifact)
if base_txt != diff_txt:
jit_differences_queue.put_nowait(item)
################################################################################################ end of create_replay_artifacts()
diff_items = []
for item in self.diff_mcl_contents:
diff_items.append(item)
logging.info("Creating dasm files: %s %s", base_asm_location, diff_asm_location)
subproc_helper = AsyncSubprocessHelper(diff_items, verbose=True)
subproc_helper.run_to_completion(create_replay_artifacts, self, mch_file, asm_complus_vars_full_env, text_differences, base_asm_location, diff_asm_location, ".dasm")
if self.coreclr_args.diff_jit_dump:
logging.info("Creating JitDump files: %s %s", base_dump_location, diff_dump_location)
subproc_helper.run_to_completion(create_replay_artifacts, self, mch_file, jit_dump_complus_vars_full_env, jit_dump_differences, base_dump_location, diff_dump_location, ".txt")
logging.info("Differences found. To replay SuperPMI use:")
logging.info("")
for var, value in asm_complus_vars.items():
print_platform_specific_environment_vars(logging.INFO, self.coreclr_args, var, value)
logging.info("%s %s -c ### %s %s", self.superpmi_path, " ".join(altjit_replay_flags), self.diff_jit_path, mch_file)
logging.info("")
if self.coreclr_args.diff_jit_dump:
logging.info("To generate JitDump with SuperPMI use:")
logging.info("")
for var, value in jit_dump_complus_vars.items():
print_platform_specific_environment_vars(logging.INFO, self.coreclr_args, var, value)
logging.info("%s %s -c ### %s %s", self.superpmi_path, " ".join(altjit_replay_flags), self.diff_jit_path, mch_file)
logging.info("")
logging.debug("Method numbers with binary differences:")
for item in self.diff_mcl_contents:
logging.debug(item)
logging.debug("")
if base_metrics is not None and diff_metrics is not None:
base_bytes = int(base_metrics["Diffed code bytes"])
diff_bytes = int(diff_metrics["Diffed code bytes"])
logging.info("Total bytes of base: {}".format(base_bytes))
logging.info("Total bytes of diff: {}".format(diff_bytes))
delta_bytes = diff_bytes - base_bytes
logging.info("Total bytes of delta: {} ({:.2%} of base)".format(delta_bytes, delta_bytes / base_bytes))
try:
current_text_diff = text_differences.get_nowait()
except:
current_text_diff = None
logging.info("Generated asm is located under %s %s", base_asm_location, diff_asm_location)
if current_text_diff is not None:
logging.info("Textual differences found in generated asm.")
# Find jit-analyze on PATH, if it exists, then invoke it.
ran_jit_analyze = False
path_var = os.environ.get("PATH")
if path_var is not None:
jit_analyze_file = "jit-analyze.exe" if platform.system() == "Windows" else "jit-analyze"
jit_analyze_path = find_file(jit_analyze_file, path_var.split(os.pathsep))
if jit_analyze_path is not None:
# It appears we have a built jit-analyze on the path, so try to run it.
md_summary_file = os.path.join(asm_root_dir, "summary.md")
summary_file_info = ( mch_file, md_summary_file )
all_md_summary_files.append(summary_file_info)
command = [ jit_analyze_path, "--md", md_summary_file, "-r", "--base", base_asm_location, "--diff", diff_asm_location ]
if self.coreclr_args.retainOnlyTopFiles:
command += [ "--retainOnlyTopFiles" ]
if self.coreclr_args.metrics:
command += [ "--metrics", ",".join(self.coreclr_args.metrics) ]
elif base_bytes is not None and diff_bytes is not None:
command += [ "--override-total-base-metric", str(base_bytes), "--override-total-diff-metric", str(diff_bytes) ]
run_and_log(command, logging.INFO)
ran_jit_analyze = True
if not ran_jit_analyze:
logging.info("jit-analyze not found on PATH. Generate a diff analysis report by building jit-analyze from https://github.com/dotnet/jitutils and running:")
logging.info(" jit-analyze -r --base %s --diff %s", base_asm_location, diff_asm_location)
else:
logging.warning("No textual differences. Is this an issue with coredistools?")
if self.coreclr_args.diff_jit_dump:
try:
current_jit_dump_diff = jit_dump_differences.get_nowait()
except:
current_jit_dump_diff = None
logging.info("Generated JitDump is located under %s %s", base_dump_location, diff_dump_location)
if current_jit_dump_diff is not None:
logging.info("Textual differences found in generated JitDump.")
else:
logging.warning("No textual differences found in generated JitDump. Is this an issue with coredistools?")
if base_metrics is not None and diff_metrics is not None:
missing_base = int(base_metrics["Missing compiles"])
missing_diff = int(diff_metrics["Missing compiles"])
total_contexts = int(base_metrics["Successful compiles"]) + int(base_metrics["Failing compiles"])
if missing_base > 0 or missing_diff > 0:
logging.warning("Warning: SuperPMI encountered missing data during the diff. The diff summary printed above may be misleading.")
logging.warning("Missing with base JIT: {}. Missing with diff JIT: {}. Total contexts: {}.".format(missing_base, missing_diff, total_contexts))
################################################################################################ end of processing asm diffs (if is_nonzero_length_file(diff_mcl_file)...
if not self.coreclr_args.skip_cleanup:
if os.path.isfile(fail_mcl_file):
os.remove(fail_mcl_file)
fail_mcl_file = None
if os.path.isfile(base_metrics_summary_file):
os.remove(base_metrics_summary_file)
base_metrics_summary_file = None
if os.path.isfile(diff_metrics_summary_file):
os.remove(diff_metrics_summary_file)
diff_metrics_summary_file = None
################################################################################################ end of for mch_file in self.mch_files
# Report the overall results summary of the asmdiffs run
logging.info("Asm diffs summary:")
# Construct an overall Markdown summary file.
if len(all_md_summary_files) > 0 and not self.coreclr_args.diff_with_release:
overall_md_summary_file = create_unique_file_name(self.coreclr_args.spmi_location, "diff_summary", "md")
if not os.path.isdir(self.coreclr_args.spmi_location):
os.makedirs(self.coreclr_args.spmi_location)
if os.path.isfile(overall_md_summary_file):
os.remove(overall_md_summary_file)
with open(overall_md_summary_file, "w") as write_fh:
for summary_file_info in all_md_summary_files:
summary_mch = summary_file_info[0]
summary_mch_filename = os.path.basename(summary_mch) # Display just the MCH filename, not the full path
summary_file = summary_file_info[1]
with open(summary_file, "r") as read_fh:
write_fh.write("## " + summary_mch_filename + ":\n\n")
shutil.copyfileobj(read_fh, write_fh)
logging.info(" Summary Markdown file: %s", overall_md_summary_file)
# Report the set of MCH files with asm diffs and replay failures.
if len(files_with_replay_failures) != 0:
logging.info(" Replay failures in %s MCH files:", len(files_with_replay_failures))
for file in files_with_replay_failures:
logging.info(" %s", file)
if len(files_with_asm_diffs) == 0:
logging.info(" No asm diffs")
else:
logging.info(" Asm diffs in %s MCH files:", len(files_with_asm_diffs))
for file in files_with_asm_diffs:
logging.info(" %s", file)
return result
################################################################################################ end of replay_with_asm_diffs()
################################################################################
# Argument handling helpers
################################################################################
def determine_coredis_tools(coreclr_args):
""" Determine the coredistools location. First, look in Core_Root. It will be there if
the setup-stress-dependencies.cmd/sh script has been run, which is typically only
if tests have been run. If unable to find coredistools, download it from a cached
copy in the CLRJIT Azure Storage. (Ideally, we would instead download the NuGet
package and extract it using the same mechanism as setup-stress-dependencies
instead of having our own copy in Azure Storage).
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
coredistools_location (str) : path of [lib]coredistools.dylib|so|dll
"""
if not hasattr(coreclr_args, "core_root") or coreclr_args.core_root is None:
raise RuntimeError("Core_Root not set properly")
coredistools_dll_name = None
if coreclr_args.host_os.lower() == "osx":
coredistools_dll_name = "libcoredistools.dylib"
elif coreclr_args.host_os.lower() == "linux":
coredistools_dll_name = "libcoredistools.so"
elif coreclr_args.host_os.lower() == "windows":
coredistools_dll_name = "coredistools.dll"
else:
raise RuntimeError("Unknown host os: {}".format(coreclr_args.host_os))
coredistools_location = os.path.join(coreclr_args.core_root, coredistools_dll_name)
if os.path.isfile(coredistools_location):
logging.info("Using coredistools found at %s", coredistools_location)
else:
# Often, Core_Root will already exist. However, you can do a product build without
# creating a Core_Root, and successfully run replay or asm diffs, if we just create Core_Root
# and copy coredistools there. Note that our replays all depend on Core_Root existing, as we
# set the current directory to Core_Root before running superpmi.
if not os.path.isdir(coreclr_args.core_root):
logging.warning("Warning: Core_Root does not exist at \"%s\"; creating it now", coreclr_args.core_root)
os.makedirs(coreclr_args.core_root)
coredistools_uri = az_blob_storage_superpmi_container_uri + "/libcoredistools/{}-{}/{}".format(coreclr_args.host_os.lower(), coreclr_args.arch.lower(), coredistools_dll_name)
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
download_one_url(coredistools_uri, coredistools_location, is_azure_storage=True, display_progress=not skip_progress)
assert os.path.isfile(coredistools_location)
return coredistools_location
def determine_pmi_location(coreclr_args):
""" Determine pmi.dll location, using the following steps:
First, use the `-pmi_location` argument, if set.
Else, look for pmi.dll on the PATH. This will be true if you build jitutils yourself
and put the built `bin` directory on your PATH.
Else, look for pmi.dll in Core_Root. This is where we cache it if downloaded from Azure Storage
Otherwise, download a cached copy from CLRJIT Azure Storage and cache it in Core_Root.
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
pmi_location (str) : path of pmi.dll
"""
if coreclr_args.pmi_location is not None:
pmi_location = os.path.abspath(coreclr_args.pmi_location)
if not os.path.isfile(pmi_location):
raise RuntimeError("PMI not found at {}".format(pmi_location))
logging.info("Using PMI at %s", pmi_location)
else:
path_var = os.environ.get("PATH")
pmi_location = find_file("pmi.dll", path_var.split(os.pathsep)) if path_var is not None else None
if pmi_location is not None:
logging.info("Using PMI found on PATH at %s", pmi_location)
else:
pmi_location = os.path.join(coreclr_args.core_root, "pmi.dll")
if os.path.isfile(pmi_location):
logging.info("Using PMI found at %s", pmi_location)
else:
pmi_uri = az_blob_storage_superpmi_container_uri + "/pmi/pmi.dll"
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
download_one_url(pmi_uri, pmi_location, is_azure_storage=True, display_progress=not skip_progress)
assert os.path.isfile(pmi_location)
return pmi_location
def determine_jit_name(coreclr_args):
""" Determine the jit based on the OS. If "-jit_name" is specified, then use the specified jit.
This function is called for cases where the "-jit_name" flag is not used, so be careful not
to depend on the "jit_name" attribute existing.
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) : name of the jit for this OS
"""
# If `-jit_name` is used, it must be given a full filename, not just a "base name", so use it without additional processing.
if hasattr(coreclr_args, "jit_name") and coreclr_args.jit_name is not None:
return coreclr_args.jit_name
jit_base_name = "clrjit"
if coreclr_args.host_os == "OSX":
return "lib" + jit_base_name + ".dylib"
elif coreclr_args.host_os == "Linux":
return "lib" + jit_base_name + ".so"
elif coreclr_args.host_os == "windows":
return jit_base_name + ".dll"
else:
raise RuntimeError("Unknown OS.")
def find_tool(coreclr_args, tool_name, search_core_root=True, search_product_location=True, search_path=True, throw_on_not_found=True):
""" Find a tool or any specified file (e.g., clrjit.dll) and return the full path to that tool if found.
Args:
coreclr_args (CoreclrArguments): parsed args
tool_name (str): tool to find, e.g., "superpmi.exe"
search_core_root (bool): True to search the Core_Root folder
search_product_location: True to search the build product folder
search_path: True to search along the PATH
Return:
(str) Full path of the tool, or None if not found.
"""
# First, look in Core_Root, if there is one.
if search_core_root and hasattr(coreclr_args, "core_root") and coreclr_args.core_root is not None and os.path.isdir(coreclr_args.core_root):
tool_path = os.path.join(coreclr_args.core_root, tool_name)
if os.path.isfile(tool_path):
logging.debug("Using %s from Core_Root: %s", tool_name, tool_path)
return tool_path
# Next, look in the built product directory, if it exists. We can use superpmi/mcs directly from the
# product build directory instead from Core_Root because they don't depend on managed code libraries.
if search_product_location and hasattr(coreclr_args, "product_location") and coreclr_args.product_location is not None and os.path.isdir(coreclr_args.product_location):
tool_path = os.path.join(coreclr_args.product_location, tool_name)
if os.path.isfile(tool_path):
logging.debug("Using %s from product build location: %s", tool_name, tool_path)
return tool_path
# Finally, look on the PATH
if search_path:
path_var = os.environ.get("PATH")
if path_var is not None:
tool_path = find_file(tool_name, path_var.split(os.pathsep))
if tool_path is not None:
logging.debug("Using %s from PATH: %s", tool_name, tool_path)
return tool_path
if throw_on_not_found:
raise RuntimeError("Tool " + tool_name + " not found. Have you built the runtime repo and created a Core_Root, or put it on your PATH?")
return None
def determine_superpmi_tool_name(coreclr_args):
""" Determine the superpmi tool name based on the OS
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Name of the superpmi tool to use
"""
if coreclr_args.host_os == "OSX" or coreclr_args.host_os == "Linux":
return "superpmi"
elif coreclr_args.host_os == "windows":
return "superpmi.exe"
else:
raise RuntimeError("Unknown OS.")
def determine_superpmi_tool_path(coreclr_args):
""" Determine the superpmi tool full path
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Path of the superpmi tool to use
"""
superpmi_tool_name = determine_superpmi_tool_name(coreclr_args)
return find_tool(coreclr_args, superpmi_tool_name)
def determine_mcs_tool_name(coreclr_args):
""" Determine the mcs tool name based on the OS
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Name of the mcs tool to use
"""
if coreclr_args.host_os == "OSX" or coreclr_args.host_os == "Linux":
return "mcs"
elif coreclr_args.host_os == "windows":
return "mcs.exe"
else:
raise RuntimeError("Unsupported OS.")
def determine_mcs_tool_path(coreclr_args):
""" Determine the mcs tool full path
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Path of the mcs tool to use
"""
mcs_tool_name = determine_mcs_tool_name(coreclr_args)
return find_tool(coreclr_args, mcs_tool_name)
def determine_dotnet_tool_name(coreclr_args):
""" Determine the dotnet tool name based on the OS
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) Name of the dotnet tool to use
"""
if coreclr_args.host_os == "OSX" or coreclr_args.host_os == "Linux":
return "dotnet"
elif coreclr_args.host_os == "windows":
return "dotnet.exe"
else:
raise RuntimeError("Unsupported OS.")
def determine_jit_ee_version(coreclr_args):
""" Determine the JIT-EE version to use.
The JIT-EE version is used for determining which MCH files to download and use. It is determined as follows:
1. Try to parse it out of the source code. If we can find src\\coreclr\\inc\\jiteeversionguid.h in the source
tree (and we're already assuming we can find the repo root from the relative path of this script),
then the JIT-EE version lives in jiteeversionguid.h as follows:
constexpr GUID JITEEVersionIdentifier = { /* a5eec3a4-4176-43a7-8c2b-a05b551d4f49 */
0xa5eec3a4,
0x4176,
0x43a7,
{0x8c, 0x2b, 0xa0, 0x5b, 0x55, 0x1d, 0x4f, 0x49}
};
We want the string between the /* */ comments.
2. Find the mcs tool and run "mcs -printJITEEVersion".
3. Otherwise, just use "unknown-jit-ee-version", which will probably cause downstream failures.
NOTE: When using mcs, we need to run the tool. So we need a version that will run. If a user specifies
an "-arch" argument that creates a Core_Root path that won't run, like an arm32 Core_Root on an
x64 machine, this won't work. This could happen if doing "upload", "upload-private", or "list-collections" on
collections from a machine that didn't create the native collections. We should create a "native"
Core_Root and use that in case there are "cross-arch" scenarios.
Args:
coreclr_args (CoreclrArguments): parsed args
Return:
(str) The JIT-EE version to use
"""
jiteeversionguid_h_path = os.path.join(coreclr_args.coreclr_dir, "inc", "jiteeversionguid.h")
if os.path.isfile(jiteeversionguid_h_path):
# The string is near the beginning of the somewhat large file, so just read a line at a time when searching.
with open(jiteeversionguid_h_path, 'r') as file_handle:
for line in file_handle:
match_obj = re.search(r'^constexpr GUID JITEEVersionIdentifier *= *{ */\* *([^ ]*) *\*/', line)
if match_obj is not None:
jiteeversionguid_h_jit_ee_version = match_obj.group(1)
jiteeversionguid_h_jit_ee_version = jiteeversionguid_h_jit_ee_version.lower()
logging.info("Using JIT/EE Version from jiteeversionguid.h: %s", jiteeversionguid_h_jit_ee_version)
return jiteeversionguid_h_jit_ee_version
logging.warning("Warning: couldn't find JITEEVersionIdentifier in %s; is the file corrupt?", jiteeversionguid_h_path)
mcs_path = determine_mcs_tool_path(coreclr_args)
command = [mcs_path, "-printJITEEVersion"]
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_jit_ee_version, _ = proc.communicate()
return_code = proc.returncode
if return_code == 0:
mcs_jit_ee_version = stdout_jit_ee_version.decode('utf-8').strip()
mcs_jit_ee_version = mcs_jit_ee_version.lower()
logging.info("Using JIT/EE Version from mcs: %s", mcs_jit_ee_version)
return mcs_jit_ee_version
# Otherwise, use the default "unknown" version.
default_jit_ee_version = "unknown-jit-ee-version"
logging.info("Using default JIT/EE Version: %s", default_jit_ee_version)
return default_jit_ee_version
def print_platform_specific_environment_vars(loglevel, coreclr_args, var, value):
""" Print environment variables as set {}={} or export {}={}
Args:
coreclr_args (CoreclrArguments): parsed args
var (str): variable to set
value (str): value being set.
"""
if coreclr_args.host_os == "windows":
logging.log(loglevel, "set %s=%s", var, value)
else:
logging.log(loglevel, "export %s=%s", var, value)
def list_superpmi_collections_container_via_rest_api(path_filter=lambda unused: True):
""" List the superpmi collections using the Azure Storage REST api
Args:
path_filter (lambda: string -> bool): filter to apply to the list. The filter takes a relative
collection path and returns True if this path is acceptable.
Returns:
Returns a list of collections, each element a relative path with:
<jit-ee-guid>/<os>/<architecture>/<filename>
Notes:
This method does not require installing the Azure Storage python package.
"""
# This URI will return *all* the blobs, for all jit-ee-version/OS/architecture combinations.
# pass "prefix=foo/bar/..." to only show a subset. Or, we can filter later using string search.
#
# Note that there is a maximum number of results returned in one query of 5000. So we might need to
# iterate. In that case, the XML result contains a `<NextMarker>` element like:
#
# <NextMarker>2!184!MDAwMDkyIWJ1aWxkcy8wMTZlYzI5OTAzMzkwMmY2ZTY4Yzg0YWMwYTNlYzkxN2Y5MzA0OTQ2L0xpbnV4L3g2NC9DaGVja2VkL2xpYmNscmppdF93aW5fYXJtNjRfeDY0LnNvITAwMDAyOCE5OTk5LTEyLTMxVDIzOjU5OjU5Ljk5OTk5OTlaIQ--</NextMarker>
#
# which we need to pass to the REST API with `marker=...`.
paths = []
list_superpmi_container_uri_base = az_blob_storage_superpmi_container_uri + "?restype=container&comp=list&prefix=" + az_collections_root_folder + "/"
iter = 1
marker = ""
while True:
list_superpmi_container_uri = list_superpmi_container_uri_base + marker
try:
contents = urllib.request.urlopen(list_superpmi_container_uri).read().decode('utf-8')
except Exception as exception:
logging.error("Didn't find any collections using %s", list_superpmi_container_uri)
logging.error(" Error: %s", exception)
return None
# Contents is an XML file with contents like:
#
# <EnumerationResults ContainerName="https://clrjit.blob.core.windows.net/superpmi/collections">
# <Blobs>
# <Blob>
# <Name>jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip</Name>
# <Url>https://clrjit.blob.core.windows.net/superpmi/collections/jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip</Url>
# <Properties>
# ...
# </Properties>
# </Blob>
# <Blob>
# <Name>jit-ee-guid/Linux/x64/Linux.x64.Checked.mch.zip</Name>
# <Url>https://clrjit.blob.core.windows.net/superpmi/collections/jit-ee-guid/Linux/x64/Linux.x64.Checked.mch.zip</Url>
# ... etc. ...
# </Blobs>
# </EnumerationResults>
#
# We just want to extract the <Url> entries. We could probably use an XML parsing package, but we just
# use regular expressions.
url_prefix = az_blob_storage_superpmi_container_uri + "/" + az_collections_root_folder + "/"
urls_split = contents.split("<Url>")[1:]
for item in urls_split:
url = item.split("</Url>")[0].strip()
path = remove_prefix(url, url_prefix)
if path_filter(path):
paths.append(path)
# Look for a continuation marker.
re_match = re.match(r'.*<NextMarker>(.*)</NextMarker>.*', contents)
if re_match:
marker_text = re_match.group(1)
marker = "&marker=" + marker_text
iter += 1
else:
break
return paths
def list_superpmi_collections_container_via_azure_api(path_filter=lambda unused: True):
""" List the superpmi collections using the Azure Storage API
Args:
path_filter (lambda: string -> bool): filter to apply to the list. The filter takes a relative
collection path and returns True if this path is acceptable.
Returns:
Returns a list of collections, each element a relative path with:
<jit-ee-guid>/<os>/<architecture>/<filename>
"""
require_azure_storage_libraries()
from jitutil import ContainerClient, AzureCliCredential
superpmi_container_url = az_blob_storage_superpmi_container_uri
paths = []
ok = True
try:
az_credential = AzureCliCredential()
container = ContainerClient.from_container_url(superpmi_container_url, credential=az_credential)
blob_name_prefix = az_collections_root_folder + "/"
blob_list = container.list_blobs(name_starts_with=blob_name_prefix, retry_total=0)
for blob in blob_list:
# The blob name looks something like:
# collections/f556df6c-b9c7-479c-b895-8e1f1959fe59/Linux/arm/tests.pmi.Linux.arm.checked.mch.zip
# remove the leading "collections/" part of the name.
path = remove_prefix(blob.name, blob_name_prefix)
if path_filter(path):
paths.append(path)
except Exception as exception:
logging.error("Failed to list collections: %s", superpmi_container_url)
report_azure_error()
logging.error(exception)
return None
return paths
def list_superpmi_collections_container(path_filter=lambda unused: True):
""" List the superpmi collections using either the REST API or the Azure API with authentication.
Args:
path_filter (lambda: string -> bool): filter to apply to the list. The filter takes a relative
collection path and returns True if this path is acceptable.
Returns:
Returns a list of collections, each element a relative path with:
<jit-ee-guid>/<os>/<architecture>/<filename>
"""
if authenticate_using_azure:
return list_superpmi_collections_container_via_azure_api(path_filter)
else:
return list_superpmi_collections_container_via_rest_api(path_filter)
def process_local_mch_files(coreclr_args, mch_files, mch_cache_dir):
""" Process the MCH files to use.
Args:
coreclr_args (CoreclrArguments): parsed args
mch_files (list): list of MCH files locations. Normally, this comes from the `-mch_files` argument, but it can
also come from the `private_store` argument. It can be a list of files or directories or both.
mch_cache_dir (str): the directory to cache any downloads.
Returns:
list of full paths of locally cached MCH files to use
"""
# Create the cache location. Note that we'll create it even if we end up not copying anything.
if not os.path.isdir(mch_cache_dir):
os.makedirs(mch_cache_dir)
# Process the mch_files list. Download and cache UNC and HTTP files.
urls = []
local_mch_files = []
for item in mch_files:
# On Windows only, see if any of the mch_files are UNC paths (i.e., "\\server\share\...").
# If so, download and cache all the files found there to our usual local cache location, to avoid future network access.
if coreclr_args.host_os == "windows":# and item.startswith("\\\\"):
# Special case: if the user specifies a .mch file, we'll also look for and cache a .mch.mct file next to it, if one exists.
# This happens naturally if a directory is passed and we search for all .mch and .mct files in that directory.
mch_file = os.path.abspath(item)
if os.path.isfile(mch_file) and mch_file.endswith(".mch"):
urls.append(mch_file)
mct_file = mch_file + ".mct"
if os.path.isfile(mct_file):
urls.append(mct_file)
else:
urls += get_files_from_path(mch_file, match_func=lambda path: any(path.lower().endswith(extension) for extension in [".mch", ".mct", ".zip"]))
elif item.lower().startswith("http:") or item.lower().startswith("https:"): # probably could use urllib.parse to be more precise
urls.append(item)
else:
# Doesn't appear to be a UNC path (on Windows) or a URL, so just use it as-is.
local_mch_files.append(item)
# Now apply any filtering we've been asked to do.
def filter_local_path(path):
path = path.lower()
return (coreclr_args.filter is None) or any((filter_item.lower() in path) for filter_item in coreclr_args.filter)
urls = [url for url in urls if filter_local_path(url)]
# Download all the urls at once, and add the local cache filenames to our accumulated list of local file names.
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
if len(urls) != 0:
local_mch_files += download_files(urls, mch_cache_dir, is_azure_storage=True, display_progress=not skip_progress)
# Special case: walk the URLs list and for every ".mch" or ".mch.zip" file, check to see that either the associated ".mct" file is already
# in the list, or add it to a new list to attempt to download (but don't fail the download if it doesn't exist).
mct_urls = []
for url in urls:
if url.endswith(".mch") or url.endswith(".mch.zip"):
mct_url = url.replace(".mch", ".mch.mct")
if mct_url not in urls:
mct_urls.append(mct_url)
if len(mct_urls) != 0:
local_mch_files += download_files(mct_urls, mch_cache_dir, fail_if_not_found=False, is_azure_storage=True, display_progress=not skip_progress)
# Even though we might have downloaded MCT files, only return the set of MCH files.
local_mch_files = [file for file in local_mch_files if any(file.lower().endswith(extension) for extension in [".mch"])]
return local_mch_files
def process_mch_files_arg(coreclr_args):
""" Process the -mch_files argument. If the argument is not specified, then download files
from Azure Storage and any specified private MCH stores.
Any files on UNC (i.e., "\\server\share" paths on Windows) or Azure Storage stores,
even if specified via the `-mch_files` argument, will be downloaded and cached locally,
replacing the paths with a reference to the newly cached local paths.
If the `-mch_files` argument is specified, files are always either used directly or copied and
cached locally. These will be the only files used.
If the `-mch_files` argument is not specified, and there exists a cache, then only files already
in the cache are used and no MCH stores are consulted, unless the `--force_download` option is
specified, in which case normal MCH store processing is done. This behavior is to avoid
touching the network unless required.
Args:
coreclr_args (CoreclrArguments): parsed args
Returns:
list of local full paths of MCH files or directories to use
"""
mch_cache_dir = os.path.join(coreclr_args.spmi_location, "mch", "{}.{}.{}".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch))
# If an `-mch_files` argument was given, then use exactly that set of files.
if coreclr_args.mch_files is not None:
return process_local_mch_files(coreclr_args, coreclr_args.mch_files, mch_cache_dir)
# Otherwise, use both Azure Storage, and optionally, private stores.
# See if the cache directory already exists. If so, we just use it (unless `--force_download` is passed).
if os.path.isdir(mch_cache_dir) and not coreclr_args.force_download:
# The cache directory is already there, and "--force_download" was not passed, so just
# assume it's got what we want.
# NOTE: a different solution might be to verify that everything we would download is
# already in the cache, and simply not download if it is. However, that would
# require hitting the network, and currently once you've cached these, you
# don't need to do that.
logging.info("Found download cache directory \"%s\" and --force_download not set; skipping download", mch_cache_dir)
return [ mch_cache_dir ]
local_mch_paths = download_mch_from_azure(coreclr_args, mch_cache_dir)
# Add the private store files
if coreclr_args.private_store is not None:
# Only include the directories corresponding to the current JIT/EE version, target OS, and MCH architecture (this is the
# same filtering done for Azure storage). Only include them if they actually exist (e.g., the private store might have
# windows x64 but not Linux arm).
target_specific_stores = [ os.path.abspath(os.path.join(store, coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)) for store in coreclr_args.private_store ]
filtered_stores = [ s for s in target_specific_stores if os.path.isdir(s) ]
local_mch_paths += process_local_mch_files(coreclr_args, filtered_stores, mch_cache_dir)
return local_mch_paths
def download_mch_from_azure(coreclr_args, target_dir):
""" Download the mch files. This can be called to re-download files and
overwrite them in the target location.
Args:
coreclr_args (CoreclrArguments): parsed args
target_dir (str): target directory to download the files
Returns:
list containing the local path of files downloaded
"""
blob_filter_string = "{}/{}/{}/".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch).lower()
# Determine if a URL in Azure Storage should be allowed. The path looks like:
# jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip
# Filter to just the current jit-ee-guid, OS, and architecture.
# Include both MCH and MCT files as well as the CLR JIT dll (processed below).
# If there are filters, only download those matching files.
def filter_superpmi_collections(path):
path = path.lower()
return path.startswith(blob_filter_string) and ((coreclr_args.filter is None) or any((filter_item.lower() in path) for filter_item in coreclr_args.filter))
paths = list_superpmi_collections_container(filter_superpmi_collections)
if paths is None or len(paths) == 0:
print("No Azure Storage MCH files to download from {}".format(blob_filter_string))
return []
blob_url_prefix = "{}/{}/".format(az_blob_storage_superpmi_container_uri, az_collections_root_folder)
urls = [blob_url_prefix + path for path in paths]
skip_progress = hasattr(coreclr_args, 'no_progress') and coreclr_args.no_progress
return download_files(urls, target_dir, is_azure_storage=True, display_progress=not skip_progress)
def upload_mch(coreclr_args):
""" Upload a set of MCH files. Each MCH file is first ZIP compressed to save data space and upload/download time.
Args:
coreclr_args (CoreclrArguments): parsed args
"""
require_azure_storage_libraries(need_azure_identity=False)
from jitutil import BlobServiceClient
def upload_blob(file, blob_name):
blob_client = blob_service_client.get_blob_client(container=az_superpmi_container_name, blob=blob_name)
# Check if the blob already exists, and delete it if it does, before uploading / replacing it.
try:
blob_client.get_blob_properties()
# If no exception, then the blob already exists. Delete it!
logging.warning("Warning: replacing existing blob!")
blob_client.delete_blob()
except Exception:
# Blob doesn't exist already; that's good
pass
with open(file, "rb") as data:
blob_client.upload_blob(data)
files = []
for item in coreclr_args.mch_files:
files += get_files_from_path(item, match_func=lambda path: any(path.endswith(extension) for extension in [".mch"]))
files_to_upload = []
# Special case: walk the files list and for every ".mch" file, check to see that either the associated ".mct" file is already
# in the list, or add it if the ".mct" file exists.
for file in files.copy():
if file.endswith(".mch") and os.stat(file).st_size > 0:
files_to_upload.append(file)
mct_file = file + ".mct"
if os.path.isfile(mct_file) and os.stat(mct_file).st_size > 0:
files_to_upload.append(mct_file)
logging.info("Uploading:")
for item in files_to_upload:
logging.info(" %s", item)
blob_service_client = BlobServiceClient(account_url=az_blob_storage_account_uri, credential=coreclr_args.az_storage_key)
blob_folder_name = "{}/{}/{}/{}".format(az_collections_root_folder, coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)
total_bytes_uploaded = 0
with TempDir() as temp_location:
for file in files_to_upload:
# Zip compress the file we will upload
zip_name = os.path.basename(file) + ".zip"
zip_path = os.path.join(temp_location, zip_name)
logging.info("Compress %s -> %s", file, zip_path)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zip_file:
zip_file.write(file, os.path.basename(file))
original_stat_result = os.stat(file)
zip_stat_result = os.stat(zip_path)
logging.info("Compressed {:n} to {:n} bytes".format(original_stat_result.st_size, zip_stat_result.st_size))
total_bytes_uploaded += zip_stat_result.st_size
blob_name = "{}/{}".format(blob_folder_name, zip_name)
logging.info("Uploading: %s (%s) -> %s", file, zip_path, az_blob_storage_superpmi_container_uri + "/" + blob_name)
upload_blob(zip_path, blob_name)
logging.info("Uploaded {:n} bytes".format(total_bytes_uploaded))
def upload_private_mch(coreclr_args):
""" Upload a set of MCH files. Each MCH file is first ZIP compressed to save data space and upload/download time.
Args:
coreclr_args (CoreclrArguments): parsed args
"""
files = []
for item in coreclr_args.mch_files:
files += get_files_from_path(item, match_func=lambda path: any(path.endswith(extension) for extension in [".mch"]))
files_to_upload = []
# Special case: walk the files list and for every ".mch" file, check to see that either the associated ".mct" file is already
# in the list, or add it if the ".mct" file exists.
for file in files.copy():
if file.endswith(".mch") and os.stat(file).st_size > 0:
files_to_upload.append(file)
mct_file = file + ".mct"
if os.path.isfile(mct_file) and os.stat(mct_file).st_size > 0:
files_to_upload.append(mct_file)
logging.info("Uploading:")
for item in files_to_upload:
logging.info(" %s", item)
file_folder_name = os.path.join(coreclr_args.private_store, coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)
if not os.path.isdir(file_folder_name):
os.makedirs(file_folder_name)
total_bytes_uploaded = 0
with TempDir() as temp_location:
for file in files_to_upload:
# Zip compress the file we will upload
zip_name = os.path.basename(file) + ".zip"
zip_path = os.path.join(temp_location, zip_name)
logging.info("Compress %s -> %s", file, zip_path)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zip_file:
zip_file.write(file, os.path.basename(file))
original_stat_result = os.stat(file)
zip_stat_result = os.stat(zip_path)
logging.info("Compressed {:n} to {:n} bytes".format(original_stat_result.st_size, zip_stat_result.st_size))
total_bytes_uploaded += zip_stat_result.st_size
target_path = os.path.join(file_folder_name, zip_name)
logging.info("Uploading: %s (%s) -> %s", file, zip_path, target_path)
if os.path.exists(target_path):
logging.warning("Warning: replacing existing file '%s'!", target_path)
os.remove(target_path)
shutil.copy2(zip_path, target_path)
logging.info("Uploaded {:n} bytes".format(total_bytes_uploaded))
def list_collections_command(coreclr_args):
""" List the SuperPMI collections in Azure Storage
Args:
coreclr_args (CoreclrArguments) : parsed args
"""
blob_filter_string = "{}/{}/{}/".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch).lower()
# Determine if a URL in Azure Storage should be allowed. The URL looks like:
# https://clrjit.blob.core.windows.net/superpmi/jit-ee-guid/Linux/x64/Linux.x64.Checked.frameworks.mch.zip
# By default, filter to just the current jit-ee-guid, OS, and architecture.
# Only include MCH files, not MCT (TOC) files.
def filter_superpmi_collections(path: str):
path = path.lower()
return (path.endswith(".mch") or path.endswith(".mch.zip")) and (coreclr_args.all or path.startswith(blob_filter_string))
paths = list_superpmi_collections_container(filter_superpmi_collections)
if paths is None:
return
blob_url_prefix = "{}/{}/".format(az_blob_storage_superpmi_container_uri, az_collections_root_folder)
urls = [blob_url_prefix + path for path in paths]
count = len(urls)
logging.info("SuperPMI list-collections")
logging.info("")
if coreclr_args.all:
logging.info("%s collections", count)
else:
logging.info("%s collections for %s", count, blob_filter_string)
logging.info("")
for url in urls:
logging.info("%s", url)
def list_collections_local_command(coreclr_args):
""" List the SuperPMI collections local cache: where the Azure Storage collections are copied
Args:
coreclr_args (CoreclrArguments) : parsed args
"""
# Display the blob filter string the local cache corresponds to
blob_filter_string = "{}/{}/{}/".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch)
default_mch_root_dir = os.path.join(coreclr_args.spmi_location, "mch")
default_mch_dir = os.path.join(default_mch_root_dir, "{}.{}.{}".format(coreclr_args.jit_ee_version, coreclr_args.target_os, coreclr_args.mch_arch))
# Determine if a file should be allowed. The filenames look like:
# c:\gh\runtime\artifacts\spmi\mch\a5eec3a4-4176-43a7-8c2b-a05b551d4f49.windows.x64\corelib.windows.x64.Checked.mch
# c:\gh\runtime\artifacts\spmi\mch\a5eec3a4-4176-43a7-8c2b-a05b551d4f49.windows.x64\corelib.windows.x64.Checked.mch.mct
# Only include MCH files, not MCT (TOC) files.
def filter_superpmi_collections(path: str):
return path.lower().endswith(".mch")
if coreclr_args.all:
if not os.path.isdir(default_mch_root_dir):
logging.error("Local dir \"%s\" not found", default_mch_root_dir)
return
local_items = get_files_from_path(default_mch_root_dir)
else:
if not os.path.isdir(default_mch_dir):
logging.error("Local dir \"%s\" not found", default_mch_dir)
return
local_items = get_files_from_path(default_mch_dir)
filtered_local_items = [item for item in local_items if filter_superpmi_collections(item)]
count = len(filtered_local_items)
logging.info("SuperPMI list-collections --local")
logging.info("")
if coreclr_args.all:
logging.info("%s collections", count)
else:
logging.info("%s collections for %s", count, blob_filter_string)
logging.info("")
for item in filtered_local_items:
logging.info("%s", item)
def merge_mch(coreclr_args):
""" Merge all the files specified by a given pattern into a single output MCH file.
This is a utility function mostly for use by the CI scripting. It is a
thin wrapper around:
mcs -merge <output_mch_path> <pattern> -recursive -dedup -thin
mcs -toc <output_mch_path>
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
True on success, else False
"""
logging.info("Merging %s -> %s", coreclr_args.pattern, coreclr_args.output_mch_path)
mcs_path = determine_mcs_tool_path(coreclr_args)
command = [mcs_path, "-merge", coreclr_args.output_mch_path, coreclr_args.pattern, "-recursive", "-dedup", "-thin"]
return_code = run_and_log(command)
if return_code != 0:
logging.error("mcs -merge Failed with code %s", return_code)
return False
logging.info("Creating MCT file for %s", coreclr_args.output_mch_path)
command = [mcs_path, "-toc", coreclr_args.output_mch_path]
return_code = run_and_log(command)
if return_code != 0:
logging.error("mcs -toc Failed with code %s", return_code)
return False
return True
def get_mch_files_for_replay(local_mch_paths, filters):
""" Given a list of local MCH files, and any specified filters (in coreclr_args.filter),
find all the MCH files to use for replay. Note that `local_mch_paths` can contain
both files and directories.
Args:
local_mch_paths (list) : list of local files and directories to use to find MCH files to use
filters (list) : list of strings, one of which must match each candidate MCH path
Returns:
None if error (with an error message already printed), else a filtered list of full paths of MCH files.
"""
if local_mch_paths is None:
logging.error("No MCH files specified")
return None
mch_files = []
for item in local_mch_paths:
# If there are specified filters, only run those matching files.
mch_files += get_files_from_path(item,
match_func=lambda path:
any(path.endswith(extension) for extension in [".mch"])
and ((filters is None) or any(filter_item.lower() in path for filter_item in filters)))
if len(mch_files) == 0:
logging.error("No MCH files found to replay")
return None
return mch_files
def process_base_jit_path_arg(coreclr_args):
""" Process the -base_jit_path argument.
If the argument is present, check it for being a path to a file.
If not present, try to find and download a baseline JIT based on the current environment:
1. Determine the current git hash using:
git rev-parse HEAD
or use the `-git_hash` argument (call the result `git_hash`).
2. Determine the baseline: where does this hash meet `main` using:
git merge-base `git_hash` main
or use the `-base_git_hash` argument (call the result `base_git_hash`).
3. If the `-base_git_hash` argument is used, use that directly as the exact git
hash of the baseline JIT to use.
4. Otherwise, figure out the latest hash, starting with `base_git_hash`, that contains any changes to
the src\\coreclr\\jit directory. (We do this because the JIT rolling build only includes
builds for changes to this directory. So, this logic needs to stay in sync with the logic
that determines what causes the JIT directory to be rebuilt. E.g., it should also get
rebuilt if the JIT-EE interface GUID changes. Alternatively, we can take the entire list
of changes, and probe the rolling build drop for all of them.)
5. Check if we've already downloaded a JIT that matches `base_git_hash`, and use that if available.
6. Starting with `base_git_hash`, and possibly walking to older changes, look for matching builds
in the JIT rolling build drops.
7. If a baseline clrjit is found, download it to the `spmi/basejit/git-hash.os.architecture.build_type`
cache directory.
8. Set coreclr_args.base_jit_path to the full path to the downloaded baseline JIT.
Args:
coreclr_args (CoreclrArguments) : parsed args
Returns:
Nothing
coreclr_args.base_jit_path is set to the path to the JIT to use for the baseline JIT.
"""
if coreclr_args.base_jit_path is not None:
if not os.path.isfile(coreclr_args.base_jit_path):
raise RuntimeError("Specified -base_jit_path does not point to a file")
coreclr_args.base_jit_path = os.path.abspath(coreclr_args.base_jit_path)
return
# We cache baseline jits under the following directory. Note that we can't create the full directory path
# until we know the baseline JIT hash.
default_basejit_root_dir = os.path.join(coreclr_args.spmi_location, "basejit")
# Do all the remaining commands, including a number of 'git' commands including relative paths,
# from the root of the runtime repo.
with ChangeDir(coreclr_args.runtime_repo_location):
if coreclr_args.git_hash is None:
command = [ "git", "rev-parse", "HEAD" ]
logging.debug("Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_git_rev_parse, _ = proc.communicate()
return_code = proc.returncode
if return_code == 0:
current_hash = stdout_git_rev_parse.decode('utf-8').strip()
logging.debug("Current hash: %s", current_hash)
else:
raise RuntimeError("Couldn't determine current git hash")
else:
current_hash = coreclr_args.git_hash
if coreclr_args.base_git_hash is None:
# We've got the current hash; figure out the baseline hash.
command = [ "git", "merge-base", current_hash, "main" ]
logging.debug("Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_git_merge_base, _ = proc.communicate()
return_code = proc.returncode
if return_code == 0:
baseline_hash = stdout_git_merge_base.decode('utf-8').strip()
logging.info("Baseline hash: %s", current_hash)
else:
raise RuntimeError("Couldn't determine baseline git hash")
else:
baseline_hash = coreclr_args.base_git_hash
if coreclr_args.base_git_hash is None:
# Enumerate the last 20 changes, starting with the baseline, that included JIT changes.
command = [ "git", "log", "--pretty=format:%H", baseline_hash, "-20", "--", "src/coreclr/jit/*" ]
logging.debug("Invoking: %s", " ".join(command))
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
stdout_change_list, _ = proc.communicate()
return_code = proc.returncode
change_list_hashes = []
if return_code == 0:
change_list_hashes = stdout_change_list.decode('utf-8').strip().splitlines()
else:
raise RuntimeError("Couldn't determine list of JIT changes starting with baseline hash")
if len(change_list_hashes) == 0:
raise RuntimeError("No JIT changes found starting with baseline hash")
else:
# If `-base_git_hash` is specified, then we use exactly that hash and no other for the baseline.
change_list_hashes = [ coreclr_args.base_git_hash ]
# For each hash, (1) see if we have the JIT already, and if not (2) try to download the corresponding JIT from the rolling build.
hashnum = 1
for git_hash in change_list_hashes:
logging.debug("%s: %s", hashnum, git_hash)
jit_name = determine_jit_name(coreclr_args)
basejit_dir = os.path.join(default_basejit_root_dir, "{}.{}.{}.{}".format(git_hash, coreclr_args.host_os, coreclr_args.arch, coreclr_args.build_type))
basejit_path = os.path.join(basejit_dir, jit_name)
if os.path.isfile(basejit_path):
# We found this baseline JIT in our cache; use it!
coreclr_args.base_jit_path = basejit_path
logging.info("Using baseline %s", coreclr_args.base_jit_path)
return
# It's not in our cache; is there one built by the rolling build to download?
blob_folder_name = "{}/{}/{}/{}/{}/{}".format(az_builds_root_folder, git_hash, coreclr_args.host_os, coreclr_args.arch, coreclr_args.build_type, jit_name)
blob_uri = "{}/{}".format(az_blob_storage_jitrollingbuild_container_uri, blob_folder_name)
urls = [ blob_uri ]
local_files = download_files(urls, basejit_dir, verbose=False, is_azure_storage=True, fail_if_not_found=False)
if len(local_files) > 0:
if hashnum > 1:
logging.warning("Warning: the baseline found is not built with the first git hash with JIT code changes; there may be extraneous diffs")
# We expect local_files to be length 1, since we only attempted to download a single file.
if len(local_files) > 1:
logging.error("Error: downloaded more than one file?")
coreclr_args.base_jit_path = local_files[0]
logging.info("Downloaded %s", blob_uri)
logging.info("Using baseline %s", coreclr_args.base_jit_path)
return
# We didn't find a baseline; keep looking
hashnum += 1
# We ran out of hashes of JIT changes, and didn't find a baseline. Give up.
logging.error("Error: no baseline JIT found")
raise RuntimeError("No baseline JIT found")
def setup_args(args):
""" Setup the args for SuperPMI to use.
Args:
args (ArgParse): args parsed by arg parser
Returns:
args (CoreclrArguments)
"""
# Start setting up logging.
# Set up the console logger immediately. Later, after we've parsed some arguments, we'll add the file logger and
# change the console logger level to the one parsed by the arguments. We need to do this initial setup before the first
# logging command is executed.
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
stream_handler = logging.StreamHandler(sys.stdout)
stream_handler.setLevel(logging.DEBUG)
logger.addHandler(stream_handler)
# Parse the arguments
coreclr_args = CoreclrArguments(args, require_built_core_root=False, require_built_product_dir=False, require_built_test_dir=False, default_build_type="Checked")
coreclr_args.verify(args,
"mode", # "mode" is from the `parser.add_subparsers(dest='mode')` call
lambda unused: True,
"Unable to set mode")
coreclr_args.verify(args,
"log_level",
lambda arg: any(arg.upper() == level for level in [ "CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG" ]),
"Unable to set log_level {}".format,
modify_arg=lambda arg: "INFO" if arg is None else arg.upper())
coreclr_args.verify(args,
"log_file",
lambda unused: True,
"Unable to set log_file.")
def setup_spmi_location_arg(spmi_location):
if spmi_location is None:
if "SUPERPMI_CACHE_DIRECTORY" in os.environ:
spmi_location = os.environ["SUPERPMI_CACHE_DIRECTORY"]
spmi_location = os.path.abspath(spmi_location)
else:
spmi_location = os.path.abspath(os.path.join(coreclr_args.artifacts_location, "spmi"))
return spmi_location
coreclr_args.verify(args,
"spmi_location",
lambda unused: True,
"Unable to set spmi_location",
modify_arg=setup_spmi_location_arg)
coreclr_args.verify(args,
"no_progress",
lambda unused: True,
"Unable to set no_progress")
# Finish setting up logging.
# The spmi_location is the root directory where we put the log file.
# Log everything to the log file and only the specified verbosity to the console logger.
# Now, change the stream handler output level.
stream_handler.setLevel(coreclr_args.log_level)
log_file = None
if coreclr_args.log_file is None:
if hasattr(coreclr_args, "spmi_location"):
log_file = create_unique_file_name(coreclr_args.spmi_location, "superpmi", "log")
if not os.path.isdir(coreclr_args.spmi_location):
os.makedirs(coreclr_args.spmi_location)
else:
log_file = coreclr_args.log_file
log_dir = os.path.dirname(log_file)
if not os.path.isdir(log_dir):
print("Creating log directory {} for log file {}".format(log_dir, log_file))
os.makedirs(log_dir)
if log_file is not None:
# If the log file exists, we could use the default behavior and simply append.
# For now, though, just delete it and warn. We can change behavior later if there's user feedback on it.
if os.path.isfile(log_file):
logging.critical("Warning: deleting existing log file %s", log_file)
os.remove(log_file)
file_handler = logging.FileHandler(log_file, encoding='utf8')
file_handler.setLevel(logging.DEBUG)
logger.addHandler(file_handler)
logging.critical("================ Logging to %s", log_file)
# Finish verifying the arguments
def setup_jit_ee_version_arg(jit_ee_version):
if jit_ee_version is not None:
# The user passed a specific jit_ee_version on the command-line, so use that
return jit_ee_version
return determine_jit_ee_version(coreclr_args)
def setup_jit_path_arg(jit_path):
if jit_path is not None:
return os.path.abspath(jit_path)
return find_tool(coreclr_args, determine_jit_name(coreclr_args), search_path=False) # It doesn't make sense to search PATH for the JIT dll.
def setup_error_limit(error_limit):
if error_limit is None:
return None
elif not error_limit.isnumeric():
return None
return error_limit
def verify_jit_ee_version_arg():
coreclr_args.verify(args,
"jit_ee_version",
lambda unused: True,
"Invalid JIT-EE Version.",
modify_arg=setup_jit_ee_version_arg)
def verify_target_args():
coreclr_args.verify(args,
"target_os",
lambda target_os: check_target_os(coreclr_args, target_os),
lambda target_os: "Unknown target_os {}\nSupported OS: {}".format(target_os, (", ".join(coreclr_args.valid_host_os))),
modify_arg=lambda target_os: target_os if target_os is not None else coreclr_args.host_os) # Default to `host_os`
coreclr_args.verify(args,
"target_arch",
lambda target_arch: check_target_arch(coreclr_args, target_arch),
lambda target_arch: "Unknown target_arch {}\nSupported architectures: {}".format(target_arch, (", ".join(coreclr_args.valid_arches))),
modify_arg=lambda target_arch: target_arch if target_arch is not None else coreclr_args.arch) # Default to `arch`
coreclr_args.verify(args,
"mch_arch",
lambda mch_arch: check_mch_arch(coreclr_args, mch_arch),
lambda mch_arch: "Unknown mch_arch {}\nSupported architectures: {}".format(mch_arch, (", ".join(coreclr_args.valid_arches))),
modify_arg=lambda mch_arch: mch_arch if mch_arch is not None else coreclr_args.target_arch) # Default to `target_arch`
def verify_superpmi_common_args():
coreclr_args.verify(args,
"break_on_assert",
lambda unused: True,
"Unable to set break_on_assert")
coreclr_args.verify(args,
"break_on_error",
lambda unused: True,
"Unable to set break_on_error")
coreclr_args.verify(args,
"skip_cleanup",
lambda unused: True,
"Unable to set skip_cleanup")
coreclr_args.verify(args,
"sequential",
lambda unused: True,
"Unable to set sequential.")
coreclr_args.verify(args,
"error_limit",
lambda unused: True,
"Unable to set error_limit",
modify_arg=setup_error_limit)
coreclr_args.verify(args,
"spmi_log_file",
lambda unused: True,
"Unable to set spmi_log_file.")
if coreclr_args.spmi_log_file is not None and not coreclr_args.sequential:
print("-spmi_log_file requires --sequential")
sys.exit(1)
def verify_replay_common_args():
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"force_download",
lambda unused: True,
"Unable to set force_download")
coreclr_args.verify(args,
"jit_name",
lambda unused: True,
"Unable to set jit_name.")
coreclr_args.verify(args,
"altjit", # Must be set before `jit_path` (determine_jit_name() depends on it)
lambda unused: True,
"Unable to set altjit.")
coreclr_args.verify(args,
"filter",
lambda unused: True,
"Unable to set filter.")
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
coreclr_args.verify(args,
"compile",
lambda unused: True,
"Method context not valid")
coreclr_args.verify(args,
"private_store",
lambda item: True,
"Specify private_store or set environment variable SUPERPMI_PRIVATE_STORE to use a private store.",
modify_arg=lambda arg: os.environ["SUPERPMI_PRIVATE_STORE"].split(";") if arg is None and "SUPERPMI_PRIVATE_STORE" in os.environ else arg)
if coreclr_args.mode == "collect":
verify_target_args()
verify_superpmi_common_args()
coreclr_args.verify(args,
"jit_name", # The replay code checks this, so make sure it's set
lambda unused: True,
"Unable to set jit_name.")
coreclr_args.verify(args,
"altjit", # The replay code checks this, so make sure it's set
lambda unused: True,
"Unable to set altjit.")
coreclr_args.verify(args,
"jitoption", # The replay code checks this, so make sure it's set
lambda unused: True,
"Unable to set jitoption")
coreclr_args.verify(args,
"compile", # The replay code checks this, so make sure it's set
lambda unused: True,
"Method context not valid")
coreclr_args.verify(args,
"collection_command",
lambda unused: True,
"Unable to set collection_command.")
coreclr_args.verify(args,
"collection_args",
lambda unused: True,
"Unable to set collection_args",
modify_arg=lambda collection_args: collection_args.split(" ") if collection_args is not None else [])
coreclr_args.verify(args,
"pmi",
lambda unused: True,
"Unable to set pmi")
coreclr_args.verify(args,
"crossgen2",
lambda unused: True,
"Unable to set crossgen2")
coreclr_args.verify(args,
"assemblies",
lambda unused: True,
"Unable to set assemblies",
modify_arg=lambda items: [item for item in items if os.path.isdir(item) or os.path.isfile(item)])
coreclr_args.verify(args,
"exclude",
lambda unused: True,
"Unable to set exclude")
coreclr_args.verify(args,
"pmi_location",
lambda unused: True,
"Unable to set pmi_location")
coreclr_args.verify(args,
"output_mch_path",
lambda output_mch_path: output_mch_path is None or (not os.path.isdir(os.path.abspath(output_mch_path)) and not os.path.isfile(os.path.abspath(output_mch_path))),
"Invalid output_mch_path \"{}\"; is it an existing directory or file?".format,
modify_arg=lambda output_mch_path: None if output_mch_path is None else os.path.abspath(output_mch_path))
coreclr_args.verify(args,
"merge_mch_files",
lambda unused: True,
"Unable to set merge_mch_files.")
coreclr_args.verify(args,
"mch_files",
lambda items: items is None or len(items) > 0,
"Unable to set mch_files.")
coreclr_args.verify(args,
"skip_collect_mc_files",
lambda unused: True,
"Unable to set skip_collect_mc_files")
coreclr_args.verify(args,
"temp_dir",
lambda unused: True,
"Unable to set temp_dir.")
coreclr_args.verify(args,
"skip_collection_step",
lambda unused: True,
"Unable to set skip_collection_step.")
coreclr_args.verify(args,
"skip_merge_step",
lambda unused: True,
"Unable to set skip_merge_step.")
coreclr_args.verify(args,
"skip_clean_and_verify_step",
lambda unused: True,
"Unable to set skip_clean_and_verify_step.")
coreclr_args.verify(args,
"use_zapdisable",
lambda unused: True,
"Unable to set use_zapdisable")
coreclr_args.verify(args,
"tiered_compilation",
lambda unused: True,
"Unable to set tiered_compilation")
coreclr_args.verify(args,
"pmi_path",
lambda unused: True,
"Unable to set pmi_path")
if (args.collection_command is None) and (args.pmi is False) and (args.crossgen2 is False):
print("Either a collection command or `--pmi` or `--crossgen2` must be specified")
sys.exit(1)
if (args.collection_command is not None) and (len(args.assemblies) > 0):
print("Don't specify `-assemblies` if a collection command is given")
sys.exit(1)
if (args.collection_command is not None) and (len(args.exclude) > 0):
print("Don't specify `-exclude` if a collection command is given")
sys.exit(1)
if ((args.pmi is True) or (args.crossgen2 is True)) and (len(args.assemblies) == 0):
print("Specify `-assemblies` if `--pmi` or `--crossgen2` is given")
sys.exit(1)
if not args.pmi:
if args.pmi_path is not None:
logging.warning("Warning: -pmi_path is set but --pmi is not.")
if args.pmi_location is not None:
logging.warning("Warning: -pmi_location is set but --pmi is not.")
if args.collection_command is None and args.merge_mch_files is not True:
assert args.collection_args is None
assert (args.pmi is True) or (args.crossgen2 is True)
assert len(args.assemblies) > 0
if coreclr_args.merge_mch_files:
assert len(coreclr_args.mch_files) > 0
coreclr_args.skip_collection_step = True
if coreclr_args.crossgen2:
# Can we find crossgen2?
crossgen2_tool_name = "crossgen2.dll"
crossgen2_tool_path = os.path.abspath(os.path.join(coreclr_args.core_root, "crossgen2", crossgen2_tool_name))
if not os.path.exists(crossgen2_tool_path):
print("`--crossgen2` is specified, but couldn't find " + crossgen2_tool_path + ". (Is it built?)")
sys.exit(1)
# Which dotnet will we use to run it?
dotnet_script_name = "dotnet.cmd" if platform.system() == "Windows" else "dotnet.sh"
dotnet_tool_path = os.path.abspath(os.path.join(coreclr_args.runtime_repo_location, dotnet_script_name))
if not os.path.exists(dotnet_tool_path):
dotnet_tool_name = determine_dotnet_tool_name(coreclr_args)
dotnet_tool_path = find_tool(coreclr_args, dotnet_tool_name, search_core_root=False, search_product_location=False, search_path=True, throw_on_not_found=False) # Only search path
coreclr_args.crossgen2_tool_path = crossgen2_tool_path
coreclr_args.dotnet_tool_path = dotnet_tool_path
logging.debug("Using crossgen2 tool %s", coreclr_args.crossgen2_tool_path)
if coreclr_args.dotnet_tool_path is not None:
logging.debug("Using dotnet tool %s", coreclr_args.dotnet_tool_path)
if coreclr_args.temp_dir is not None:
coreclr_args.temp_dir = os.path.abspath(coreclr_args.temp_dir)
logging.debug("Using temp_dir %s", coreclr_args.temp_dir)
if coreclr_args.collection_command is not None:
if os.path.isfile(coreclr_args.collection_command):
coreclr_args.collection_command = os.path.abspath(coreclr_args.collection_command)
else:
# Look on path and in Core_Root. Searching Core_Root is useful so you can just specify "corerun.exe" as the collection command in it can be found.
collection_tool_path = find_tool(coreclr_args, coreclr_args.collection_command, search_core_root=True, search_product_location=False, search_path=True, throw_on_not_found=False)
if collection_tool_path is None:
print("Couldn't find collection command \"{}\"".format(coreclr_args.collection_command))
sys.exit(1)
coreclr_args.collection_command = collection_tool_path
logging.info("Using collection command from PATH: \"%s\"", coreclr_args.collection_command)
elif coreclr_args.mode == "replay":
verify_target_args()
verify_superpmi_common_args()
verify_replay_common_args()
coreclr_args.verify(args,
"jit_path",
os.path.isfile,
"Error: JIT not found at jit_path {}".format,
modify_arg=setup_jit_path_arg)
coreclr_args.verify(args,
"jitoption",
lambda unused: True,
"Unable to set jitoption")
jit_in_product_location = False
if coreclr_args.product_location.lower() in coreclr_args.jit_path.lower():
jit_in_product_location = True
determined_arch = None
determined_build_type = None
if jit_in_product_location:
# Get os/arch/flavor directory, e.g. split "F:\gh\runtime\artifacts\bin\coreclr\windows.x64.Checked" with "F:\gh\runtime\artifacts\bin\coreclr"
# yielding
# [0]: ""
# [1]: "\windows.x64.Checked"
standard_location_split = os.path.dirname(coreclr_args.jit_path).split(os.path.dirname(coreclr_args.product_location))
assert coreclr_args.host_os in standard_location_split[1]
# Get arch/flavor. Remove leading slash.
specialized_path = standard_location_split[1].split(os.path.sep)[1]
# Split components: "windows.x64.Checked" into:
# [0]: "windows"
# [1]: "x64"
# [2]: "Checked"
determined_split = specialized_path.split(".")
determined_arch = determined_split[1]
determined_build_type = determined_split[2]
# Make a more intelligent decision about the arch and build type
# based on the path of the jit passed
if jit_in_product_location and coreclr_args.build_type not in coreclr_args.jit_path:
coreclr_args.verify(determined_arch.lower(),
"arch",
lambda unused: True,
"Unable to set arch")
coreclr_args.verify(determined_build_type,
"build_type",
coreclr_args.check_build_type,
"Invalid build_type")
elif coreclr_args.mode == "asmdiffs":
verify_target_args()
verify_superpmi_common_args()
verify_replay_common_args()
coreclr_args.verify(args,
"base_jit_path",
lambda unused: True,
"Unable to set base_jit_path")
coreclr_args.verify(args,
"diff_jit_path",
os.path.isfile,
"Error: JIT not found at diff_jit_path {}".format,
modify_arg=setup_jit_path_arg)
coreclr_args.verify(args,
"git_hash",
lambda unused: True,
"Unable to set git_hash")
coreclr_args.verify(args,
"base_git_hash",
lambda unused: True,
"Unable to set base_git_hash")
coreclr_args.verify(args,
"gcinfo",
lambda unused: True,
"Unable to set gcinfo.")
coreclr_args.verify(args,
"debuginfo",
lambda unused: True,
"Unable to set debuginfo.")
coreclr_args.verify(args,
"diff_jit_dump",
lambda unused: True,
"Unable to set diff_jit_dump.")
coreclr_args.verify(args,
"base_jit_option",
lambda unused: True,
"Unable to set base_jit_option.")
coreclr_args.verify(args,
"diff_jit_option",
lambda unused: True,
"Unable to set diff_jit_option.")
coreclr_args.verify(args,
"tag",
lambda unused: True,
"Unable to set tag.",
modify_arg=lambda arg: make_safe_filename(arg) if arg is not None else arg)
coreclr_args.verify(args,
"metrics",
lambda unused: True,
"Unable to set metrics.")
coreclr_args.verify(args,
"retainOnlyTopFiles",
lambda unused: True,
"Unable to set retainOnlyTopFiles.")
coreclr_args.verify(args,
"diff_with_release",
lambda unused: True,
"Unable to set diff_with_release.")
process_base_jit_path_arg(coreclr_args)
jit_in_product_location = False
if coreclr_args.product_location.lower() in coreclr_args.base_jit_path.lower():
jit_in_product_location = True
determined_arch = None
determined_build_type = None
if jit_in_product_location:
# Get os/arch/flavor directory, e.g. split "F:\gh\runtime\artifacts\bin\coreclr\windows.x64.Checked" with "F:\gh\runtime\artifacts\bin\coreclr"
# yielding
# [0]: ""
# [1]: "\windows.x64.Checked"
standard_location_split = os.path.dirname(coreclr_args.base_jit_path).split(os.path.dirname(coreclr_args.product_location))
assert coreclr_args.host_os in standard_location_split[1]
# Get arch/flavor. Remove leading slash.
specialized_path = standard_location_split[1].split(os.path.sep)[1]
# Split components: "windows.x64.Checked" into:
# [0]: "windows"
# [1]: "x64"
# [2]: "Checked"
determined_split = specialized_path.split(".")
determined_arch = determined_split[1]
determined_build_type = determined_split[2]
# Make a more intelligent decision about the arch and build type
# based on the path of the jit passed
if jit_in_product_location and coreclr_args.build_type not in coreclr_args.base_jit_path:
coreclr_args.verify(determined_build_type,
"build_type",
coreclr_args.check_build_type,
"Invalid build_type")
if jit_in_product_location and coreclr_args.arch not in coreclr_args.base_jit_path:
coreclr_args.verify(determined_arch.lower(),
"arch",
lambda unused: True,
"Unable to set arch")
coreclr_args.verify(determine_coredis_tools(coreclr_args),
"coredistools_location",
os.path.isfile,
"Unable to find coredistools.")
elif coreclr_args.mode == "upload":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"az_storage_key",
lambda item: item is not None,
"Specify az_storage_key or set environment variable CLRJIT_AZ_KEY to the key to use.",
modify_arg=lambda arg: os.environ["CLRJIT_AZ_KEY"] if arg is None and "CLRJIT_AZ_KEY" in os.environ else arg)
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
elif coreclr_args.mode == "upload-private":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
coreclr_args.verify(args,
"private_store",
lambda unused: True,
"Unable to set private_store")
if not os.path.isdir(coreclr_args.private_store):
print("Error: private store directory '" + coreclr_args.private_store + "' not found.")
sys.exit(1)
# Safety measure: don't allow CLRJIT_AZ_KEY to be set if we are uploading to a private store.
# Note that this should be safe anyway, since we're publishing something private, not public.
if "CLRJIT_AZ_KEY" in os.environ:
print("Error: environment variable CLRJIT_AZ_KEY is set, but command is `upload-private`, not `upload`. That is not allowed.")
sys.exit(1)
elif coreclr_args.mode == "download":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"force_download",
lambda unused: True,
"Unable to set force_download")
coreclr_args.verify(args,
"filter",
lambda unused: True,
"Unable to set filter.")
coreclr_args.verify(args,
"mch_files",
lambda unused: True,
"Unable to set mch_files")
coreclr_args.verify(args,
"private_store",
lambda item: True,
"Specify private_store or set environment variable SUPERPMI_PRIVATE_STORE to use a private store.",
modify_arg=lambda arg: os.environ["SUPERPMI_PRIVATE_STORE"].split(";") if arg is None and "SUPERPMI_PRIVATE_STORE" in os.environ else arg)
elif coreclr_args.mode == "list-collections":
verify_target_args()
verify_jit_ee_version_arg()
coreclr_args.verify(args,
"all",
lambda unused: True,
"Unable to set all")
coreclr_args.verify(args,
"local",
lambda unused: True,
"Unable to set local")
elif coreclr_args.mode == "merge-mch":
coreclr_args.verify(args,
"output_mch_path",
lambda output_mch_path: not os.path.isdir(os.path.abspath(output_mch_path)) and not os.path.isfile(os.path.abspath(output_mch_path)),
"Invalid output_mch_path \"{}\"; is it an existing directory or file?".format,
modify_arg=lambda output_mch_path: os.path.abspath(output_mch_path))
coreclr_args.verify(args,
"pattern",
lambda unused: True,
"Unable to set pattern")
if coreclr_args.mode == "replay" or coreclr_args.mode == "asmdiffs" or coreclr_args.mode == "download":
if hasattr(coreclr_args, "private_store") and coreclr_args.private_store is not None:
logging.info("Using private stores:")
for path in coreclr_args.private_store:
logging.info(" %s", path)
return coreclr_args
################################################################################
# main
################################################################################
def main(args):
""" Main method
"""
# await/async requires python >= 3.7
if sys.version_info.major < 3 and sys.version_info.minor < 7:
print("Error, language features require the latest python version.")
print("Please install python 3.7 or greater")
return 1
# Parse the arguments.
coreclr_args = setup_args(args)
#
# Run the selected command
#
success = True
if coreclr_args.mode == "collect":
# Start a new SuperPMI Collection.
begin_time = datetime.datetime.now()
logging.info("SuperPMI collect")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
collection = SuperPMICollect(coreclr_args)
success = collection.collect()
if success and coreclr_args.output_mch_path is not None:
logging.info("Generated MCH file: %s", coreclr_args.output_mch_path)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "replay":
# Start a new SuperPMI Replay
local_mch_paths = process_mch_files_arg(coreclr_args)
mch_files = get_mch_files_for_replay(local_mch_paths, coreclr_args.filter)
if mch_files is None:
return 1
begin_time = datetime.datetime.now()
logging.info("SuperPMI replay")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
jit_path = coreclr_args.jit_path
logging.info("JIT Path: %s", jit_path)
logging.info("Using MCH files:")
for mch_file in mch_files:
logging.info(" %s", mch_file)
replay = SuperPMIReplay(coreclr_args, mch_files, jit_path)
success = replay.replay()
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "asmdiffs":
# Start a new SuperPMI Replay with AsmDiffs
local_mch_paths = process_mch_files_arg(coreclr_args)
mch_files = get_mch_files_for_replay(local_mch_paths, coreclr_args.filter)
if mch_files is None:
return 1
begin_time = datetime.datetime.now()
logging.info("SuperPMI ASM diffs")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
base_jit_path = coreclr_args.base_jit_path
diff_jit_path = coreclr_args.diff_jit_path
if coreclr_args.diff_with_release:
logging.info("Diff between Checked and Release.")
logging.info("Base JIT Path: %s", base_jit_path)
logging.info("Diff JIT Path: %s", diff_jit_path)
logging.info("Using MCH files:")
for mch_file in mch_files:
logging.info(" %s", mch_file)
asm_diffs = SuperPMIReplayAsmDiffs(coreclr_args, mch_files, base_jit_path, diff_jit_path)
success = asm_diffs.replay_with_asm_diffs()
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "upload":
begin_time = datetime.datetime.now()
logging.info("SuperPMI upload")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
upload_mch(coreclr_args)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "upload-private":
begin_time = datetime.datetime.now()
logging.info("SuperPMI upload-private")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
upload_private_mch(coreclr_args)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "download":
begin_time = datetime.datetime.now()
logging.info("SuperPMI download")
logging.debug("------------------------------------------------------------")
logging.debug("Start time: %s", begin_time.strftime("%H:%M:%S"))
# Processing the arg does the download and caching
process_mch_files_arg(coreclr_args)
end_time = datetime.datetime.now()
elapsed_time = end_time - begin_time
logging.debug("Finish time: %s", end_time.strftime("%H:%M:%S"))
logging.debug("Elapsed time: %s", elapsed_time)
elif coreclr_args.mode == "list-collections":
if coreclr_args.local:
list_collections_local_command(coreclr_args)
else:
list_collections_command(coreclr_args)
elif coreclr_args.mode == "merge-mch":
success = merge_mch(coreclr_args)
else:
raise NotImplementedError(coreclr_args.mode)
return 0 if success else 1
################################################################################
# __main__
################################################################################
if __name__ == "__main__":
args = parser.parse_args()
sys.exit(main(args))
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Memory/tests/MemoryMarshal/CastSpan.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace System.SpanTests
{
public static partial class MemoryMarshalTests
{
[Fact]
public static void CastSpanUIntToUShort()
{
uint[] a;
if (BitConverter.IsLittleEndian)
{
a = new uint[] { 0x44332211, 0x88776655 };
}
else
{
a = new uint[] { 0x22114433, 0x66558877 };
}
Span<uint> span = new Span<uint>(a);
Span<ushort> asUShort = MemoryMarshal.Cast<uint, ushort>(span);
Assert.True(Unsafe.AreSame<ushort>(ref Unsafe.As<uint, ushort>(ref MemoryMarshal.GetReference(span)), ref MemoryMarshal.GetReference(asUShort)));
asUShort.Validate<ushort>(0x2211, 0x4433, 0x6655, 0x8877);
}
struct EmptyStruct { }
[Fact]
public static void CastSpanToEmptyStruct()
{
Span<uint> span = new Span<uint>(new uint[] { 1 });
Span<EmptyStruct> emptyspan = MemoryMarshal.Cast<uint, EmptyStruct>(span);
Assert.Equal(1, Unsafe.SizeOf<EmptyStruct>());
Assert.Equal(4, emptyspan.Length);
}
[Fact]
public static void CastSpanShortToLong()
{
short[] a;
if (BitConverter.IsLittleEndian)
{
a = new short[] { 0x1234, 0x2345, 0x3456, 0x4567, 0x5678 };
}
else
{
a = new short[] { 0x4567, 0x3456, 0x2345, 0x1234, 0x5678 };
}
Span<short> span = new Span<short>(a);
Span<long> asLong = MemoryMarshal.Cast<short, long>(span);
Assert.True(Unsafe.AreSame<long>(ref Unsafe.As<short, long>(ref MemoryMarshal.GetReference(span)), ref MemoryMarshal.GetReference(asLong)));
asLong.Validate<long>(0x4567345623451234);
}
[Fact]
public static unsafe void CastSpanOverflow()
{
Span<TestHelpers.TestStructExplicit> span = new Span<TestHelpers.TestStructExplicit>(null, int.MaxValue);
TestHelpers.AssertThrows<OverflowException, TestHelpers.TestStructExplicit>(span, (_span) => MemoryMarshal.Cast<TestHelpers.TestStructExplicit, byte>(_span).DontBox());
TestHelpers.AssertThrows<OverflowException, TestHelpers.TestStructExplicit>(span, (_span) => MemoryMarshal.Cast<TestHelpers.TestStructExplicit, ulong>(_span).DontBox());
}
[Fact]
public static void CastSpanToTypeContainsReferences()
{
Span<uint> span = new Span<uint>(Array.Empty<uint>());
TestHelpers.AssertThrows<ArgumentException, uint>(span, (_span) => MemoryMarshal.Cast<uint, TestHelpers.StructWithReferences>(_span).DontBox());
}
[Fact]
public static void CastSpanFromTypeContainsReferences()
{
Span<TestHelpers.StructWithReferences> span = new Span<TestHelpers.StructWithReferences>(Array.Empty<TestHelpers.StructWithReferences>());
TestHelpers.AssertThrows<ArgumentException, TestHelpers.StructWithReferences>(span, (_span) => MemoryMarshal.Cast<TestHelpers.StructWithReferences, uint>(_span).DontBox());
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace System.SpanTests
{
public static partial class MemoryMarshalTests
{
[Fact]
public static void CastSpanUIntToUShort()
{
uint[] a;
if (BitConverter.IsLittleEndian)
{
a = new uint[] { 0x44332211, 0x88776655 };
}
else
{
a = new uint[] { 0x22114433, 0x66558877 };
}
Span<uint> span = new Span<uint>(a);
Span<ushort> asUShort = MemoryMarshal.Cast<uint, ushort>(span);
Assert.True(Unsafe.AreSame<ushort>(ref Unsafe.As<uint, ushort>(ref MemoryMarshal.GetReference(span)), ref MemoryMarshal.GetReference(asUShort)));
asUShort.Validate<ushort>(0x2211, 0x4433, 0x6655, 0x8877);
}
struct EmptyStruct { }
[Fact]
public static void CastSpanToEmptyStruct()
{
Span<uint> span = new Span<uint>(new uint[] { 1 });
Span<EmptyStruct> emptyspan = MemoryMarshal.Cast<uint, EmptyStruct>(span);
Assert.Equal(1, Unsafe.SizeOf<EmptyStruct>());
Assert.Equal(4, emptyspan.Length);
}
[Fact]
public static void CastSpanShortToLong()
{
short[] a;
if (BitConverter.IsLittleEndian)
{
a = new short[] { 0x1234, 0x2345, 0x3456, 0x4567, 0x5678 };
}
else
{
a = new short[] { 0x4567, 0x3456, 0x2345, 0x1234, 0x5678 };
}
Span<short> span = new Span<short>(a);
Span<long> asLong = MemoryMarshal.Cast<short, long>(span);
Assert.True(Unsafe.AreSame<long>(ref Unsafe.As<short, long>(ref MemoryMarshal.GetReference(span)), ref MemoryMarshal.GetReference(asLong)));
asLong.Validate<long>(0x4567345623451234);
}
[Fact]
public static unsafe void CastSpanOverflow()
{
Span<TestHelpers.TestStructExplicit> span = new Span<TestHelpers.TestStructExplicit>(null, int.MaxValue);
TestHelpers.AssertThrows<OverflowException, TestHelpers.TestStructExplicit>(span, (_span) => MemoryMarshal.Cast<TestHelpers.TestStructExplicit, byte>(_span).DontBox());
TestHelpers.AssertThrows<OverflowException, TestHelpers.TestStructExplicit>(span, (_span) => MemoryMarshal.Cast<TestHelpers.TestStructExplicit, ulong>(_span).DontBox());
}
[Fact]
public static void CastSpanToTypeContainsReferences()
{
Span<uint> span = new Span<uint>(Array.Empty<uint>());
TestHelpers.AssertThrows<ArgumentException, uint>(span, (_span) => MemoryMarshal.Cast<uint, TestHelpers.StructWithReferences>(_span).DontBox());
}
[Fact]
public static void CastSpanFromTypeContainsReferences()
{
Span<TestHelpers.StructWithReferences> span = new Span<TestHelpers.StructWithReferences>(Array.Empty<TestHelpers.StructWithReferences>());
TestHelpers.AssertThrows<ArgumentException, TestHelpers.StructWithReferences>(span, (_span) => MemoryMarshal.Cast<TestHelpers.StructWithReferences, uint>(_span).DontBox());
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/coreclr/pal/src/safecrt/strcpy_s.cpp | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/***
*strcpy_s.c - contains strcpy_s()
*
*
*Purpose:
* strcpy_s() copies one string onto another.
*
*******************************************************************************/
#include <string.h>
#include <errno.h>
#include <limits.h>
#include "internal_securecrt.h"
#include "mbusafecrt_internal.h"
#define _FUNC_PROLOGUE
#define _FUNC_NAME strcpy_s
#define _CHAR char
#define _DEST _Dst
#define _SIZE _SizeInBytes
#define _SRC _Src
#include "tcscpy_s.inl"
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/***
*strcpy_s.c - contains strcpy_s()
*
*
*Purpose:
* strcpy_s() copies one string onto another.
*
*******************************************************************************/
#include <string.h>
#include <errno.h>
#include <limits.h>
#include "internal_securecrt.h"
#include "mbusafecrt_internal.h"
#define _FUNC_PROLOGUE
#define _FUNC_NAME strcpy_s
#define _CHAR char
#define _DEST _Dst
#define _SIZE _SizeInBytes
#define _SRC _Src
#include "tcscpy_s.inl"
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/IL_Conformance/Old/Conformance_Base/div_r4.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="div_r4.il" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="div_r4.il" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/IL_Conformance/Old/Conformance_Base/add_ovf_u8.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="add_ovf_u8.il" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="add_ovf_u8.il" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/installer/tests/scripts/linux-test/images.txt | ubuntu:14.04
ubuntu:16.04
ubuntu:18.04
debian:8
debian:9
centos:7
fedora:27
opensuse:42.2
oraclelinux:7
| ubuntu:14.04
ubuntu:16.04
ubuntu:18.04
debian:8
debian:9
centos:7
fedora:27
opensuse:42.2
oraclelinux:7
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/Loader/classloader/StaticVirtualMethods/GenericContext/GenericContextTest/GenericContextCommonAndImplementation.ilproj | <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Library</OutputType>
<CLRTestKind>BuildOnly</CLRTestKind>
<GenerateRunScript>false</GenerateRunScript>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="GenericContextCommonAndImplementation.il" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Library</OutputType>
<CLRTestKind>BuildOnly</CLRTestKind>
<GenerateRunScript>false</GenerateRunScript>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="GenericContextCommonAndImplementation.il" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/WriteFileContext.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.IO;
using System.Threading;
// The CODEDOM check is here to support versions of the framework that may not have fully
// incorporated all of .NET Core, but want to use System.Configuration.ConfigurationManager.
// TempFileCollection was moved around in .NET Core.
#if CODEDOM
using System.CodeDom.Compiler;
#else
using System.IO.Internal;
#endif
namespace System.Configuration.Internal
{
internal sealed class WriteFileContext
{
private const int SavingTimeout = 10000; // 10 seconds
private const int SavingRetryInterval = 100; // 100 milliseconds
private readonly string _templateFilename;
private TempFileCollection _tempFiles;
internal WriteFileContext(string filename, string templateFilename)
{
string directoryname = UrlPath.GetDirectoryOrRootName(filename);
_templateFilename = templateFilename;
_tempFiles = new TempFileCollection(directoryname);
try
{
TempNewFilename = _tempFiles.AddExtension("newcfg");
}
catch
{
((IDisposable)_tempFiles).Dispose();
_tempFiles = null;
throw;
}
}
internal string TempNewFilename { get; }
// Cleanup the WriteFileContext object based on either success
// or failure
//
// Note: The current algorithm guarantess
// 1) The file we are saving to will always be present
// on the file system (ie. there will be no window
// during saving in which there won't be a file there)
// 2) It will always be available for reading from a
// client and it will be complete and accurate.
//
// ... This means that writing is a bit more complicated, and may
// have to be retried (because of reading lock), but I don't see
// anyway to get around this given 1 and 2.
internal void Complete(string filename, bool success)
{
try
{
if (!success) return;
if (File.Exists(filename))
{
// Test that we can write to the file
ValidateWriteAccess(filename);
// Copy Attributes from original
DuplicateFileAttributes(filename, TempNewFilename);
}
else
{
if (_templateFilename != null)
{
// Copy Acl from template file
DuplicateTemplateAttributes(_templateFilename, TempNewFilename);
}
}
ReplaceFile(TempNewFilename, filename);
// Don't delete, since we just moved it.
_tempFiles.KeepFiles = true;
}
finally
{
((IDisposable)_tempFiles).Dispose();
_tempFiles = null;
}
}
// Copy all the files attributes that we care about from the source
// file to the destination file
private void DuplicateFileAttributes(string source, string destination)
{
DateTime creationTime;
// Copy File Attributes, ie. Hidden, Readonly, etc.
FileAttributes attributes = File.GetAttributes(source);
File.SetAttributes(destination, attributes);
// Copy Creation Time
creationTime = File.GetCreationTimeUtc(source);
File.SetCreationTimeUtc(destination, creationTime);
// Copy ACL's
DuplicateTemplateAttributes(source, destination);
}
// Copy over all the attributes you would want copied from a template file.
// As of right now this is just acl's
private void DuplicateTemplateAttributes(string source, string destination)
{
FileAttributes fileAttributes = File.GetAttributes(source);
File.SetAttributes(destination, fileAttributes);
}
// Validate that we can write to the file. This will enforce the ACL's
// on the file. Since we do our moving of files to replace, this is
// nice to ensure we are not by-passing some security permission
// that someone set (although that could bypass this via move themselves)
//
// Note: 1) This is really just a nice to have, since with directory permissions
// they could do the same thing we are doing
//
// 2) We are depending on the current behavior that if the file is locked
// and we can not open it, that we will get an UnauthorizedAccessException
// and not the IOException.
private void ValidateWriteAccess(string filename)
{
FileStream fs = null;
try
{
// Try to open file for write access
fs = new FileStream(filename,
FileMode.Open,
FileAccess.Write,
FileShare.ReadWrite);
}
catch (IOException)
{
// Someone else was using the file. Since we did not get
// the unauthorizedAccessException we have access to the file
}
finally
{
fs?.Close();
}
}
/// <summary>
/// Replace one file with another, retrying if locked.
/// </summary>
private void ReplaceFile(string source, string target)
{
bool writeSucceeded;
int duration = 0;
writeSucceeded = AttemptMove(source, target);
// The file may be open for read, if it is then
// lets try again because maybe they will finish
// soon, and we will be able to replace
while (!writeSucceeded &&
(duration < SavingTimeout) &&
File.Exists(target) &&
!FileIsWriteLocked(target))
{
Thread.Sleep(SavingRetryInterval);
duration += SavingRetryInterval;
writeSucceeded = AttemptMove(source, target);
}
if (!writeSucceeded)
{
throw new ConfigurationErrorsException(SR.Format(SR.Config_write_failed, target));
}
}
// Attempt to move a file from one location to another, overwriting if needed
private bool AttemptMove(string source, string target)
{
try
{
if (File.Exists(target))
{
File.Replace(source, target, null);
}
else
{
File.Move(source, target);
}
return true;
}
catch
{
return false;
}
}
private static bool FileIsWriteLocked(string fileName)
{
Stream fileStream = null;
if (!File.Exists(fileName))
{
// It can't be locked if it doesn't exist
return false;
}
try
{
// Try to open for shared reading
fileStream = new FileStream(fileName,
FileMode.Open,
FileAccess.Read,
FileShare.Read | FileShare.Delete);
// If we can open it for shared reading, it is not write locked
return false;
}
catch
{
return true;
}
finally
{
fileStream?.Close();
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.IO;
using System.Threading;
// The CODEDOM check is here to support versions of the framework that may not have fully
// incorporated all of .NET Core, but want to use System.Configuration.ConfigurationManager.
// TempFileCollection was moved around in .NET Core.
#if CODEDOM
using System.CodeDom.Compiler;
#else
using System.IO.Internal;
#endif
namespace System.Configuration.Internal
{
internal sealed class WriteFileContext
{
private const int SavingTimeout = 10000; // 10 seconds
private const int SavingRetryInterval = 100; // 100 milliseconds
private readonly string _templateFilename;
private TempFileCollection _tempFiles;
internal WriteFileContext(string filename, string templateFilename)
{
string directoryname = UrlPath.GetDirectoryOrRootName(filename);
_templateFilename = templateFilename;
_tempFiles = new TempFileCollection(directoryname);
try
{
TempNewFilename = _tempFiles.AddExtension("newcfg");
}
catch
{
((IDisposable)_tempFiles).Dispose();
_tempFiles = null;
throw;
}
}
internal string TempNewFilename { get; }
// Cleanup the WriteFileContext object based on either success
// or failure
//
// Note: The current algorithm guarantess
// 1) The file we are saving to will always be present
// on the file system (ie. there will be no window
// during saving in which there won't be a file there)
// 2) It will always be available for reading from a
// client and it will be complete and accurate.
//
// ... This means that writing is a bit more complicated, and may
// have to be retried (because of reading lock), but I don't see
// anyway to get around this given 1 and 2.
internal void Complete(string filename, bool success)
{
try
{
if (!success) return;
if (File.Exists(filename))
{
// Test that we can write to the file
ValidateWriteAccess(filename);
// Copy Attributes from original
DuplicateFileAttributes(filename, TempNewFilename);
}
else
{
if (_templateFilename != null)
{
// Copy Acl from template file
DuplicateTemplateAttributes(_templateFilename, TempNewFilename);
}
}
ReplaceFile(TempNewFilename, filename);
// Don't delete, since we just moved it.
_tempFiles.KeepFiles = true;
}
finally
{
((IDisposable)_tempFiles).Dispose();
_tempFiles = null;
}
}
// Copy all the files attributes that we care about from the source
// file to the destination file
private void DuplicateFileAttributes(string source, string destination)
{
DateTime creationTime;
// Copy File Attributes, ie. Hidden, Readonly, etc.
FileAttributes attributes = File.GetAttributes(source);
File.SetAttributes(destination, attributes);
// Copy Creation Time
creationTime = File.GetCreationTimeUtc(source);
File.SetCreationTimeUtc(destination, creationTime);
// Copy ACL's
DuplicateTemplateAttributes(source, destination);
}
// Copy over all the attributes you would want copied from a template file.
// As of right now this is just acl's
private void DuplicateTemplateAttributes(string source, string destination)
{
FileAttributes fileAttributes = File.GetAttributes(source);
File.SetAttributes(destination, fileAttributes);
}
// Validate that we can write to the file. This will enforce the ACL's
// on the file. Since we do our moving of files to replace, this is
// nice to ensure we are not by-passing some security permission
// that someone set (although that could bypass this via move themselves)
//
// Note: 1) This is really just a nice to have, since with directory permissions
// they could do the same thing we are doing
//
// 2) We are depending on the current behavior that if the file is locked
// and we can not open it, that we will get an UnauthorizedAccessException
// and not the IOException.
private void ValidateWriteAccess(string filename)
{
FileStream fs = null;
try
{
// Try to open file for write access
fs = new FileStream(filename,
FileMode.Open,
FileAccess.Write,
FileShare.ReadWrite);
}
catch (IOException)
{
// Someone else was using the file. Since we did not get
// the unauthorizedAccessException we have access to the file
}
finally
{
fs?.Close();
}
}
/// <summary>
/// Replace one file with another, retrying if locked.
/// </summary>
private void ReplaceFile(string source, string target)
{
bool writeSucceeded;
int duration = 0;
writeSucceeded = AttemptMove(source, target);
// The file may be open for read, if it is then
// lets try again because maybe they will finish
// soon, and we will be able to replace
while (!writeSucceeded &&
(duration < SavingTimeout) &&
File.Exists(target) &&
!FileIsWriteLocked(target))
{
Thread.Sleep(SavingRetryInterval);
duration += SavingRetryInterval;
writeSucceeded = AttemptMove(source, target);
}
if (!writeSucceeded)
{
throw new ConfigurationErrorsException(SR.Format(SR.Config_write_failed, target));
}
}
// Attempt to move a file from one location to another, overwriting if needed
private bool AttemptMove(string source, string target)
{
try
{
if (File.Exists(target))
{
File.Replace(source, target, null);
}
else
{
File.Move(source, target);
}
return true;
}
catch
{
return false;
}
}
private static bool FileIsWriteLocked(string fileName)
{
Stream fileStream = null;
if (!File.Exists(fileName))
{
// It can't be locked if it doesn't exist
return false;
}
try
{
// Try to open for shared reading
fileStream = new FileStream(fileName,
FileMode.Open,
FileAccess.Read,
FileShare.Read | FileShare.Delete);
// If we can open it for shared reading, it is not write locked
return false;
}
catch
{
return true;
}
finally
{
fileStream?.Close();
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Runtime/tests/System/ComponentModel/EditorBrowsableAttributeTests.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.ComponentModel.Tests
{
public static class EditorBrowsableAttributeTests
{
[Theory]
[InlineData(EditorBrowsableState.Advanced)]
[InlineData(EditorBrowsableState.Always)]
[InlineData(EditorBrowsableState.Never)]
[InlineData((EditorBrowsableState)12345)]
public static void Ctor_EditableBrowserState(EditorBrowsableState state)
{
Assert.Equal(state, new EditorBrowsableAttribute(state).State);
}
[Theory]
[InlineData(EditorBrowsableState.Advanced, EditorBrowsableState.Advanced, true)]
[InlineData(EditorBrowsableState.Always, EditorBrowsableState.Always, true)]
[InlineData(EditorBrowsableState.Never, EditorBrowsableState.Never, true)]
[InlineData((EditorBrowsableState)12345, (EditorBrowsableState)12345, true)]
[InlineData(EditorBrowsableState.Advanced, EditorBrowsableState.Always, false)]
[InlineData(EditorBrowsableState.Advanced, EditorBrowsableState.Never, false)]
public static void EqualsTest(EditorBrowsableState state1, EditorBrowsableState state2, bool equal)
{
var attr1 = new EditorBrowsableAttribute(state1);
var attr2 = new EditorBrowsableAttribute(state2);
Assert.True(attr1.Equals(attr1));
Assert.Equal(equal, attr1.Equals(attr2));
Assert.Equal(equal, attr2.Equals(attr1));
Assert.Equal(equal, attr1.GetHashCode().Equals(attr2.GetHashCode()));
}
[Fact]
public static void Equals_Null()
{
Assert.False(new EditorBrowsableAttribute(EditorBrowsableState.Advanced).Equals(null));
}
[Fact]
public static void EnumValues()
{
Assert.Equal(0, (int)EditorBrowsableState.Always);
Assert.Equal(1, (int)EditorBrowsableState.Never);
Assert.Equal(2, (int)EditorBrowsableState.Advanced);
}
[Fact]
public static void DefaultCtor_EditableBrowserState()
{
Assert.Equal(EditorBrowsableState.Always, new EditorBrowsableAttribute().State);
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.ComponentModel.Tests
{
public static class EditorBrowsableAttributeTests
{
[Theory]
[InlineData(EditorBrowsableState.Advanced)]
[InlineData(EditorBrowsableState.Always)]
[InlineData(EditorBrowsableState.Never)]
[InlineData((EditorBrowsableState)12345)]
public static void Ctor_EditableBrowserState(EditorBrowsableState state)
{
Assert.Equal(state, new EditorBrowsableAttribute(state).State);
}
[Theory]
[InlineData(EditorBrowsableState.Advanced, EditorBrowsableState.Advanced, true)]
[InlineData(EditorBrowsableState.Always, EditorBrowsableState.Always, true)]
[InlineData(EditorBrowsableState.Never, EditorBrowsableState.Never, true)]
[InlineData((EditorBrowsableState)12345, (EditorBrowsableState)12345, true)]
[InlineData(EditorBrowsableState.Advanced, EditorBrowsableState.Always, false)]
[InlineData(EditorBrowsableState.Advanced, EditorBrowsableState.Never, false)]
public static void EqualsTest(EditorBrowsableState state1, EditorBrowsableState state2, bool equal)
{
var attr1 = new EditorBrowsableAttribute(state1);
var attr2 = new EditorBrowsableAttribute(state2);
Assert.True(attr1.Equals(attr1));
Assert.Equal(equal, attr1.Equals(attr2));
Assert.Equal(equal, attr2.Equals(attr1));
Assert.Equal(equal, attr1.GetHashCode().Equals(attr2.GetHashCode()));
}
[Fact]
public static void Equals_Null()
{
Assert.False(new EditorBrowsableAttribute(EditorBrowsableState.Advanced).Equals(null));
}
[Fact]
public static void EnumValues()
{
Assert.Equal(0, (int)EditorBrowsableState.Always);
Assert.Equal(1, (int)EditorBrowsableState.Never);
Assert.Equal(2, (int)EditorBrowsableState.Advanced);
}
[Fact]
public static void DefaultCtor_EditableBrowserState()
{
Assert.Equal(EditorBrowsableState.Always, new EditorBrowsableAttribute().State);
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/sizeondisk/sodbench/THIRD-PARTY-NOTICES.TXT | .NET uses third-party libraries or other resources that may be
distributed under licenses different than the .NET software.
Attributions and license notices for test cases originally authored by
third parties can be found in the respective test directories.
In the event that we accidentally failed to list a required notice, please
bring it to our attention. Post an issue or email us:
[email protected]
The attached notices are provided for information only.
License notice for Stack Overflow
-------------------------------------
Policy: https://stackoverflow.com/help/licensing
License: https://creativecommons.org/licenses/by-sa/3.0/
Title: Dealing with commas in a CSV file
Content: https://stackoverflow.com/a/769713
Question author: Bob The Janitor -- https://stackoverflow.com/users/55102/bob-the-janitor
Answer author: harp -- https://stackoverflow.com/users/4525/harpo
Use: https://github.com/dotnet/coreclr/blob/a9074bce5e3814db67dbec1c56f477202164d162/tests/src/sizeondisk/sodbench/SoDBench.cs#L738
| .NET uses third-party libraries or other resources that may be
distributed under licenses different than the .NET software.
Attributions and license notices for test cases originally authored by
third parties can be found in the respective test directories.
In the event that we accidentally failed to list a required notice, please
bring it to our attention. Post an issue or email us:
[email protected]
The attached notices are provided for information only.
License notice for Stack Overflow
-------------------------------------
Policy: https://stackoverflow.com/help/licensing
License: https://creativecommons.org/licenses/by-sa/3.0/
Title: Dealing with commas in a CSV file
Content: https://stackoverflow.com/a/769713
Question author: Bob The Janitor -- https://stackoverflow.com/users/55102/bob-the-janitor
Answer author: harp -- https://stackoverflow.com/users/4525/harpo
Use: https://github.com/dotnet/coreclr/blob/a9074bce5e3814db67dbec1c56f477202164d162/tests/src/sizeondisk/sodbench/SoDBench.cs#L738
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/libraries/System.Reflection.MetadataLoadContext/src/System/Reflection/TypeLoading/Assemblies/Ecma/EcmaAssembly.Modules.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
namespace System.Reflection.TypeLoading.Ecma
{
/// <summary>
/// Base class for all Assembly objects created by a MetadataLoadContext and get its metadata from a PEReader.
/// </summary>
internal sealed partial class EcmaAssembly
{
public sealed override event ModuleResolveEventHandler? ModuleResolve;
protected sealed override RoModule LoadModule(string moduleName, bool containsMetadata)
{
FileStream? peStream = FindModuleNextToAssembly(moduleName);
if (peStream != null)
return CreateModule(peStream, containsMetadata);
Module? moduleFromEvent = ModuleResolve?.Invoke(this, new ResolveEventArgs(moduleName));
if (moduleFromEvent != null)
{
if (!(moduleFromEvent is RoModule roModuleFromEvent && roModuleFromEvent.Loader == Loader))
throw new FileLoadException(SR.ModuleResolveEventReturnedExternalModule);
return roModuleFromEvent;
}
throw new FileNotFoundException(SR.Format(SR.FileNotFoundModule, moduleName));
}
[UnconditionalSuppressMessage("SingleFile", "IL3000: Avoid accessing Assembly file path when publishing as a single file",
Justification = "The code has a fallback using a ModuleResolveEventHandler")]
private FileStream? FindModuleNextToAssembly(string moduleName)
{
Assembly containingAssembly = this;
string location = containingAssembly.Location;
if (location == null || location.Length == 0)
return null;
string? directoryPath = Path.GetDirectoryName(location);
string modulePath = Path.Combine(directoryPath!, moduleName);
if (File.Exists(modulePath))
return File.OpenRead(modulePath);
return null;
}
protected sealed override RoModule CreateModule(Stream peStream, bool containsMetadata)
{
string location = RoModule.FullyQualifiedNameForModulesLoadedFromByteArrays;
if (peStream is FileStream fs)
{
location = fs.Name;
}
if (!containsMetadata)
{
peStream.Close();
return new RoResourceModule(this, location);
}
PEReader peReader = new PEReader(peStream);
Loader.RegisterForDisposal(peReader);
return new EcmaModule(this, location, peReader, peReader.GetMetadataReader());
}
protected sealed override IEnumerable<AssemblyFileInfo> GetAssemblyFileInfosFromManifest(bool includeManifestModule, bool includeResourceModules)
{
MetadataReader reader = Reader;
if (includeManifestModule)
{
yield return new AssemblyFileInfo(reader.GetModuleDefinition().Name.GetString(reader), true, 0);
}
foreach (AssemblyFileHandle h in reader.AssemblyFiles)
{
AssemblyFile af = h.GetAssemblyFile(reader);
if (includeResourceModules || af.ContainsMetadata)
{
yield return new AssemblyFileInfo(af.Name.GetString(reader), af.ContainsMetadata, h.GetToken().GetTokenRowNumber());
}
}
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
namespace System.Reflection.TypeLoading.Ecma
{
/// <summary>
/// Base class for all Assembly objects created by a MetadataLoadContext and get its metadata from a PEReader.
/// </summary>
internal sealed partial class EcmaAssembly
{
public sealed override event ModuleResolveEventHandler? ModuleResolve;
protected sealed override RoModule LoadModule(string moduleName, bool containsMetadata)
{
FileStream? peStream = FindModuleNextToAssembly(moduleName);
if (peStream != null)
return CreateModule(peStream, containsMetadata);
Module? moduleFromEvent = ModuleResolve?.Invoke(this, new ResolveEventArgs(moduleName));
if (moduleFromEvent != null)
{
if (!(moduleFromEvent is RoModule roModuleFromEvent && roModuleFromEvent.Loader == Loader))
throw new FileLoadException(SR.ModuleResolveEventReturnedExternalModule);
return roModuleFromEvent;
}
throw new FileNotFoundException(SR.Format(SR.FileNotFoundModule, moduleName));
}
[UnconditionalSuppressMessage("SingleFile", "IL3000: Avoid accessing Assembly file path when publishing as a single file",
Justification = "The code has a fallback using a ModuleResolveEventHandler")]
private FileStream? FindModuleNextToAssembly(string moduleName)
{
Assembly containingAssembly = this;
string location = containingAssembly.Location;
if (location == null || location.Length == 0)
return null;
string? directoryPath = Path.GetDirectoryName(location);
string modulePath = Path.Combine(directoryPath!, moduleName);
if (File.Exists(modulePath))
return File.OpenRead(modulePath);
return null;
}
protected sealed override RoModule CreateModule(Stream peStream, bool containsMetadata)
{
string location = RoModule.FullyQualifiedNameForModulesLoadedFromByteArrays;
if (peStream is FileStream fs)
{
location = fs.Name;
}
if (!containsMetadata)
{
peStream.Close();
return new RoResourceModule(this, location);
}
PEReader peReader = new PEReader(peStream);
Loader.RegisterForDisposal(peReader);
return new EcmaModule(this, location, peReader, peReader.GetMetadataReader());
}
protected sealed override IEnumerable<AssemblyFileInfo> GetAssemblyFileInfosFromManifest(bool includeManifestModule, bool includeResourceModules)
{
MetadataReader reader = Reader;
if (includeManifestModule)
{
yield return new AssemblyFileInfo(reader.GetModuleDefinition().Name.GetString(reader), true, 0);
}
foreach (AssemblyFileHandle h in reader.AssemblyFiles)
{
AssemblyFile af = h.GetAssemblyFile(reader);
if (includeResourceModules || af.ContainsMetadata)
{
yield return new AssemblyFileInfo(af.Name.GetString(reader), af.ContainsMetadata, h.GetToken().GetTokenRowNumber());
}
}
}
}
}
| -1 |
dotnet/runtime | 66,321 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug | Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | stephentoub | 2022-03-08T01:37:40Z | 2022-03-08T19:24:48Z | 446a0d610d4479fa9ba58ec14a89132a18ed33c4 | b6c5a12cfa92e06734286bd991e7cca87ded1e24 | Fix code coverage gaps in RegexGenerator and fix RegexCompiler bug. Noticed some easily-fillable gaps in code coverage for RegexGenerator. In adding those tests, found and fixed a bug in RegexCompiler where we were incorrectly using `Call(s_spanIndexOfSpan)` instead of `Call(s_spanIndexOfAnySpan)`. | ./src/tests/JIT/jit64/rtchecks/overflow/overflow01_mul.csproj | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<!-- Set to 'Full' if the Debug? column is marked in the spreadsheet. Leave blank otherwise. -->
<DebugType>PdbOnly</DebugType>
<NoStandardLib>True</NoStandardLib>
<Noconfig>True</Noconfig>
<DefineConstants>$(DefineConstants);OP_MUL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="overflow01.cs" />
</ItemGroup>
</Project>
| <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<!-- Set to 'Full' if the Debug? column is marked in the spreadsheet. Leave blank otherwise. -->
<DebugType>PdbOnly</DebugType>
<NoStandardLib>True</NoStandardLib>
<Noconfig>True</Noconfig>
<DefineConstants>$(DefineConstants);OP_MUL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="overflow01.cs" />
</ItemGroup>
</Project>
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/ELEMENT_TYPE_IU/i_array_merge_Target_32BIT.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib
{ }
.assembly 'i_array_merge_Target_32BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.class public auto ansi Test_i_array_merge_Target_32BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is32BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 33 32 42 69 74 // null.....Is32Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (int32[0...], native int[0...], native int, native int)
ldc.i4 16
newobj instance void native int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void int32[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
stloc.2
ldc.i4.1
stloc.3
loop_begin:
//
// This switch determines type of array (int32 or native int)
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
// This switch determines opcode stelem.i or stelem.i4
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i4
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i4
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
add
dup
stloc.3
ldc.i4 9
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly extern mscorlib
{ }
.assembly 'i_array_merge_Target_32BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.class public auto ansi Test_i_array_merge_Target_32BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is32BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 33 32 42 69 74 // null.....Is32Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (int32[0...], native int[0...], native int, native int)
ldc.i4 16
newobj instance void native int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void int32[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
stloc.2
ldc.i4.1
stloc.3
loop_begin:
//
// This switch determines type of array (int32 or native int)
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
// This switch determines opcode stelem.i or stelem.i4
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i4
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i4
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
add
dup
stloc.3
ldc.i4 9
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/ELEMENT_TYPE_IU/i_array_merge_Target_64BIT.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib
{ }
.assembly 'i_array_merge_Target_64BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.class public auto ansi Test_i_array_merge_Target_64BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is64BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 36 34 42 69 74 // null.....Is64Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (int64[0...], native int[0...], native int, native int)
ldc.i4 16
newobj instance void native int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void int64[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
conv.i
stloc.2
ldc.i4.1
stloc.3
loop_begin:
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i8
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i8
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
conv.i
add
dup
stloc.3
ldc.i4 9
conv.i
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly extern mscorlib
{ }
.assembly 'i_array_merge_Target_64BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.class public auto ansi Test_i_array_merge_Target_64BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is64BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 36 34 42 69 74 // null.....Is64Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (int64[0...], native int[0...], native int, native int)
ldc.i4 16
newobj instance void native int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void int64[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
conv.i
stloc.2
ldc.i4.1
stloc.3
loop_begin:
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i8
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i8
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
conv.i
add
dup
stloc.3
ldc.i4 9
conv.i
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/ELEMENT_TYPE_IU/sizeof_Target_32BIT.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'sizeof_Target_32BIT'// as "avg"
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
// MVID: {BCA6096F-DF11-4FA3-BF16-EEDA01729535}
.namespace AvgTest
{
.class private auto ansi Test
extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is32BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 33 32 42 69 74 // null.....Is32Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
// Code size 48 (0x30)
.maxstack 5
ldc.i4.4
dup
dup
dup
sizeof native int
ceq
brfalse pop3
sizeof native unsigned int
ceq
brfalse pop2
sizeof [mscorlib]System.IntPtr
ceq
brfalse pop1
sizeof [mscorlib]System.UIntPtr
ceq
brfalse pop0
ldc.i4 0x64
br.s return
pop3:
pop
pop2:
pop
pop1:
pop
pop0:
ldc.i4.1
return:
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'AvgTest'
//*********** DISASSEMBLY COMPLETE ***********************
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly 'sizeof_Target_32BIT'// as "avg"
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
// MVID: {BCA6096F-DF11-4FA3-BF16-EEDA01729535}
.namespace AvgTest
{
.class private auto ansi Test
extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is32BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 33 32 42 69 74 // null.....Is32Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
// Code size 48 (0x30)
.maxstack 5
ldc.i4.4
dup
dup
dup
sizeof native int
ceq
brfalse pop3
sizeof native unsigned int
ceq
brfalse pop2
sizeof [mscorlib]System.IntPtr
ceq
brfalse pop1
sizeof [mscorlib]System.UIntPtr
ceq
brfalse pop0
ldc.i4 0x64
br.s return
pop3:
pop
pop2:
pop
pop1:
pop
pop0:
ldc.i4.1
return:
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'AvgTest'
//*********** DISASSEMBLY COMPLETE ***********************
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/ELEMENT_TYPE_IU/sizeof_Target_64BIT.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'sizeof_Target_64BIT'// as "avg"
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
// MVID: {BCA6096F-DF11-4FA3-BF16-EEDA01729535}
.namespace AvgTest_sizeof_Target_64BIT
{
.class private auto ansi Test
extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is64BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 36 34 42 69 74 // null.....Is64Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
// Code size 48 (0x30)
.maxstack 5
ldc.i4.8
ldc.i4.8
ldc.i4.8
ldc.i4.8
sizeof native int
ceq
brfalse pop3
sizeof native unsigned int
ceq
brfalse pop2
sizeof [mscorlib]System.IntPtr
ceq
brfalse pop1
sizeof [mscorlib]System.UIntPtr
ceq
brfalse pop0
ldc.i4 0x64
br.s return
pop3:
pop
pop2:
pop
pop1:
pop
pop0:
ldc.i4.1
return:
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'AvgTest_sizeof_Target_64BIT'
//*********** DISASSEMBLY COMPLETE ***********************
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly 'sizeof_Target_64BIT'// as "avg"
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
// MVID: {BCA6096F-DF11-4FA3-BF16-EEDA01729535}
.namespace AvgTest_sizeof_Target_64BIT
{
.class private auto ansi Test
extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is64BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 36 34 42 69 74 // null.....Is64Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
// Code size 48 (0x30)
.maxstack 5
ldc.i4.8
ldc.i4.8
ldc.i4.8
ldc.i4.8
sizeof native int
ceq
brfalse pop3
sizeof native unsigned int
ceq
brfalse pop2
sizeof [mscorlib]System.IntPtr
ceq
brfalse pop1
sizeof [mscorlib]System.UIntPtr
ceq
brfalse pop0
ldc.i4 0x64
br.s return
pop3:
pop
pop2:
pop
pop1:
pop
pop0:
ldc.i4.1
return:
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'AvgTest_sizeof_Target_64BIT'
//*********** DISASSEMBLY COMPLETE ***********************
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/ELEMENT_TYPE_IU/u_array_merge_Target_32BIT.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib
{ }
.assembly 'u_array_merge_Target_32BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.class public auto ansi Test_u_array_merge_Target_32BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is32BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 33 32 42 69 74 // null.....Is32Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (unsigned int32[0...], native unsigned int[0...], native unsigned int, native unsigned int)
ldc.i4 16
newobj instance void native unsigned int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void unsigned int32[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
stloc.2
ldc.i4.1
stloc.3
loop_begin:
//
// This switch determines type of array (int32 or native int)
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
// This switch determines opcode stelem.i or stelem.i4
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i4
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i4
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
add
dup
stloc.3
ldc.i4 9
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly extern mscorlib
{ }
.assembly 'u_array_merge_Target_32BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.class public auto ansi Test_u_array_merge_Target_32BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is32BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 33 32 42 69 74 // null.....Is32Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (unsigned int32[0...], native unsigned int[0...], native unsigned int, native unsigned int)
ldc.i4 16
newobj instance void native unsigned int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void unsigned int32[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
stloc.2
ldc.i4.1
stloc.3
loop_begin:
//
// This switch determines type of array (int32 or native int)
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
// This switch determines opcode stelem.i or stelem.i4
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i4
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i4
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
add
dup
stloc.3
ldc.i4 9
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/ELEMENT_TYPE_IU/u_array_merge_Target_64BIT.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib
{ }
.assembly 'u_array_merge_Target_64BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.class public auto ansi Test_u_array_merge_Target_64BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is64BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 36 34 42 69 74 // null.....Is64Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (unsigned int64[0...], native unsigned int[0...], native unsigned int, native unsigned int)
ldc.i4 16
newobj instance void native unsigned int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void unsigned int64[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
conv.i
stloc.2
ldc.i4.1
stloc.3
loop_begin:
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i8
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i8
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
conv.i
add
dup
stloc.3
ldc.i4 9
conv.i
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly extern mscorlib
{ }
.assembly 'u_array_merge_Target_64BIT'
{ }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.class public auto ansi Test_u_array_merge_Target_64BIT extends [mscorlib]System.Object
{
.method private hidebysig static int32 Main() il managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.Is64BitProcess))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0E 49 73 36 34 42 69 74 // null.....Is64Bit
50 72 6F 63 65 73 73 00 00 ) // Process..
.entrypoint
.maxstack 8
.locals (unsigned int64[0...], native unsigned int[0...], native unsigned int, native unsigned int)
ldc.i4 16
newobj instance void native unsigned int[0...]::.ctor(int32)
stloc.0
ldc.i4 16
newobj instance void unsigned int64[0...]::.ctor(int32)
stloc.1
ldc.i4 0x12345678
conv.i
stloc.2
ldc.i4.1
stloc.3
loop_begin:
ldloc.3
switch (err1,a1,a1,a1,a1,a2,a2,a2,a2)
err1:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
a1:
ldloc.0
ldstr "branch1.1"
br.s end_a
a2:
ldloc.1
ldstr "branch1.2"
end_a:
call void [System.Console]System.Console::WriteLine(string)
dup
ldloc.3
dup
dup
switch (err2,b1,b2,b1,b2,b1,b2,b1,b2)
err2:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
b1:
stelem.i
ldstr "branch2.1"
br end_b
b2:
stelem.i8
ldstr "branch2.2"
end_b:
call void [System.Console]System.Console::WriteLine(string)
dup
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.Object)
ldloc.3
dup
switch (err3,c1,c1,c2,c2,c1,c1,c2,c2)
err3:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
err4:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
c1:
ldelem.i
ldstr "branch3.1"
br end_c
c2:
ldelem.i8
ldstr "branch3.2"
end_c:
call void [System.Console]System.Console::WriteLine(string)
ldloc.3
ceq
brfalse err4
ldloc.3
ldc.i4.1
conv.i
add
dup
stloc.3
ldc.i4 9
conv.i
ceq
brfalse loop_begin
ldc.i4 0x64
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/xxobj/sizeof/sizeof32_Target_32Bit_x86.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// sizeof32.il
.assembly extern mscorlib { }
.assembly sizeof32_Target_32Bit_x86 { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof32_Target_32Bit_x86_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0C 49 73 58 38 36 50 72 // null.....IsX86Pr
6F 63 65 73 73 00 00 ) // ocess..
.entrypoint
.maxstack 4
.locals (int32 V_0,
int32 V_1,
valuetype JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct V_2,
valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i4
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: add
IL_002c: stloc.0
IL_002d: ldloc.0
IL_002e: ldc.i4 0x80
IL_0033: ldloca.s V_2
IL_0035: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_003b: ldloc.2
IL_003c: stloc.2
IL_003d: ldloca.s V_2
IL_003f: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0044: stloc.3
IL_0045: ldloca.s V_3
IL_0047: ldfld unsigned int16 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_ushort
IL_004c: conv.i4
IL_004d: sub
IL_004e: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0054: sub
IL_0055: sub
IL_0056: stloc.0
IL_0057: ldloc.0
IL_0058: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_005e: ldloca.s V_2
IL_0060: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0066: ldloc.2
IL_0067: stloc.2
IL_0068: ldloca.s V_2
IL_006a: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_006f: stloc.3
IL_0070: ldloca.s V_3
IL_0072: ldfld unsigned int32 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_uint
IL_0077: ldc.i4.1
IL_0078: add
IL_0079: mul
IL_007a: mul
IL_007b: stloc.0
IL_007c: ldloc.0
IL_007d: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0083: ldloca.s V_2
IL_0085: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_008b: ldloc.2
IL_008c: stloc.2
IL_008d: ldloca.s V_2
IL_008f: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0094: stloc.3
IL_0095: ldloca.s V_3
IL_0097: ldfld unsigned int64 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_ulong
IL_009c: ldc.i4.1
IL_009d: conv.i8
IL_009e: add
IL_009f: conv.i4
IL_00a0: div
IL_00a1: div
IL_00a2: stloc.0
IL_00a3: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_00a9: ldc.i4.s 64
IL_00ab: xor
IL_00ac: ldloc.0
IL_00ad: or
IL_00ae: stloc.0
IL_00af: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_00b5: ldc.i4.s -65
IL_00b7: xor
IL_00b8: ldloc.0
IL_00b9: and
IL_00ba: stloc.0
IL_00bb: ldloc.0
IL_00bc: ldc.i4.s 20
IL_00be: add
IL_00bf: stloc.1
IL_00c0: br.s IL_00c2
IL_00c2: ldloc.1
IL_00c3: ret
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// sizeof32.il
.assembly extern mscorlib { }
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly sizeof32_Target_32Bit_x86 { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof32_Target_32Bit_x86_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0C 49 73 58 38 36 50 72 // null.....IsX86Pr
6F 63 65 73 73 00 00 ) // ocess..
.entrypoint
.maxstack 4
.locals (int32 V_0,
int32 V_1,
valuetype JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct V_2,
valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i4
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: add
IL_002c: stloc.0
IL_002d: ldloc.0
IL_002e: ldc.i4 0x80
IL_0033: ldloca.s V_2
IL_0035: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_003b: ldloc.2
IL_003c: stloc.2
IL_003d: ldloca.s V_2
IL_003f: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0044: stloc.3
IL_0045: ldloca.s V_3
IL_0047: ldfld unsigned int16 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_ushort
IL_004c: conv.i4
IL_004d: sub
IL_004e: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0054: sub
IL_0055: sub
IL_0056: stloc.0
IL_0057: ldloc.0
IL_0058: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_005e: ldloca.s V_2
IL_0060: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0066: ldloc.2
IL_0067: stloc.2
IL_0068: ldloca.s V_2
IL_006a: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_006f: stloc.3
IL_0070: ldloca.s V_3
IL_0072: ldfld unsigned int32 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_uint
IL_0077: ldc.i4.1
IL_0078: add
IL_0079: mul
IL_007a: mul
IL_007b: stloc.0
IL_007c: ldloc.0
IL_007d: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_0083: ldloca.s V_2
IL_0085: initobj JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_008b: ldloc.2
IL_008c: stloc.2
IL_008d: ldloca.s V_2
IL_008f: ldfld valuetype JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0094: stloc.3
IL_0095: ldloca.s V_3
IL_0097: ldfld unsigned int64 JitTest_sizeof32_Target_32Bit_x86_il.SimpleStruct::m_ulong
IL_009c: ldc.i4.1
IL_009d: conv.i8
IL_009e: add
IL_009f: conv.i4
IL_00a0: div
IL_00a1: div
IL_00a2: stloc.0
IL_00a3: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_00a9: ldc.i4.s 64
IL_00ab: xor
IL_00ac: ldloc.0
IL_00ad: or
IL_00ae: stloc.0
IL_00af: sizeof JitTest_sizeof32_Target_32Bit_x86_il.RefComplexStruct
IL_00b5: ldc.i4.s -65
IL_00b7: xor
IL_00b8: ldloc.0
IL_00b9: and
IL_00ba: stloc.0
IL_00bb: ldloc.0
IL_00bc: ldc.i4.s 20
IL_00be: add
IL_00bf: stloc.1
IL_00c0: br.s IL_00c2
IL_00c2: ldloc.1
IL_00c3: ret
}
}
}
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/xxobj/sizeof/sizeof32_Target_64Bit_and_arm.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly 'sizeof32_Target_64Bit_and_arm' { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof32_Target_64Bit_and_arm_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsNotX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0F 49 73 4E 6F 74 58 38 // null.....IsNotX8
36 50 72 6F 63 65 73 73 00 00 ) // 6Process..
.entrypoint
.maxstack 4
.locals (int32 V_0,
int32 V_1,
valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct V_2,
valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i4
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: add
IL_002c: stloc.0
IL_002d: ldloc.0
IL_002e: ldc.i4 144
IL_0033: ldloca.s V_2
IL_0035: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_003b: ldloc.2
IL_003c: stloc.2
IL_003d: ldloca.s V_2
IL_003f: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0044: stloc.3
IL_0045: ldloca.s V_3
IL_0047: ldfld unsigned int16 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_ushort
IL_004c: conv.i4
IL_004d: sub
IL_004e: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0054: sub
IL_0055: sub
IL_0056: stloc.0
IL_0057: ldloc.0
IL_0058: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_005e: ldloca.s V_2
IL_0060: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0066: ldloc.2
IL_0067: stloc.2
IL_0068: ldloca.s V_2
IL_006a: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_006f: stloc.3
IL_0070: ldloca.s V_3
IL_0072: ldfld unsigned int32 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_uint
IL_0077: ldc.i4.1
IL_0078: add
IL_0079: mul
IL_007a: mul
IL_007b: stloc.0
IL_007c: ldloc.0
IL_007d: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0083: ldloca.s V_2
IL_0085: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_008b: ldloc.2
IL_008c: stloc.2
IL_008d: ldloca.s V_2
IL_008f: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0094: stloc.3
IL_0095: ldloca.s V_3
IL_0097: ldfld unsigned int64 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_ulong
IL_009c: ldc.i4.1
IL_009d: conv.i8
IL_009e: add
IL_009f: conv.i4
IL_00a0: div
IL_00a1: div
IL_00a2: stloc.0
IL_00a3: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_00a9: ldc.i4.s 72
IL_00ab: xor
IL_00ac: ldloc.0
IL_00ad: or
IL_00ae: stloc.0
IL_00af: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_00b5: ldc.i4.s -73
IL_00b7: xor
IL_00b8: ldloc.0
IL_00b9: and
IL_00ba: stloc.0
IL_00bb: ldloc.0
IL_00bc: ldc.i4.s 28
IL_00be: add
IL_00bf: stloc.1
IL_00c0: br.s IL_00c2
IL_00c2: ldloc.1
IL_00c3: ret
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly 'sizeof32_Target_64Bit_and_arm' { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof32_Target_64Bit_and_arm_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsNotX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0F 49 73 4E 6F 74 58 38 // null.....IsNotX8
36 50 72 6F 63 65 73 73 00 00 ) // 6Process..
.entrypoint
.maxstack 4
.locals (int32 V_0,
int32 V_1,
valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct V_2,
valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i4
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: add
IL_002c: stloc.0
IL_002d: ldloc.0
IL_002e: ldc.i4 144
IL_0033: ldloca.s V_2
IL_0035: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_003b: ldloc.2
IL_003c: stloc.2
IL_003d: ldloca.s V_2
IL_003f: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0044: stloc.3
IL_0045: ldloca.s V_3
IL_0047: ldfld unsigned int16 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_ushort
IL_004c: conv.i4
IL_004d: sub
IL_004e: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0054: sub
IL_0055: sub
IL_0056: stloc.0
IL_0057: ldloc.0
IL_0058: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_005e: ldloca.s V_2
IL_0060: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0066: ldloc.2
IL_0067: stloc.2
IL_0068: ldloca.s V_2
IL_006a: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_006f: stloc.3
IL_0070: ldloca.s V_3
IL_0072: ldfld unsigned int32 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_uint
IL_0077: ldc.i4.1
IL_0078: add
IL_0079: mul
IL_007a: mul
IL_007b: stloc.0
IL_007c: ldloc.0
IL_007d: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_0083: ldloca.s V_2
IL_0085: initobj JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_008b: ldloc.2
IL_008c: stloc.2
IL_008d: ldloca.s V_2
IL_008f: ldfld valuetype JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0094: stloc.3
IL_0095: ldloca.s V_3
IL_0097: ldfld unsigned int64 JitTest_sizeof32_Target_64Bit_and_arm_il.SimpleStruct::m_ulong
IL_009c: ldc.i4.1
IL_009d: conv.i8
IL_009e: add
IL_009f: conv.i4
IL_00a0: div
IL_00a1: div
IL_00a2: stloc.0
IL_00a3: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_00a9: ldc.i4.s 72
IL_00ab: xor
IL_00ac: ldloc.0
IL_00ad: or
IL_00ae: stloc.0
IL_00af: sizeof JitTest_sizeof32_Target_64Bit_and_arm_il.RefComplexStruct
IL_00b5: ldc.i4.s -73
IL_00b7: xor
IL_00b8: ldloc.0
IL_00b9: and
IL_00ba: stloc.0
IL_00bb: ldloc.0
IL_00bc: ldc.i4.s 28
IL_00be: add
IL_00bf: stloc.1
IL_00c0: br.s IL_00c2
IL_00c2: ldloc.1
IL_00c3: ret
}
}
}
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/xxobj/sizeof/sizeof64_Target_32Bit_x86.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// sizeof64.il
.assembly extern mscorlib { }
.assembly sizeof64_Target_32Bit_x86 { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof64_Target_32Bit_x86_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct[0...] ss_array
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0C 49 73 58 38 36 50 72 // null.....IsX86Pr
6F 63 65 73 73 00 00 ) // ocess..
.entrypoint
.maxstack 4
.locals (int64 V_0,
int32 V_1,
valuetype JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct V_2,
valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i8
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: conv.i8
IL_002c: add
IL_002d: stloc.0
IL_002e: ldloc.0
IL_002f: ldc.i4 0x80
IL_0034: conv.i8
IL_0035: ldloca.s V_2
IL_0037: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_003d: ldloc.2
IL_003e: stloc.2
IL_003f: ldloca.s V_2
IL_0041: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0046: stloc.3
IL_0047: ldloca.s V_3
IL_0049: ldfld unsigned int16 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_ushort
IL_004e: conv.u8
IL_004f: sub
IL_0050: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0056: conv.i8
IL_0057: sub
IL_0058: sub
IL_0059: stloc.0
IL_005a: ldloc.0
IL_005b: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0061: conv.i8
IL_0062: ldloca.s V_2
IL_0064: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_006a: ldloc.2
IL_006b: stloc.2
IL_006c: ldloca.s V_2
IL_006e: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_0073: stloc.3
IL_0074: ldloca.s V_3
IL_0076: ldfld unsigned int32 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_uint
IL_007b: ldc.i4.1
IL_007c: add
IL_007d: conv.u8
IL_007e: mul
IL_007f: mul
IL_0080: stloc.0
IL_0081: ldloc.0
IL_0082: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0088: ldloca.s V_2
IL_008a: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0090: ldloc.2
IL_0091: stloc.2
IL_0092: ldloca.s V_2
IL_0094: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0099: stloc.3
IL_009a: ldloca.s V_3
IL_009c: ldfld unsigned int64 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_ulong
IL_00a1: ldc.i4.1
IL_00a2: conv.i8
IL_00a3: add
IL_00a4: conv.i4
IL_00a5: div
IL_00a6: conv.i8
IL_00a7: div
IL_00a8: stloc.0
IL_00a9: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_00af: ldc.i4.s 64
IL_00b1: xor
IL_00b2: conv.i8
IL_00b3: ldloc.0
IL_00b4: or
IL_00b5: stloc.0
IL_00b6: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_00bc: ldc.i4.s -65
IL_00be: xor
IL_00bf: conv.i8
IL_00c0: ldloc.0
IL_00c1: and
IL_00c2: stloc.0
IL_00c3: ldloc.0
IL_00c4: ldc.i4.s 4
IL_00c6: conv.i8
IL_00c7: add
IL_00c8: conv.i4
IL_00c9: stloc.1
IL_00ca: br.s IL_00cc
IL_00cc: ldloc.1
IL_00cd: ret
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// sizeof64.il
.assembly extern mscorlib { }
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly sizeof64_Target_32Bit_x86 { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof64_Target_32Bit_x86_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct[0...] ss_array
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0C 49 73 58 38 36 50 72 // null.....IsX86Pr
6F 63 65 73 73 00 00 ) // ocess..
.entrypoint
.maxstack 4
.locals (int64 V_0,
int32 V_1,
valuetype JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct V_2,
valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i8
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: conv.i8
IL_002c: add
IL_002d: stloc.0
IL_002e: ldloc.0
IL_002f: ldc.i4 0x80
IL_0034: conv.i8
IL_0035: ldloca.s V_2
IL_0037: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_003d: ldloc.2
IL_003e: stloc.2
IL_003f: ldloca.s V_2
IL_0041: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0046: stloc.3
IL_0047: ldloca.s V_3
IL_0049: ldfld unsigned int16 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_ushort
IL_004e: conv.u8
IL_004f: sub
IL_0050: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0056: conv.i8
IL_0057: sub
IL_0058: sub
IL_0059: stloc.0
IL_005a: ldloc.0
IL_005b: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0061: conv.i8
IL_0062: ldloca.s V_2
IL_0064: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_006a: ldloc.2
IL_006b: stloc.2
IL_006c: ldloca.s V_2
IL_006e: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss1
IL_0073: stloc.3
IL_0074: ldloca.s V_3
IL_0076: ldfld unsigned int32 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_uint
IL_007b: ldc.i4.1
IL_007c: add
IL_007d: conv.u8
IL_007e: mul
IL_007f: mul
IL_0080: stloc.0
IL_0081: ldloc.0
IL_0082: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0088: ldloca.s V_2
IL_008a: initobj JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_0090: ldloc.2
IL_0091: stloc.2
IL_0092: ldloca.s V_2
IL_0094: ldfld valuetype JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct::ss2
IL_0099: stloc.3
IL_009a: ldloca.s V_3
IL_009c: ldfld unsigned int64 JitTest_sizeof64_Target_32Bit_x86_il.SimpleStruct::m_ulong
IL_00a1: ldc.i4.1
IL_00a2: conv.i8
IL_00a3: add
IL_00a4: conv.i4
IL_00a5: div
IL_00a6: conv.i8
IL_00a7: div
IL_00a8: stloc.0
IL_00a9: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_00af: ldc.i4.s 64
IL_00b1: xor
IL_00b2: conv.i8
IL_00b3: ldloc.0
IL_00b4: or
IL_00b5: stloc.0
IL_00b6: sizeof JitTest_sizeof64_Target_32Bit_x86_il.RefComplexStruct
IL_00bc: ldc.i4.s -65
IL_00be: xor
IL_00bf: conv.i8
IL_00c0: ldloc.0
IL_00c1: and
IL_00c2: stloc.0
IL_00c3: ldloc.0
IL_00c4: ldc.i4.s 4
IL_00c6: conv.i8
IL_00c7: add
IL_00c8: conv.i4
IL_00c9: stloc.1
IL_00ca: br.s IL_00cc
IL_00cc: ldloc.1
IL_00cd: ret
}
}
}
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/xxobj/sizeof/sizeof64_Target_64Bit_and_arm.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly 'sizeof64_Target_64Bit_and_arm' { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof64_Target_64Bit_and_arm_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct[0...] ss_array
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsNotX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0F 49 73 4E 6F 74 58 38 // null.....IsNotX8
36 50 72 6F 63 65 73 73 00 00 ) // 6Process..
.entrypoint
.maxstack 4
.locals (int64 V_0,
int32 V_1,
valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct V_2,
valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i8
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: conv.i8
IL_002c: add
IL_002d: stloc.0
IL_002e: ldloc.0
IL_002f: ldc.i4 176
IL_0034: conv.i8
IL_0035: ldloca.s V_2
IL_0037: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_003d: ldloc.2
IL_003e: stloc.2
IL_003f: ldloca.s V_2
IL_0041: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0046: stloc.3
IL_0047: ldloca.s V_3
IL_0049: ldfld unsigned int16 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_ushort
IL_004e: conv.u8
IL_004f: sub
IL_0050: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0056: conv.i8
IL_0057: sub
IL_0058: sub
IL_0059: stloc.0
IL_005a: ldloc.0
IL_005b: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0061: conv.i8
IL_0062: ldloca.s V_2
IL_0064: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_006a: ldloc.2
IL_006b: stloc.2
IL_006c: ldloca.s V_2
IL_006e: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_0073: stloc.3
IL_0074: ldloca.s V_3
IL_0076: ldfld unsigned int32 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_uint
IL_007b: ldc.i4.1
IL_007c: add
IL_007d: conv.u8
IL_007e: mul
IL_007f: mul
IL_0080: stloc.0
IL_0081: ldloc.0
IL_0082: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0088: ldloca.s V_2
IL_008a: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0090: ldloc.2
IL_0091: stloc.2
IL_0092: ldloca.s V_2
IL_0094: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0099: stloc.3
IL_009a: ldloca.s V_3
IL_009c: ldfld unsigned int64 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_ulong
IL_00a1: ldc.i4.1
IL_00a2: conv.i8
IL_00a3: add
IL_00a4: conv.i4
IL_00a5: div
IL_00a6: conv.i8
IL_00a7: div
IL_00a8: stloc.0
IL_00a9: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_00af: ldc.i4.s 88
IL_00b1: xor
IL_00b2: conv.i8
IL_00b3: ldloc.0
IL_00b4: or
IL_00b5: stloc.0
IL_00b6: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_00bc: ldc.i4.s -89
IL_00be: xor
IL_00bf: conv.i8
IL_00c0: ldloc.0
IL_00c1: and
IL_00c2: stloc.0
IL_00c3: ldloc.0
IL_00c4: ldc.i4.s 12
IL_00c6: conv.i8
IL_00c7: add
IL_00c8: conv.i4
IL_00c9: stloc.1
IL_00ca: br.s IL_00cc
IL_00cc: ldloc.1
IL_00cd: ret
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly 'sizeof64_Target_64Bit_and_arm' { }
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof64_Target_64Bit_and_arm_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field public int32 m_int
.field public unsigned int32 m_uint
.field public unsigned int8 m_byte
.field public int8 m_sbyte
.field public char m_char
.field public int16 m_short
.field public unsigned int16 m_ushort
.field public int64 m_long
.field public unsigned int64 m_ulong
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct[0...] ss_array
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct ss1
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct[0...] ss_array
.field public valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsNotX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0F 49 73 4E 6F 74 58 38 // null.....IsNotX8
36 50 72 6F 63 65 73 73 00 00 ) // 6Process..
.entrypoint
.maxstack 4
.locals (int64 V_0,
int32 V_1,
valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct V_2,
valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct V_3)
IL_0000: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0006: conv.i1
IL_0007: conv.i8
IL_0008: stloc.0
IL_0009: ldloc.0
IL_000a: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0010: ldloca.s V_2
IL_0012: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0018: ldloc.2
IL_0019: stloc.2
IL_001a: ldloca.s V_2
IL_001c: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_0021: stloc.3
IL_0022: ldloca.s V_3
IL_0024: ldfld int8 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_sbyte
IL_0029: conv.i4
IL_002a: add
IL_002b: conv.i8
IL_002c: add
IL_002d: stloc.0
IL_002e: ldloc.0
IL_002f: ldc.i4 176
IL_0034: conv.i8
IL_0035: ldloca.s V_2
IL_0037: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_003d: ldloc.2
IL_003e: stloc.2
IL_003f: ldloca.s V_2
IL_0041: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0046: stloc.3
IL_0047: ldloca.s V_3
IL_0049: ldfld unsigned int16 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_ushort
IL_004e: conv.u8
IL_004f: sub
IL_0050: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0056: conv.i8
IL_0057: sub
IL_0058: sub
IL_0059: stloc.0
IL_005a: ldloc.0
IL_005b: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0061: conv.i8
IL_0062: ldloca.s V_2
IL_0064: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_006a: ldloc.2
IL_006b: stloc.2
IL_006c: ldloca.s V_2
IL_006e: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss1
IL_0073: stloc.3
IL_0074: ldloca.s V_3
IL_0076: ldfld unsigned int32 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_uint
IL_007b: ldc.i4.1
IL_007c: add
IL_007d: conv.u8
IL_007e: mul
IL_007f: mul
IL_0080: stloc.0
IL_0081: ldloc.0
IL_0082: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0088: ldloca.s V_2
IL_008a: initobj JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_0090: ldloc.2
IL_0091: stloc.2
IL_0092: ldloca.s V_2
IL_0094: ldfld valuetype JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct::ss2
IL_0099: stloc.3
IL_009a: ldloca.s V_3
IL_009c: ldfld unsigned int64 JitTest_sizeof64_Target_64Bit_and_arm_il.SimpleStruct::m_ulong
IL_00a1: ldc.i4.1
IL_00a2: conv.i8
IL_00a3: add
IL_00a4: conv.i4
IL_00a5: div
IL_00a6: conv.i8
IL_00a7: div
IL_00a8: stloc.0
IL_00a9: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_00af: ldc.i4.s 88
IL_00b1: xor
IL_00b2: conv.i8
IL_00b3: ldloc.0
IL_00b4: or
IL_00b5: stloc.0
IL_00b6: sizeof JitTest_sizeof64_Target_64Bit_and_arm_il.RefComplexStruct
IL_00bc: ldc.i4.s -89
IL_00be: xor
IL_00bf: conv.i8
IL_00c0: ldloc.0
IL_00c1: and
IL_00c2: stloc.0
IL_00c3: ldloc.0
IL_00c4: ldc.i4.s 12
IL_00c6: conv.i8
IL_00c7: add
IL_00c8: conv.i4
IL_00c9: stloc.1
IL_00ca: br.s IL_00cc
IL_00cc: ldloc.1
IL_00cd: ret
}
}
}
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/xxobj/sizeof/sizeof_Target_32Bit_x86.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib { }
.assembly 'sizeof_Target_32Bit_x86'
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof_Target_32Bit_x86_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field private int32 m_int
.field private unsigned int32 m_uint
.field private unsigned int8 m_byte
.field private int8 m_sbyte
.field private char m_char
.field private int16 m_short
.field private unsigned int16 m_ushort
.field private int64 m_long
.field private unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit ComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct[] ssarr
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit ComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x1
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x2
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x3
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x4
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x5
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x6
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x7
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x8
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x9
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x10
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x11
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x12
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x13
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x14
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x15
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x16
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x17
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x18
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2 ss1
.field private class [mscorlib]System.AppDomain ad
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2 ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0C 49 73 58 38 36 50 72 // null.....IsX86Pr
6F 63 65 73 73 00 00 ) // ocess..
.entrypoint
.maxstack 3
.locals (int32 V_0)
IL_0000: sizeof JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct
IL_0006: ldc.i4.s 32
IL_0008: beq.s IL_0019
IL_000a: ldstr "sizeof(SimpleStruct) failed."
IL_000f: call void [System.Console]System.Console::WriteLine(string)
IL_0014: ldc.i4.s 101
IL_0016: stloc.0
IL_0017: br EXIT
IL_0019: sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct
IL_001f: ldc.i4.s 64
IL_0021: beq.s IL_0032
IL_0023: ldstr "sizeof(ComplexStruct) failed."
IL_0028: call void [System.Console]System.Console::WriteLine(string)
IL_002d: ldc.i4.s 102
IL_002f: stloc.0
IL_0030: br EXIT
IL_0032: sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2
IL_0038: sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct
IL_003e: ldc.i4.s 18
IL_0040: mul
IL_0041: beq.s NEXT1
IL_0043: ldstr "sizeof(ComplexStruct2) failed."
IL_0048: call void [System.Console]System.Console::WriteLine(string)
IL_004d: ldc.i4.s 103
IL_004f: stloc.0
IL_0050: br.s EXIT
NEXT1:
sizeof JitTest_sizeof_Target_32Bit_x86_il.RefComplexStruct
ldc.i4.s 72
beq.s NEXT2
ldstr "sizeof(RefComplexStruct) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 104
stloc.0
br.s EXIT
NEXT2:
sizeof JitTest_sizeof_Target_32Bit_x86_il.RefComplexStruct2
sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2
ldc.i4.1
shl
ldc.i4.4 // Add 4 for the AppDomain field
add
ldc.i4.4 // Add 4 to ensure alignment for ComplexStruct2 (which contains longs)
add
beq.s OK
ldstr "sizeof(RefComplexStruct2) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 105
stloc.0
br.s EXIT
OK: ldstr "sizeof passed"
IL_0057: call void [System.Console]System.Console::WriteLine(string)
IL_005c: ldc.i4 100
IL_005d: stloc.0
EXIT: ldloc.0
ret
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly extern mscorlib { }
.assembly 'sizeof_Target_32Bit_x86'
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof_Target_32Bit_x86_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field private int32 m_int
.field private unsigned int32 m_uint
.field private unsigned int8 m_byte
.field private int8 m_sbyte
.field private char m_char
.field private int16 m_short
.field private unsigned int16 m_ushort
.field private int64 m_long
.field private unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit ComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct[] ssarr
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit ComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x1
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x2
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x3
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x4
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x5
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x6
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x7
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x8
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x9
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x10
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x11
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x12
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x13
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x14
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x15
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x16
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x17
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct x18
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2 ss1
.field private class [mscorlib]System.AppDomain ad
.field private valuetype JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2 ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0C 49 73 58 38 36 50 72 // null.....IsX86Pr
6F 63 65 73 73 00 00 ) // ocess..
.entrypoint
.maxstack 3
.locals (int32 V_0)
IL_0000: sizeof JitTest_sizeof_Target_32Bit_x86_il.SimpleStruct
IL_0006: ldc.i4.s 32
IL_0008: beq.s IL_0019
IL_000a: ldstr "sizeof(SimpleStruct) failed."
IL_000f: call void [System.Console]System.Console::WriteLine(string)
IL_0014: ldc.i4.s 101
IL_0016: stloc.0
IL_0017: br EXIT
IL_0019: sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct
IL_001f: ldc.i4.s 64
IL_0021: beq.s IL_0032
IL_0023: ldstr "sizeof(ComplexStruct) failed."
IL_0028: call void [System.Console]System.Console::WriteLine(string)
IL_002d: ldc.i4.s 102
IL_002f: stloc.0
IL_0030: br EXIT
IL_0032: sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2
IL_0038: sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct
IL_003e: ldc.i4.s 18
IL_0040: mul
IL_0041: beq.s NEXT1
IL_0043: ldstr "sizeof(ComplexStruct2) failed."
IL_0048: call void [System.Console]System.Console::WriteLine(string)
IL_004d: ldc.i4.s 103
IL_004f: stloc.0
IL_0050: br.s EXIT
NEXT1:
sizeof JitTest_sizeof_Target_32Bit_x86_il.RefComplexStruct
ldc.i4.s 72
beq.s NEXT2
ldstr "sizeof(RefComplexStruct) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 104
stloc.0
br.s EXIT
NEXT2:
sizeof JitTest_sizeof_Target_32Bit_x86_il.RefComplexStruct2
sizeof JitTest_sizeof_Target_32Bit_x86_il.ComplexStruct2
ldc.i4.1
shl
ldc.i4.4 // Add 4 for the AppDomain field
add
ldc.i4.4 // Add 4 to ensure alignment for ComplexStruct2 (which contains longs)
add
beq.s OK
ldstr "sizeof(RefComplexStruct2) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 105
stloc.0
br.s EXIT
OK: ldstr "sizeof passed"
IL_0057: call void [System.Console]System.Console::WriteLine(string)
IL_005c: ldc.i4 100
IL_005d: stloc.0
EXIT: ldloc.0
ret
}
}
}
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/xxobj/sizeof/sizeof_Target_64Bit_and_arm.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib { }
.assembly 'sizeof_Target_64Bit_and_arm'
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof_Target_64Bit_and_arm_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field private int32 m_int
.field private unsigned int32 m_uint
.field private unsigned int8 m_byte
.field private int8 m_sbyte
.field private char m_char
.field private int16 m_short
.field private unsigned int16 m_ushort
.field private int64 m_long
.field private unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit ComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct[] ssarr
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit ComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x1
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x2
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x3
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x4
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x5
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x6
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x7
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x8
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x9
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x10
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x11
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x12
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x13
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x14
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x15
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x16
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x17
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x18
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2 ss1
.field private class [mscorlib]System.AppDomain ad
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2 ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsNotX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [mscorlib]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0F 49 73 4E 6F 74 58 38 // null.....IsNotX8
36 50 72 6F 63 65 73 73 00 00 ) // 6Process..
.entrypoint
.maxstack 3
.locals (int32 V_0)
IL_0000: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct
IL_0006: ldc.i4.s 32
IL_0008: beq.s IL_0019
IL_000a: ldstr "sizeof(SimpleStruct) failed."
IL_000f: call void [System.Console]System.Console::WriteLine(string)
IL_0014: ldc.i4.s 101
IL_0016: stloc.0
IL_0017: br EXIT
IL_0019: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct
IL_001f: ldc.i4.s 64
IL_0021: beq.s IL_0032
IL_0023: ldstr "sizeof(ComplexStruct) failed."
IL_0028: call void [System.Console]System.Console::WriteLine(string)
IL_002d: ldc.i4.s 102
IL_002f: stloc.0
IL_0030: br.s EXIT
IL_0032: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2
IL_0038: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct
IL_003e: ldc.i4.s 18
IL_0040: mul
IL_0041: beq.s NEXT1
IL_0043: ldstr "sizeof(ComplexStruct2) failed."
IL_0048: call void [System.Console]System.Console::WriteLine(string)
IL_004d: ldc.i4.s 103
IL_004f: stloc.0
IL_0050: br.s EXIT
NEXT1:
sizeof JitTest_sizeof_Target_64Bit_and_arm_il.RefComplexStruct
ldc.i4.s 72
beq.s NEXT2
ldstr "sizeof(RefComplexStruct) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 104
stloc.0
br.s EXIT
NEXT2:
sizeof JitTest_sizeof_Target_64Bit_and_arm_il.RefComplexStruct2
sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2
ldc.i4.1
shl
ldc.i4.8
add
beq.s OK
ldstr "sizeof(RefComplexStruct2) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 105
stloc.0
br.s EXIT
OK: ldstr "sizeof passed"
IL_0057: call void [System.Console]System.Console::WriteLine(string)
IL_005c: ldc.i4 100
IL_005d: stloc.0
EXIT: ldloc.0
ret
}
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern System.Runtime { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) }
.assembly extern mscorlib { }
.assembly 'sizeof_Target_64Bit_and_arm'
{
}
.assembly extern xunit.core {}
.assembly extern Microsoft.DotNet.XUnitExtensions { .publickeytoken = (31 BF 38 56 AD 36 4E 35 ) }
.assembly extern TestLibrary {}
.custom instance void [mscorlib]System.Security.UnverifiableCodeAttribute::.ctor() = ( 01 00 00 00 )
.namespace JitTest_sizeof_Target_64Bit_and_arm_il
{
.class private sequential ansi sealed beforefieldinit SimpleStruct
extends [mscorlib]System.ValueType
{
.field private int32 m_int
.field private unsigned int32 m_uint
.field private unsigned int8 m_byte
.field private int8 m_sbyte
.field private char m_char
.field private int16 m_short
.field private unsigned int16 m_ushort
.field private int64 m_long
.field private unsigned int64 m_ulong
}
.class private sequential ansi sealed beforefieldinit ComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss1
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct[] ssarr
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct ss2
}
.class private sequential ansi sealed beforefieldinit ComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x1
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x2
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x3
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x4
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x5
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x6
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x7
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x8
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x9
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x10
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x11
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x12
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x13
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x14
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x15
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x16
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x17
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct x18
}
.class private sequential ansi sealed beforefieldinit RefComplexStruct2
extends [mscorlib]System.ValueType
{
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2 ss1
.field private class [mscorlib]System.AppDomain ad
.field private valuetype JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2 ss2
}
.class private sequential ansi sealed beforefieldinit Test
extends [mscorlib]System.ValueType
{
.pack 1
.size 1
.method private hidebysig static int32
Main() cil managed
{
// [ConditionalFact(typeof(TestLibrary.PlatformDetection), nameof(TestLibrary.PlatformDetection.IsNotX86Process))]
.custom instance void [Microsoft.DotNet.XUnitExtensions]Xunit.ConditionalFactAttribute::.ctor(class [System.Runtime]System.Type,
string[]) = ( 01 00 61 54 65 73 74 4C 69 62 72 61 72 79 2E 50 // ..aTestLibrary.P
6C 61 74 66 6F 72 6D 44 65 74 65 63 74 69 6F 6E // latformDetection
2C 20 54 65 73 74 4C 69 62 72 61 72 79 2C 20 56 // , TestLibrary, V
65 72 73 69 6F 6E 3D 30 2E 30 2E 30 2E 30 2C 20 // ersion=0.0.0.0,
43 75 6C 74 75 72 65 3D 6E 65 75 74 72 61 6C 2C // Culture=neutral,
20 50 75 62 6C 69 63 4B 65 79 54 6F 6B 65 6E 3D // PublicKeyToken=
6E 75 6C 6C 01 00 00 00 0F 49 73 4E 6F 74 58 38 // null.....IsNotX8
36 50 72 6F 63 65 73 73 00 00 ) // 6Process..
.entrypoint
.maxstack 3
.locals (int32 V_0)
IL_0000: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.SimpleStruct
IL_0006: ldc.i4.s 32
IL_0008: beq.s IL_0019
IL_000a: ldstr "sizeof(SimpleStruct) failed."
IL_000f: call void [System.Console]System.Console::WriteLine(string)
IL_0014: ldc.i4.s 101
IL_0016: stloc.0
IL_0017: br EXIT
IL_0019: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct
IL_001f: ldc.i4.s 64
IL_0021: beq.s IL_0032
IL_0023: ldstr "sizeof(ComplexStruct) failed."
IL_0028: call void [System.Console]System.Console::WriteLine(string)
IL_002d: ldc.i4.s 102
IL_002f: stloc.0
IL_0030: br.s EXIT
IL_0032: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2
IL_0038: sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct
IL_003e: ldc.i4.s 18
IL_0040: mul
IL_0041: beq.s NEXT1
IL_0043: ldstr "sizeof(ComplexStruct2) failed."
IL_0048: call void [System.Console]System.Console::WriteLine(string)
IL_004d: ldc.i4.s 103
IL_004f: stloc.0
IL_0050: br.s EXIT
NEXT1:
sizeof JitTest_sizeof_Target_64Bit_and_arm_il.RefComplexStruct
ldc.i4.s 72
beq.s NEXT2
ldstr "sizeof(RefComplexStruct) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 104
stloc.0
br.s EXIT
NEXT2:
sizeof JitTest_sizeof_Target_64Bit_and_arm_il.RefComplexStruct2
sizeof JitTest_sizeof_Target_64Bit_and_arm_il.ComplexStruct2
ldc.i4.1
shl
ldc.i4.8
add
beq.s OK
ldstr "sizeof(RefComplexStruct2) failed."
call void [System.Console]System.Console::WriteLine(string)
ldc.i4.s 105
stloc.0
br.s EXIT
OK: ldstr "sizeof passed"
IL_0057: call void [System.Console]System.Console::WriteLine(string)
IL_005c: ldc.i4 100
IL_005d: stloc.0
EXIT: ldloc.0
ret
}
}
}
| 1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b91953/2.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly '2' {}
.assembly extern xunit.core {}
.class ILGEN_0xb8267005 {
.field static float64 field_0x2
.method static int32 Main() {
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 19
.locals (unsigned int64 LOCAL_0x0,int64 LOCAL_0x1,native int LOCAL_0x2,int64 LOCAL_0x3,unsigned int16 LOCAL_0x4,unsigned int16[] LOCAL_0x5,int32 LOCAL_0x6,object LOCAL_0x7,int16[] LOCAL_0x8,float64[] LOCAL_0x9,float64[] LOCAL_0xa)
//BEGIN INIT LOCALS
ldc.i8 0x3f2016c6e04397c0
stloc LOCAL_0x0
ldc.i8 0xc48d364daf72bb88
stloc LOCAL_0x1
ldc.i4 0x81398436
stloc LOCAL_0x2
newobj instance void [mscorlib]System.Object::.ctor()
stloc LOCAL_0x7
//END INIT LOCALS
ldc.r8 float64(0x3658f4d211e645cf)
stsfld float64 ILGEN_0xb8267005::field_0x2
Start_Orphan_a_0:
ldloca LOCAL_0x7
Start_Orphan_a_1:
ldc.i4 6
Loop_0x0: //WHAT
ldloca LOCAL_0x0
ldind.u8
conv.i8
Start_Orphan_b_b:
ldc.r4 float32(0xd5f6ccd2)
ldc.r4 float32(0x792eb395)
beq Branch_0x8
ldc.i4 0x81398436
br Branch_0x9
Branch_0x8:
ldc.i4 0x81398436
Branch_0x9:
ldc.i4 0x81398436
bne.un Branch_0x6
ldloc LOCAL_0x3
br Branch_0x7
Branch_0x6:
ldloc LOCAL_0x0
Branch_0x7:
ldc.i4 0x81398436
ldc.i4 0x81398436
bgt Branch_0xe
ldsfld float64 ILGEN_0xb8267005::field_0x2
br Branch_0xf
Branch_0xe:
ldc.r8 float64(0xd44708197df14375)
Branch_0xf:
ldc.r4 float32(0xe2a11a95)
ldc.r4 float32(0xc9f53748)
bgt Branch_0x10
ldsfld float64 ILGEN_0xb8267005::field_0x2
br Branch_0x11
Branch_0x10:
ldc.r4 float32(0x56b8f6cb)
Branch_0x11:
pop
pop
pop
End_Orphan_b_b:
conv.i2
pop
ldc.i4 1
sub
dup
brtrue Loop_0x0
pop
Loop_0x1: // End of WHAT
End_Orphan_a_1:
newobj instance void [mscorlib]System.Object::.ctor()
stind.ref
End_Orphan_a_0:
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly '2' {}
.assembly extern xunit.core {}
.class ILGEN_0xb8267005 {
.field static float64 field_0x2
.method static int32 Main() {
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 19
.locals (unsigned int64 LOCAL_0x0,int64 LOCAL_0x1,native int LOCAL_0x2,int64 LOCAL_0x3,unsigned int16 LOCAL_0x4,unsigned int16[] LOCAL_0x5,int32 LOCAL_0x6,object LOCAL_0x7,int16[] LOCAL_0x8,float64[] LOCAL_0x9,float64[] LOCAL_0xa)
//BEGIN INIT LOCALS
ldc.i8 0x3f2016c6e04397c0
stloc LOCAL_0x0
ldc.i8 0xc48d364daf72bb88
stloc LOCAL_0x1
ldc.i4 0x81398436
stloc LOCAL_0x2
newobj instance void [mscorlib]System.Object::.ctor()
stloc LOCAL_0x7
//END INIT LOCALS
ldc.r8 float64(0x3658f4d211e645cf)
stsfld float64 ILGEN_0xb8267005::field_0x2
Start_Orphan_a_0:
ldloca LOCAL_0x7
Start_Orphan_a_1:
ldc.i4 6
Loop_0x0: //WHAT
ldloca LOCAL_0x0
ldind.u8
conv.i8
Start_Orphan_b_b:
ldc.r4 float32(0xd5f6ccd2)
ldc.r4 float32(0x792eb395)
beq Branch_0x8
ldc.i4 0x81398436
br Branch_0x9
Branch_0x8:
ldc.i4 0x81398436
Branch_0x9:
ldc.i4 0x81398436
bne.un Branch_0x6
ldloc LOCAL_0x3
br Branch_0x7
Branch_0x6:
ldloc LOCAL_0x0
Branch_0x7:
ldc.i4 0x81398436
ldc.i4 0x81398436
bgt Branch_0xe
ldsfld float64 ILGEN_0xb8267005::field_0x2
br Branch_0xf
Branch_0xe:
ldc.r8 float64(0xd44708197df14375)
Branch_0xf:
ldc.r4 float32(0xe2a11a95)
ldc.r4 float32(0xc9f53748)
bgt Branch_0x10
ldsfld float64 ILGEN_0xb8267005::field_0x2
br Branch_0x11
Branch_0x10:
ldc.r4 float32(0x56b8f6cb)
Branch_0x11:
pop
pop
pop
End_Orphan_b_b:
conv.i2
pop
ldc.i4 1
sub
dup
brtrue Loop_0x0
pop
Loop_0x1: // End of WHAT
End_Orphan_a_1:
newobj instance void [mscorlib]System.Object::.ctor()
stind.ref
End_Orphan_a_0:
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/jit64/mcc/interop/mcc_i76.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Runtime.Extensions { auto }
.assembly extern xunit.core {}
.assembly extern mscorlib { auto }
.assembly 'mcc_i76' {}
.namespace MCCTest
{
.class MyClass
{
.method assembly static pinvokeimpl("native_i7s" as "#1" stdcall)
valuetype MCCTest.VType7 Sum(unsigned int64, valuetype MCCTest.VType7, float64, valuetype MCCTest.VType7, float32, valuetype MCCTest.VType7,
int32, valuetype MCCTest.VType7, unsigned int16, valuetype MCCTest.VType7, unsigned int32, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7, int64, valuetype MCCTest.VType7, float32, valuetype MCCTest.VType7,
float64, valuetype MCCTest.VType7, float32, valuetype MCCTest.VType7, int16, valuetype MCCTest.VType7) cil managed preservesig {
}
.method private valuetype MCCTest.VType7 GetSum()
{
.maxstack 64
.locals init (
[0] valuetype MCCTest.VType7 v1,
[1] valuetype MCCTest.VType7 v2,
[2] valuetype MCCTest.VType7 v3,
[3] valuetype MCCTest.VType7 v4,
[4] valuetype MCCTest.VType7 v5,
[5] valuetype MCCTest.VType7 v6,
[6] valuetype MCCTest.VType7 v7,
[7] valuetype MCCTest.VType7 v8,
[8] valuetype MCCTest.VType7 v9,
[9] valuetype MCCTest.VType7 v10,
[10] valuetype MCCTest.VType7 v11,
[11] valuetype MCCTest.VType7 v12
)
// Initialize v1 thru v12
ldloca.s v1
call instance void MCCTest.VType7::Init()
ldloca.s v2
call instance void MCCTest.VType7::Init()
ldloca.s v3
call instance void MCCTest.VType7::Init()
ldloca.s v4
call instance void MCCTest.VType7::Init()
ldloca.s v5
call instance void MCCTest.VType7::Init()
ldloca.s v6
call instance void MCCTest.VType7::Init()
ldloca.s v7
call instance void MCCTest.VType7::Init()
ldloca.s v8
call instance void MCCTest.VType7::Init()
ldloca.s v9
call instance void MCCTest.VType7::Init()
ldloca.s v10
call instance void MCCTest.VType7::Init()
ldloca.s v11
call instance void MCCTest.VType7::Init()
ldloca.s v12
call instance void MCCTest.VType7::Init()
ldc.i8 1
ldloc.s v1
ldc.r8 2
ldloc.s v2
ldc.r4 3
ldloc.s v3
ldc.i4 4
ldloc.s v4
ldc.i8 5
conv.u2
ldloc.s v5
ldc.i4 6
ldloc.s v6
ldc.r4 7
ldloc.s v7
ldc.i8 8
ldloc.s v8
ldc.r4 9
ldloc.s v9
ldc.r8 10
ldloc.s v10
ldc.r4 11
ldloc.s v11
ldc.i8 12
conv.i2
ldloc.s v12
tail.
call valuetype MCCTest.VType7 MCCTest.MyClass::Sum( unsigned int64, valuetype MCCTest.VType7,
float64, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
int32, valuetype MCCTest.VType7,
unsigned int16, valuetype MCCTest.VType7,
unsigned int32, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
int64, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
float64, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
int16, valuetype MCCTest.VType7)
ret
}
.method public specialname rtspecialname instance void .ctor()
{
.maxstack 1
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
} // end of method MyClass::.ctor
.method private static int32 Main(string[] args)
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 64
.locals init (
[0] class MCCTest.MyClass me,
[1] valuetype MCCTest.VType7 res,
[2] int32 rc
)
newobj instance void MCCTest.MyClass::.ctor()
stloc.s me
ldloc.s me
call instance valuetype MCCTest.VType7 MCCTest.MyClass::GetSum()
stloc.s res
// Check Result
ldloc.s res
ldc.i4 12
call int32 MCCTest.Common::CheckResult(valuetype MCCTest.VType7, int32)
stloc.s rc
ldloc.s rc
ret
} // end of method MyClass::Main
} // end of class MyClass
} // end of namespace MCCTest
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Runtime.Extensions { auto }
.assembly extern xunit.core {}
.assembly extern mscorlib { auto }
.assembly 'mcc_i76' {}
.namespace MCCTest
{
.class MyClass
{
.method assembly static pinvokeimpl("native_i7s" as "#1" stdcall)
valuetype MCCTest.VType7 Sum(unsigned int64, valuetype MCCTest.VType7, float64, valuetype MCCTest.VType7, float32, valuetype MCCTest.VType7,
int32, valuetype MCCTest.VType7, unsigned int16, valuetype MCCTest.VType7, unsigned int32, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7, int64, valuetype MCCTest.VType7, float32, valuetype MCCTest.VType7,
float64, valuetype MCCTest.VType7, float32, valuetype MCCTest.VType7, int16, valuetype MCCTest.VType7) cil managed preservesig {
}
.method private valuetype MCCTest.VType7 GetSum()
{
.maxstack 64
.locals init (
[0] valuetype MCCTest.VType7 v1,
[1] valuetype MCCTest.VType7 v2,
[2] valuetype MCCTest.VType7 v3,
[3] valuetype MCCTest.VType7 v4,
[4] valuetype MCCTest.VType7 v5,
[5] valuetype MCCTest.VType7 v6,
[6] valuetype MCCTest.VType7 v7,
[7] valuetype MCCTest.VType7 v8,
[8] valuetype MCCTest.VType7 v9,
[9] valuetype MCCTest.VType7 v10,
[10] valuetype MCCTest.VType7 v11,
[11] valuetype MCCTest.VType7 v12
)
// Initialize v1 thru v12
ldloca.s v1
call instance void MCCTest.VType7::Init()
ldloca.s v2
call instance void MCCTest.VType7::Init()
ldloca.s v3
call instance void MCCTest.VType7::Init()
ldloca.s v4
call instance void MCCTest.VType7::Init()
ldloca.s v5
call instance void MCCTest.VType7::Init()
ldloca.s v6
call instance void MCCTest.VType7::Init()
ldloca.s v7
call instance void MCCTest.VType7::Init()
ldloca.s v8
call instance void MCCTest.VType7::Init()
ldloca.s v9
call instance void MCCTest.VType7::Init()
ldloca.s v10
call instance void MCCTest.VType7::Init()
ldloca.s v11
call instance void MCCTest.VType7::Init()
ldloca.s v12
call instance void MCCTest.VType7::Init()
ldc.i8 1
ldloc.s v1
ldc.r8 2
ldloc.s v2
ldc.r4 3
ldloc.s v3
ldc.i4 4
ldloc.s v4
ldc.i8 5
conv.u2
ldloc.s v5
ldc.i4 6
ldloc.s v6
ldc.r4 7
ldloc.s v7
ldc.i8 8
ldloc.s v8
ldc.r4 9
ldloc.s v9
ldc.r8 10
ldloc.s v10
ldc.r4 11
ldloc.s v11
ldc.i8 12
conv.i2
ldloc.s v12
tail.
call valuetype MCCTest.VType7 MCCTest.MyClass::Sum( unsigned int64, valuetype MCCTest.VType7,
float64, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
int32, valuetype MCCTest.VType7,
unsigned int16, valuetype MCCTest.VType7,
unsigned int32, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
int64, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
float64, valuetype MCCTest.VType7,
float32, valuetype MCCTest.VType7,
int16, valuetype MCCTest.VType7)
ret
}
.method public specialname rtspecialname instance void .ctor()
{
.maxstack 1
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
} // end of method MyClass::.ctor
.method private static int32 Main(string[] args)
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 64
.locals init (
[0] class MCCTest.MyClass me,
[1] valuetype MCCTest.VType7 res,
[2] int32 rc
)
newobj instance void MCCTest.MyClass::.ctor()
stloc.s me
ldloc.s me
call instance valuetype MCCTest.VType7 MCCTest.MyClass::GetSum()
stloc.s res
// Check Result
ldloc.s res
ldc.i4 12
call int32 MCCTest.Common::CheckResult(valuetype MCCTest.VType7, int32)
stloc.s rc
ldloc.s rc
ret
} // end of method MyClass::Main
} // end of class MyClass
} // end of namespace MCCTest
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/verifier/valid_exception_sequence.il |
// valid CIL which breaks the ECMA-335 rules.
// this CIL should fail verification by a conforming CLI verifier.
.assembly 'valid_branch_inside_same_block_1_generated'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.class ClassA
extends [mscorlib]System.Object
{
}
.class sealed MyValueType
extends [mscorlib]System.ValueType
{
.field private int32 v
}
.class public Template`1<T>
extends [mscorlib]System.Object
{
}
.class sealed public ValueTypeTemplate`1<T>
extends [mscorlib]System.ValueType
{
.field private int32 v
}
.method public static int32 Main() cil managed
{
.entrypoint
.maxstack 8
.locals init (object _X0)
br BLOCK_1
ldc.i4 0x7FFFFFFF
pop
BLOCK_1:
nop
.try {
nop
newobj instance void class [mscorlib]System.Exception::.ctor()
throw
nop
IN_TRY:
BLOCK_2:
leave END
} catch [mscorlib]System.Exception {
stloc.0
ldstr "----catch {0}"
ldloc.0
call void class [mscorlib]System.Console::WriteLine(string, object)
nop
IN_CATCH:
BLOCK_3:
nop
leave HERE
}
HERE:
.try {
leave HERE_2
} finally {
nop
nop
IN_FINALLY:
BLOCK_4:
nop
endfinally
}
HERE_2:
.try {
newobj instance void class [mscorlib]System.Exception::.ctor()
throw
leave END
} filter {
stloc.0
ldstr "---filter {0}"
ldloc.0
call void class [mscorlib]System.Console::WriteLine(string, object)
nop
nop
IN_FILTER:
BLOCK_5:
nop
ldc.i4.1
endfilter
}
{
stloc.0
ldstr "---handler {0}"
ldloc.0
call void class [mscorlib]System.Console::WriteLine(string, object)
nop
nop
IN_HANDLER:
BLOCK_6:
nop
leave END
}
END:
ldc.i4.0
ret
}
|
// valid CIL which breaks the ECMA-335 rules.
// this CIL should fail verification by a conforming CLI verifier.
.assembly 'valid_branch_inside_same_block_1_generated'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.class ClassA
extends [mscorlib]System.Object
{
}
.class sealed MyValueType
extends [mscorlib]System.ValueType
{
.field private int32 v
}
.class public Template`1<T>
extends [mscorlib]System.Object
{
}
.class sealed public ValueTypeTemplate`1<T>
extends [mscorlib]System.ValueType
{
.field private int32 v
}
.method public static int32 Main() cil managed
{
.entrypoint
.maxstack 8
.locals init (object _X0)
br BLOCK_1
ldc.i4 0x7FFFFFFF
pop
BLOCK_1:
nop
.try {
nop
newobj instance void class [mscorlib]System.Exception::.ctor()
throw
nop
IN_TRY:
BLOCK_2:
leave END
} catch [mscorlib]System.Exception {
stloc.0
ldstr "----catch {0}"
ldloc.0
call void class [mscorlib]System.Console::WriteLine(string, object)
nop
IN_CATCH:
BLOCK_3:
nop
leave HERE
}
HERE:
.try {
leave HERE_2
} finally {
nop
nop
IN_FINALLY:
BLOCK_4:
nop
endfinally
}
HERE_2:
.try {
newobj instance void class [mscorlib]System.Exception::.ctor()
throw
leave END
} filter {
stloc.0
ldstr "---filter {0}"
ldloc.0
call void class [mscorlib]System.Console::WriteLine(string, object)
nop
nop
IN_FILTER:
BLOCK_5:
nop
ldc.i4.1
endfilter
}
{
stloc.0
ldstr "---handler {0}"
ldloc.0
call void class [mscorlib]System.Console::WriteLine(string, object)
nop
nop
IN_HANDLER:
BLOCK_6:
nop
leave END
}
END:
ldc.i4.0
ret
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest304/Generated304.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated304 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct354`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<!T1,class BaseClass0>, IBase0
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct354::Method7.2872<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "MyStruct354::Method0.2873()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining {
.override method instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ret
}
.method public hidebysig virtual instance string Method1() cil managed noinlining {
ldstr "MyStruct354::Method1.2875()"
ret
}
.method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining {
ldstr "MyStruct354::Method2.2876<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining {
ldstr "MyStruct354::Method3.2877<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining {
.override method instance string IBase0::Method3<[1]>()
ldstr "MyStruct354::Method3.MI.2878<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod697<M0>() cil managed noinlining {
ldstr "MyStruct354::ClassMethod697.2879<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated304 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.T.T<T0,T1,(valuetype MyStruct354`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.T.T<T0,T1,(valuetype MyStruct354`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.A.T<T1,(valuetype MyStruct354`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.A.T<T1,(valuetype MyStruct354`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<!!T1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.A.A<(valuetype MyStruct354`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.A.A<(valuetype MyStruct354`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.A.B<(valuetype MyStruct354`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.A.B<(valuetype MyStruct354`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.B.T<T1,(valuetype MyStruct354`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.B.T<T1,(valuetype MyStruct354`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<!!T1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.B.A<(valuetype MyStruct354`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.B.A<(valuetype MyStruct354`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.B.B<(valuetype MyStruct354`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.B.B<(valuetype MyStruct354`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloca V_3
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ToString() pop
pop
ldloc V_3
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_4)
ldloca V_4
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloca V_4
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ToString() pop
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_6
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV21
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV22
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22:
.try { ldloc V_7
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV23
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_8)
ldloca V_8
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV27
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV28
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV29
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29:
.try { ldloc V_8
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV30
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV30} LV30:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV31
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV31} LV31:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV32
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV32} LV32:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV33
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV33} LV33:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV34
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV34} LV34:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV35
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV35} LV35:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV36
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV36} LV36:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV37
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV37} LV37:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV38
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV38} LV38:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV39
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV39} LV39:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_11)
ldloca V_11
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
.try { ldloc V_11
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_11
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_11
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_12)
ldloca V_12
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
.try { ldloc V_12
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_12
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_12
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_15)
ldloca V_15
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0> ldnull
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_16)
ldloca V_16
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1> ldnull
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated304::MethodCallingTest()
call void Generated304::ConstrainedCallsTest()
call void Generated304::StructConstrainedInterfaceCallsTest()
call void Generated304::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated304 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct354`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<!T1,class BaseClass0>, IBase0
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct354::Method7.2872<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "MyStruct354::Method0.2873()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining {
.override method instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ret
}
.method public hidebysig virtual instance string Method1() cil managed noinlining {
ldstr "MyStruct354::Method1.2875()"
ret
}
.method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining {
ldstr "MyStruct354::Method2.2876<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining {
ldstr "MyStruct354::Method3.2877<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining {
.override method instance string IBase0::Method3<[1]>()
ldstr "MyStruct354::Method3.MI.2878<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod697<M0>() cil managed noinlining {
ldstr "MyStruct354::ClassMethod697.2879<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated304 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.T.T<T0,T1,(valuetype MyStruct354`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.T.T<T0,T1,(valuetype MyStruct354`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<!!T0,!!T1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.A.T<T1,(valuetype MyStruct354`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.A.T<T1,(valuetype MyStruct354`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<!!T1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,!!T1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.A.A<(valuetype MyStruct354`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.A.A<(valuetype MyStruct354`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.A.B<(valuetype MyStruct354`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.A.B<(valuetype MyStruct354`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.B.T<T1,(valuetype MyStruct354`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.B.T<T1,(valuetype MyStruct354`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<!!T1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,!!T1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.B.A<(valuetype MyStruct354`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.B.A<(valuetype MyStruct354`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct354.B.B<(valuetype MyStruct354`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 10
.locals init (string[] actualResults)
ldc.i4.s 5
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct354.B.B<(valuetype MyStruct354`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 5
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloca V_3
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ToString() pop
pop
ldloc V_3
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_4)
ldloca V_4
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloca V_4
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ClassMethod697<object>()
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type MyStruct354"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ToString() pop
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string IBase0::Method0()
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_5
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_6
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_6
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV21
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV22
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22:
.try { ldloc V_7
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV23
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25:
.try { ldloc V_7
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_8)
ldloca V_8
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV27
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV28
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV29
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29:
.try { ldloc V_8
ldstr "MyStruct354::Method0.MI.2874()#MyStruct354::Method1.2875()#MyStruct354::Method2.2876<System.Object>()#MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.IBase0<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV30
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV30} LV30:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV31
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV31} LV31:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV32
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV32} LV32:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV33
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV33} LV33:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV34
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV34} LV34:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV35
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV35} LV35:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.A.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV36
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV36} LV36:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV37
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV37} LV37:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV38
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV38} LV38:
.try { ldloc V_8
ldstr "MyStruct354::Method7.2872<System.Object>()#"
call void Generated304::M.IBase2.B.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV39
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV39} LV39:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.A<valuetype MyStruct354`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.A.B<valuetype MyStruct354`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_11)
ldloca V_11
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
.try { ldloc V_11
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_11
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.T<class BaseClass0,valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_11
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.A<valuetype MyStruct354`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_12)
ldloca V_12
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
.try { ldloc V_12
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_12
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.T<class BaseClass1,valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_12
ldstr "MyStruct354::Method7.2872<System.Object>()#" +
"MyStruct354::Method0.MI.2874()#" +
"MyStruct354::Method1.2875()#" +
"MyStruct354::Method2.2876<System.Object>()#" +
"MyStruct354::Method3.MI.2878<System.Object>()#"
call void Generated304::M.MyStruct354.B.B<valuetype MyStruct354`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct354`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct354`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct354`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass0> V_15)
ldloca V_15
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0> ldnull
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct354`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct354`2<class BaseClass1,class BaseClass1> V_16)
ldloca V_16
initobj valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.2873()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.2877<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ClassMethod697<object>()
calli default string(object)
ldstr "MyStruct354::ClassMethod697.2879<System.Object>()"
ldstr "valuetype MyStruct354`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1> ldnull
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct354`2<class BaseClass1,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method0()
calli default string(object)
ldstr "MyStruct354::Method0.MI.2874()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method1()
calli default string(object)
ldstr "MyStruct354::Method1.2875()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method2<object>()
calli default string(object)
ldstr "MyStruct354::Method2.2876<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string IBase0::Method3<object>()
calli default string(object)
ldstr "MyStruct354::Method3.MI.2878<System.Object>()"
ldstr "IBase0 on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct354`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct354::Method7.2872<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct354`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated304::MethodCallingTest()
call void Generated304::ConstrainedCallsTest()
call void Generated304::StructConstrainedInterfaceCallsTest()
call void Generated304::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48554/b48554a.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly d064
{
}
.class ILGEN_877332642 {
//(Nov 12 1999)15:27:27
.method static int32 main() {
.entrypoint
.maxstack 6
.locals ( int32, float64, float64, int64, int32, float64, int64, int32, int64, float64, float32, float32, float32, int64, float64, int32)
ldc.i4 0x33fb5f4a
stloc 0
ldc.r8 float64(0x2a045fc65d836ab8)
stloc 1
ldc.r8 float64(0x6e1d2e227d4b756a)
stloc 2
ldc.i8 0x296779c3221772d7
stloc 3
ldc.i4 0x61a11b2
stloc 4
ldc.r8 float64(0x26d3549e60046c0f)
stloc 5
ldc.i8 0x5488414146c37bd9
stloc 6
ldc.i4 0x1bff1520
stloc 7
ldc.i8 0x7c468fa593459a
stloc 8
ldc.r8 float64(0x473479cbe027795)
stloc 9
ldc.r4 float32(0x21a412dd)
stloc 10
ldc.r4 float32(0x272937ba)
stloc 11
ldc.r4 float32(0x43c818f2)
stloc 12
ldc.i8 0x6448377b121c4166
stloc 13
ldc.r8 float64(0x4dc668dd35461cd4)
stloc 14
ldc.i4 0x1047cad
stloc 15
ldc.r4 float32(0x493630c)
ldloc 8
pop
conv.r4
conv.i
ldc.i8 0x483f1a9c28a2880
ldc.i4.4
stloc 0
conv.i4
ldc.i4.7
conv.u
conv.u4
cgt.un
sub
ldloc 8
conv.u
ldloc 11
conv.i
xor
ldc.r8 float64(0x741f55ce7dd462b0)
ldc.r8 float64(0x400b4b00622e7f20)
add
ldc.i4 0x9516219
conv.i4
stloc 15
stloc 9
conv.u1
clt
ldc.i4.1
sub
ldc.i4 100
add
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly d064
{
}
.class ILGEN_877332642 {
//(Nov 12 1999)15:27:27
.method static int32 main() {
.entrypoint
.maxstack 6
.locals ( int32, float64, float64, int64, int32, float64, int64, int32, int64, float64, float32, float32, float32, int64, float64, int32)
ldc.i4 0x33fb5f4a
stloc 0
ldc.r8 float64(0x2a045fc65d836ab8)
stloc 1
ldc.r8 float64(0x6e1d2e227d4b756a)
stloc 2
ldc.i8 0x296779c3221772d7
stloc 3
ldc.i4 0x61a11b2
stloc 4
ldc.r8 float64(0x26d3549e60046c0f)
stloc 5
ldc.i8 0x5488414146c37bd9
stloc 6
ldc.i4 0x1bff1520
stloc 7
ldc.i8 0x7c468fa593459a
stloc 8
ldc.r8 float64(0x473479cbe027795)
stloc 9
ldc.r4 float32(0x21a412dd)
stloc 10
ldc.r4 float32(0x272937ba)
stloc 11
ldc.r4 float32(0x43c818f2)
stloc 12
ldc.i8 0x6448377b121c4166
stloc 13
ldc.r8 float64(0x4dc668dd35461cd4)
stloc 14
ldc.i4 0x1047cad
stloc 15
ldc.r4 float32(0x493630c)
ldloc 8
pop
conv.r4
conv.i
ldc.i8 0x483f1a9c28a2880
ldc.i4.4
stloc 0
conv.i4
ldc.i4.7
conv.u
conv.u4
cgt.un
sub
ldloc 8
conv.u
ldloc 11
conv.i
xor
ldc.r8 float64(0x741f55ce7dd462b0)
ldc.r8 float64(0x400b4b00622e7f20)
add
ldc.i4 0x9516219
conv.i4
stloc 15
stloc 9
conv.u1
clt
ldc.i4.1
sub
ldc.i4 100
add
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/tailcall/fsharp-shallowtail.il | /*
This test is derived from below F#.
Comment out the two failing tests.
fsharpc --standalone --optimize- fsharp.fs
monolinker fsharp.exe to trim a little
change resource-using code to use constant strings
(**************************************
F# tests for validating tail calls
are correctly generated by the
compiler and taken by the .NET
runtime.
Tested and passes when ran against
F# v1.9.6.16
Run this script via:
Chris Smith
[email protected]
**************************************)
open System
// --------------------------------------------------
// Utilities
// --------------------------------------------------
// Check an expression against the result. If they do not
// match the script immediately terminates.
let RunTest msg actual expected =
if actual = expected then
Console.WriteLine(msg + ": YES")
else
Console.WriteLine("\n***** " + msg + ": FAIL\n")
exit 1
let HugeInt = 10000000
// --------------------------------------------------
// Tail Call Tests
// --------------------------------------------------
// Not a tail call - test that this overflows the stack
let rec nonTailCall x =
if x = 0
then 0
else 1 + nonTailCall (x - 1)
// Simple tail call, the compiler will convert to while loop
let rec simpleTail1 x acc =
if x = 0
then acc
else simpleTail1 (x - 1) (acc + 1)
RunTest "simpleTail1" (simpleTail1 HugeInt 0) HugeInt
// Another simple example
let rec simpleTail2 acc = function
|0 -> acc
|i -> simpleTail2 (acc+1) (i-1)
RunTest "simpleTail2" (simpleTail2 HugeInt 0) HugeInt
// Mutually recurisve tail call, compiler will emit tail instruction
let rec mutualTail1IsOdd x =
match x with
| 1 -> true
| n -> mutualTail1IsEven (x - 1)
and mutualTail1IsEven x =
match x with
| 1 -> false
| 0 -> true
| n -> mutualTail1IsOdd (x - 1)
RunTest "mutualTail1IsOdd" (mutualTail1IsOdd HugeInt) false
RunTest "mutualTail1IsEven" (mutualTail1IsEven HugeInt) true
// Interesting parameter types (large stack frame)
// Making mutually recurisve to ensure the .tail call
let rec mutualTail2IsOdd a b c d e f g h i x =
match x with
| 1 -> (true, a, b, c)
| n -> mutualTail2IsEven a b c d e f g h i 0L 0L 0L 0L (x - 1)
and mutualTail2IsEven a b c d e f g h i j k l m x =
match x with
| 1 -> (false, a, b, c)
| 0 -> (true, a, b, c)
| n -> mutualTail2IsOdd a b c d e f g h i (x - 1)
// These two tests fail on Mono and probably CoreCLR.
RunTest "mutualTail2IsOdd" (mutualTail2IsOdd 0.0M [| 1 .. 10 |] "str" 0L 0L 0L 0L 0L 0L HugeInt) (false, 0.0M, [| 1 .. 10 |], "str")
RunTest "mutualTail2IsEven" (mutualTail2IsEven 0.0M [| 1 .. 10 |] "str" 0L 0L 0L 0L 0L 0L 0L 0L 0L 0L HugeInt) (true, 0.0M, [| 1 .. 10 |], "str")
// Generic tail call within a type
type TailCallLoop<'T1>() =
let rec f x = if x = 0 then 1 else f (x - 1)
let v5 = f 10000000
member x.Result =
f 10000000 + v5
RunTest "TailCallLoop<int>" ((new TailCallLoop<int>()).Result) 2
RunTest "TailCallLoop<DateTime>" ((new TailCallLoop<DateTime>()).Result) 2
// Generic tail call within a type
type TailCallLoopGenericClassAndMethod<'T1>(resultA: 'T1) =
member this.Method1<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method2 (x - 1, resultB)
member this.Method2<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method1 (x - 1, resultB)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<byte>(10000000, 4uy)) (3uy, 4uy)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<int>(10000000, 4)) (3uy, 4)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<DateTime>(10000000, DateTime.MinValue)) (3uy, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<string>(10000000, "abc")) (3uy, "abc")
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<byte>(10000000, 4uy)) (3, 4uy)
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<int>(10000000, 4)) (3, 4)
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<DateTime>(10000000, DateTime.MinValue)) (3, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<string>(10000000, "abc")) (3, "abc")
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<byte>(10000000, 4uy)) (DateTime.MaxValue, 4uy)
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<int>(10000000, 4)) (DateTime.MaxValue, 4)
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<DateTime>(10000000, DateTime.MinValue)) (DateTime.MaxValue, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<string>(10000000, "abc")) (DateTime.MaxValue, "abc")
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<byte>(10000000, 4uy)) ("qq", 4uy)
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<int>(10000000, 4)) ("qq", 4)
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<DateTime>(10000000, DateTime.MinValue)) ("qq", DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<string>(10000000, "abc")) ("qq", "abc")
// Generic tail call within a type via virtual method in abstract class hierarchy
[<AbstractClass>]
type AbstractTailCallLoopGenericClassAndMethod<'T1>(resultA: 'T1) =
abstract Method1<'T2> : int * 'T2 -> ('T1 * 'T2)
abstract Method2<'T2> : int * 'T2 -> ('T1 * 'T2)
default this.Method2<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method1 (x - 1, resultB)
type TailCallLoopGenericClassAndMethodAbstractClass<'T1>(resultA: 'T1) =
inherit AbstractTailCallLoopGenericClassAndMethod<'T1>(resultA)
override this.Method1<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method2 (x - 1, resultB)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<byte>(10000000, 4uy)) (3uy, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<int>(10000000, 4)) (3uy, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<DateTime>(10000000, DateTime.MinValue)) (3uy, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<string>(10000000, "abc")) (3uy, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<byte>(10000000, 4uy)) (3, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<int>(10000000, 4)) (3, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<DateTime>(10000000, DateTime.MinValue)) (3, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<string>(10000000, "abc")) (3, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<byte>(10000000, 4uy)) (DateTime.MaxValue, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<int>(10000000, 4)) (DateTime.MaxValue, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<DateTime>(10000000, DateTime.MinValue)) (DateTime.MaxValue, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<string>(10000000, "abc")) (DateTime.MaxValue, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<byte>(10000000, 4uy)) ("qq", 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<int>(10000000, 4)) ("qq", 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<DateTime>(10000000, DateTime.MinValue)) ("qq", DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<string>(10000000, "abc")) ("qq", "abc")
// Generic tail call within a type via interface
type InterfaceTailCallLoopGenericInterface<'T1> =
interface
abstract Method1<'T2> : int * 'T2 -> ('T1 * 'T2)
abstract Method2<'T2> : int * 'T2 -> ('T1 * 'T2)
end
type TailCallLoopImplementGenericInterface<'T1>(resultA: 'T1) =
interface InterfaceTailCallLoopGenericInterface<'T1> with
member this.Method1<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else (this :> InterfaceTailCallLoopGenericInterface<'T1>).Method2 (x - 1, resultB)
member this.Method2<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else (this :> InterfaceTailCallLoopGenericInterface<'T1>).Method1 (x - 1, resultB)
let create<'T> result = TailCallLoopImplementGenericInterface<'T>(result) :> InterfaceTailCallLoopGenericInterface<'T>
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>" ((create<byte>(3uy)).Method1<byte>(10000000, 4uy)) (3uy, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>" ((create<byte>(3uy)).Method1<int>(10000000, 4)) (3uy, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>" ((create<byte>(3uy)).Method1<DateTime>(10000000, DateTime.MinValue)) (3uy, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>" ((create<byte>(3uy)).Method1<string>(10000000, "abc")) (3uy, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>" ((create<int>(3)).Method1<byte>(10000000, 4uy)) (3, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>" ((create<int>(3)).Method1<int>(10000000, 4)) (3, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>" ((create<int>(3)).Method1<DateTime>(10000000, DateTime.MinValue)) (3, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>" ((create<int>(3)).Method1<string>(10000000, "abc")) (3, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>" ((create<DateTime>(DateTime.MaxValue)).Method1<byte>(10000000, 4uy)) (DateTime.MaxValue, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>" ((create<DateTime>(DateTime.MaxValue)).Method1<int>(10000000, 4)) (DateTime.MaxValue, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>" ((create<DateTime>(DateTime.MaxValue)).Method1<DateTime>(10000000, DateTime.MinValue)) (DateTime.MaxValue, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>" ((create<DateTime>(DateTime.MaxValue)).Method1<string>(10000000, "abc")) (DateTime.MaxValue, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>" ((create<string>("qq")).Method1<byte>(10000000, 4uy)) ("qq", 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>" ((create<string>("qq")).Method1<int>(10000000, 4)) ("qq", 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>" ((create<string>("qq")).Method1<DateTime>(10000000, DateTime.MinValue)) ("qq", DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>" ((create<string>("qq")).Method1<string>(10000000, "abc")) ("qq", "abc")
// Generic tail call within a type
type TailCallLoopGenericClass<'T1>(resultA: 'T1) =
member this.Method1(x:int) =
if x = 0 then resultA else this.Method2 (x - 1)
member this.Method2(x:int) =
if x = 0 then resultA else this.Method1 (x - 1)
member this.Result =
this.Method1 10000000
RunTest "TailCallLoopGenericClass<int>" ((new TailCallLoopGenericClass<int>(3)).Result) 3
RunTest "TailCallLoopGenericClass<DateTime>" ((new TailCallLoopGenericClass<DateTime>(DateTime.MinValue)).Result) DateTime.MinValue
RunTest "TailCallLoopGenericClass<string>" ((new TailCallLoopGenericClass<string>("abc")).Result) "abc"
// Generic tail call calling sizeof within a type
type StaticTailCallLoop<'T1>() =
static let rec f x = if x = 0 then sizeof<'T1> else f (x - 1)
static let v5 = f HugeInt
static member Result =
f HugeInt + v5
RunTest "StaticTailCallLoop<int>" (StaticTailCallLoop<int>.Result) 8
RunTest "StaticTailCallLoop<DateTime>" (StaticTailCallLoop<DateTime>.Result) 16
// --------------------------------------------------
// Some regression tests for F# related to tail calls
// --------------------------------------------------
do RunTest "Seq.filter-length1" ({ 1 .. 1000000 } |> Seq.filter (fun n -> n <> 1) |> Seq.length) 999999;;
do RunTest "Seq.filter-length2" ({ 1 .. 1000000 } |> Seq.filter (fun n -> n = 1) |> Seq.length) 1;;
do RunTest "Seq.filter-length3" ({ 1 .. 1000000 } |> Seq.filter (fun n -> n % 2 = 0) |> Seq.length) 500000;;
exit 0
*/
.assembly extern mscorlib { }
.assembly 'fsharp-shallowtail' { }
.class private abstract auto ansi sealed '<StartupCode$fsharp>'.$Fsharp
extends [mscorlib]System.Object
{
.method public static void main@() cil managed
{
.entrypoint
ldstr "simpleTail1"
call int32 Fsharp::get_HugeInt()
ldc.i4.0
call int32 Fsharp::simpleTail1(int32, int32)
call int32 Fsharp::get_HugeInt()
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "simpleTail2"
call int32 Fsharp::get_HugeInt()
ldc.i4.0
call int32 Fsharp::simpleTail2(int32, int32)
call int32 Fsharp::get_HugeInt()
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "mutualTail1IsOdd"
call int32 Fsharp::get_HugeInt()
call bool Fsharp::mutualTail1IsOdd(int32)
ldc.i4.0
call void Fsharp::RunTest<bool>(string, !!0, !!0)
ldstr "mutualTail1IsEven"
call int32 Fsharp::get_HugeInt()
call bool Fsharp::mutualTail1IsEven(int32)
ldc.i4.1
call void Fsharp::RunTest<bool>(string, !!0, !!0)
ldstr "TailCallLoop<int>"
newobj instance void class Fsharp/TailCallLoop`1<int32>::.ctor()
callvirt instance int32 class Fsharp/TailCallLoop`1<int32>::get_Result()
ldc.i4.2
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "TailCallLoop<DateTime>"
newobj instance void class Fsharp/TailCallLoop`1<valuetype [mscorlib]System.DateTime>::.ctor()
callvirt instance int32 class Fsharp/TailCallLoop`1<valuetype [mscorlib]System.DateTime>::get_Result()
ldc.i4.2
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<uint8,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<int32,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<byte>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<uint8>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<int>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<int32>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<string>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<string>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<byte>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<uint8>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<int>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<int32>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<DateTime>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldstr "qq"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<string>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<string>(int32, !!0)
ldstr "qq"
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<string,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<uint8,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<int32,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<uint8>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<int32>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<string>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<uint8>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<int32>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldstr "qq"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<string>(int32, !!0)
ldstr "qq"
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<string,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<uint8,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<int32,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<uint8>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<int32>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<string>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<uint8>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<int32>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldstr "qq"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<string>(int32, !!0)
ldstr "qq"
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<string,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClass<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClass`1<int32>::.ctor(!0)
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<int32>::get_Result()
ldc.i4.3
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "TailCallLoopGenericClass<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class Fsharp/TailCallLoopGenericClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<valuetype [mscorlib]System.DateTime>::get_Result()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
call void Fsharp::RunTest<valuetype [mscorlib]System.DateTime>(string, !!0, !!0)
ldstr "TailCallLoopGenericClass<string>"
ldstr "abc"
newobj instance void class Fsharp/TailCallLoopGenericClass`1<string>::.ctor(!0)
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<string>::get_Result()
ldstr "abc"
call void Fsharp::RunTest<string>(string, !!0, !!0)
ldstr "StaticTailCallLoop<int>"
call int32 class Fsharp/StaticTailCallLoop`1<int32>::get_Result()
ldc.i4.8
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "StaticTailCallLoop<DateTime>"
call int32 class Fsharp/StaticTailCallLoop`1<valuetype [mscorlib]System.DateTime>::get_Result()
ldc.i4.s 16
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "Seq.filter-length1"
newobj instance void Fsharp/clo@223::.ctor()
ldc.i4.1
ldc.i4.1
ldc.i4 0xf4240
call class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::RangeInt32(int32, int32, int32)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.SeqModule::Filter<int32>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
call int32 Microsoft.FSharp.Collections.SeqModule::Length<int32>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ldc.i4 0xf423f
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "Seq.filter-length2"
newobj instance void Fsharp/'clo@224-1'::.ctor()
ldc.i4.1
ldc.i4.1
ldc.i4 0xf4240
call class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::RangeInt32(int32, int32, int32)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.SeqModule::Filter<int32>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
call int32 Microsoft.FSharp.Collections.SeqModule::Length<int32>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ldc.i4.1
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "Seq.filter-length3"
newobj instance void Fsharp/'clo@225-2'::.ctor()
ldc.i4.1
ldc.i4.1
ldc.i4 0xf4240
call class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::RangeInt32(int32, int32, int32)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.SeqModule::Filter<int32>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
call int32 Microsoft.FSharp.Collections.SeqModule::Length<int32>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ldc.i4 0x7a120
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldc.i4.0
call !!0 Microsoft.FSharp.Core.Operators::Exit<class Microsoft.FSharp.Core.Unit>(int32)
pop
ret
}
}
.class private abstract auto ansi sealed '<StartupCode$FSharp-Core>'.'$Prim-types'
extends [mscorlib]System.Object
{
.field static assembly initonly string AddressOpNotFirstClassString@656
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly string NoNegateMinValueString@657
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly string InputSequenceEmptyString@659
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly string InputArrayEmptyString@661
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.field static assembly initonly string InputMustBeNonNegativeString@663
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.field static assembly initonly class [mscorlib]System.Exception NaNException@951
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer fsComparerPER@1179
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer fsComparerER@1182
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer fsEqualityComparerNoHashingPER@1654
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer fsEqualityComparerNoHashingER@1661
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER fsEqualityComparerUnlimitedHashingER@1807
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER fsEqualityComparerUnlimitedHashingPER@1810
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IComparer GenericComparer@2195
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer GenericEqualityComparer@2196
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer GenericEqualityERComparer@2197
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool> BoolIEquality@2220
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char> CharIEquality@2221
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string> StringIEquality@2222
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8> SByteIEquality@2223
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16> Int16IEquality@2224
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32> Int32IEquality@2225
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64> Int64IEquality@2226
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int> IntPtrIEquality@2227
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8> ByteIEquality@2228
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16> UInt16IEquality@2229
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32> UInt32IEquality@2230
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64> UInt64IEquality@2231
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint> UIntPtrIEquality@2232
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64> FloatIEquality@2233
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32> Float32IEquality@2234
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal> DecimalIEquality@2235
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<char> CharComparer@2299
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<string> StringComparer@2300
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int8> SByteComparer@2301
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int16> Int16Comparer@2302
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int32> Int32Comparer@2303
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int64> Int64Comparer@2304
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<native int> IntPtrComparer@2305
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint8> ByteComparer@2306
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint16> UInt16Comparer@2307
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint32> UInt32Comparer@2308
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint64> UInt64Comparer@2309
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<native uint> UIntPtrComparer@2310
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<float64> FloatComparer@2311
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<float32> Float32Comparer@2312
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal> DecimalComparer@2313
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method private specialname rtspecialname static void .cctor() cil managed
{
ldstr "addressOpNotFirstClass"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::AddressOpNotFirstClassString@656
ldstr "noNegateMinValue"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::NoNegateMinValueString@657
ldstr "inputSequenceEmpty"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::InputSequenceEmptyString@659
ldstr "arrayWasEmpty"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::InputArrayEmptyString@661
ldstr "inputMustBeNonNegative"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::InputMustBeNonNegativeString@663
newobj instance void [mscorlib]System.Exception::.ctor()
stsfld class [mscorlib]System.Exception '<StartupCode$FSharp-Core>'.'$Prim-types'::NaNException@951
ldc.i4.1
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::.ctor(bool)
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsComparerPER@1179
ldc.i4.0
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::.ctor(bool)
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsComparerER@1182
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/fsEqualityComparerNoHashingPER@1655::.ctor()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingPER@1654
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/fsEqualityComparerNoHashingER@1662::.ctor()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingER@1661
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER::.ctor()
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingER@1807
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER::.ctor()
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingPER@1810
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsComparerER()
stsfld class [mscorlib]System.Collections.IComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericComparer@2195
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingPER()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericEqualityComparer@2196
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingER()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericEqualityERComparer@2197
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/BoolIEquality@2220::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool> '<StartupCode$FSharp-Core>'.'$Prim-types'::BoolIEquality@2220
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/CharIEquality@2221::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char> '<StartupCode$FSharp-Core>'.'$Prim-types'::CharIEquality@2221
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/StringIEquality@2222::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string> '<StartupCode$FSharp-Core>'.'$Prim-types'::StringIEquality@2222
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/SByteIEquality@2223::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8> '<StartupCode$FSharp-Core>'.'$Prim-types'::SByteIEquality@2223
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int16IEquality@2224::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int16IEquality@2224
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int32IEquality@2225::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int32IEquality@2225
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int64IEquality@2226::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int64IEquality@2226
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/IntPtrIEquality@2227::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int> '<StartupCode$FSharp-Core>'.'$Prim-types'::IntPtrIEquality@2227
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/ByteIEquality@2228::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8> '<StartupCode$FSharp-Core>'.'$Prim-types'::ByteIEquality@2228
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt16IEquality@2229::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt16IEquality@2229
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt32IEquality@2230::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt32IEquality@2230
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt64IEquality@2231::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt64IEquality@2231
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UIntPtrIEquality@2232::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint> '<StartupCode$FSharp-Core>'.'$Prim-types'::UIntPtrIEquality@2232
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/FloatIEquality@2233::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64> '<StartupCode$FSharp-Core>'.'$Prim-types'::FloatIEquality@2233
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Float32IEquality@2234::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Float32IEquality@2234
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/DecimalIEquality@2235::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal> '<StartupCode$FSharp-Core>'.'$Prim-types'::DecimalIEquality@2235
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/CharComparer@2299::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<char> '<StartupCode$FSharp-Core>'.'$Prim-types'::CharComparer@2299
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/StringComparer@2300::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<string> '<StartupCode$FSharp-Core>'.'$Prim-types'::StringComparer@2300
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/SByteComparer@2301::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int8> '<StartupCode$FSharp-Core>'.'$Prim-types'::SByteComparer@2301
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int16Comparer@2302::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int16> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int16Comparer@2302
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int32Comparer@2303::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int32Comparer@2303
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int64Comparer@2304::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int64> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int64Comparer@2304
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/IntPtrComparer@2305::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<native int> '<StartupCode$FSharp-Core>'.'$Prim-types'::IntPtrComparer@2305
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/ByteComparer@2306::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint8> '<StartupCode$FSharp-Core>'.'$Prim-types'::ByteComparer@2306
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt16Comparer@2307::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint16> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt16Comparer@2307
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt32Comparer@2308::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint32> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt32Comparer@2308
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt64Comparer@2309::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint64> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt64Comparer@2309
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UIntPtrComparer@2310::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<native uint> '<StartupCode$FSharp-Core>'.'$Prim-types'::UIntPtrComparer@2310
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/FloatComparer@2311::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<float64> '<StartupCode$FSharp-Core>'.'$Prim-types'::FloatComparer@2311
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Float32Comparer@2312::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<float32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Float32Comparer@2312
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/DecimalComparer@2313::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal> '<StartupCode$FSharp-Core>'.'$Prim-types'::DecimalComparer@2313
ret
}
}
.class public abstract auto ansi sealed Fsharp
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class abstract auto ansi serializable nested public AbstractTailCallLoopGenericClassAndMethod`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.AbstractClassAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public hidebysig abstract virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 A_1, !!T2 A_2) cil managed
{
}
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::resultA
ret
}
.method public hidebysig virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method2<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::Method1<!!0>(int32, !!0)
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit clo@223
extends class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>
{
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>::.ctor()
ret
}
.method public strict virtual instance bool Invoke(int32 n) cil managed
{
ldarg.1
ldc.i4.1
ceq
ldc.i4.0
ceq
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit 'clo@224-1'
extends class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>
{
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>::.ctor()
ret
}
.method public strict virtual instance bool Invoke(int32 n) cil managed
{
ldarg.1
ldc.i4.1
ceq
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit 'clo@225-2'
extends class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>
{
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>::.ctor()
ret
}
.method public strict virtual instance bool Invoke(int32 n) cil managed
{
ldarg.1
ldc.i4.2
rem
ldc.i4.0
ceq
ret
}
}
.class interface abstract auto ansi serializable nested public InterfaceTailCallLoopGenericInterface`1<T1>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public hidebysig abstract virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 A_1, !!T2 A_2) cil managed
{
}
.method public hidebysig abstract virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method2<T2>(int32 A_1, !!T2 A_2) cil managed
{
}
}
.class auto ansi serializable nested public StaticTailCallLoop`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field static assembly int32 v5
.field static assembly int32 init@211
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private specialname rtspecialname static void .cctor() cil managed
{
call int32 Fsharp::get_HugeInt()
call int32 class Fsharp/StaticTailCallLoop`1<!T1>::f(int32)
stsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::v5
ldc.i4.2
volatile.
stsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::init@211
ret
}
.method public specialname static int32 get_Result() cil managed
{
call int32 Fsharp::get_HugeInt()
call int32 class Fsharp/StaticTailCallLoop`1<!T1>::f(int32)
volatile.
ldsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::init@211
ldc.i4.2
bge.s IL_0016
br.s IL_0018
IL_0016:
br.s IL_001f
IL_0018:
call void Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::FailStaticInit()
br.s IL_001f
IL_001f:
ldsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::v5
add
ret
}
.method assembly static int32 f(int32 x) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
IL_0000:
ldarg.0
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_000e
IL_0007:
sizeof !T1
ret
IL_000e:
ldarg.0
ldc.i4.1
sub
starg.s x
br.s IL_0000
}
.property int32 Result()
{
.get int32 Fsharp/StaticTailCallLoop`1::get_Result()
}
}
.class auto ansi serializable nested public TailCallLoop`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly int32 v5
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.0
call int32 Fsharp::get_HugeInt()
callvirt instance int32 class Fsharp/TailCallLoop`1<!T1>::f(int32)
stfld int32 class Fsharp/TailCallLoop`1<!T1>::v5
ret
}
.method public hidebysig specialname instance int32 get_Result() cil managed
{
ldarg.0
call int32 Fsharp::get_HugeInt()
callvirt instance int32 class Fsharp/TailCallLoop`1<!T1>::f(int32)
ldarg.0
ldfld int32 class Fsharp/TailCallLoop`1<!T1>::v5
add
ret
}
.method assembly hidebysig instance int32 f(int32 x) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Fsharp/TailCallLoop`1<!T1> V_0, int32 V_1)
IL_0000:
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0009
IL_0007:
ldc.i4.1
ret
IL_0009:
ldarg.0
stloc.0
ldarg.1
ldc.i4.1
sub
stloc.1
ldloc.0
ldloc.1
starg.s x
starg.s 0
br.s IL_0000
}
.property instance int32 Result()
{
.get instance int32 Fsharp/TailCallLoop`1::get_Result()
}
}
.class auto ansi serializable nested public TailCallLoopGenericClass`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::resultA
ret
}
.method public hidebysig instance !T1 Method1(int32 x) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_000e
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::resultA
ret
IL_000e:
ldarg.0
ldarg.1
ldc.i4.1
sub
tail.
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::Method2(int32)
ret
}
.method public hidebysig instance !T1 Method2(int32 x) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_000e
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::resultA
ret
IL_000e:
ldarg.0
ldarg.1
ldc.i4.1
sub
tail.
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::Method1(int32)
ret
}
.method public hidebysig specialname instance !T1 get_Result() cil managed
{
ldarg.0
call int32 Fsharp::get_HugeInt()
tail.
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::Method1(int32)
ret
}
.property instance !T1 Result()
{
.get instance !T1 Fsharp/TailCallLoopGenericClass`1::get_Result()
}
}
.class auto ansi serializable nested public TailCallLoopGenericClassAndMethod`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::resultA
ret
}
.method public hidebysig instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::Method2<!!0>(int32, !!0)
ret
}
.method public hidebysig instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method2<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::Method1<!!0>(int32, !!0)
ret
}
}
.class auto ansi serializable nested public TailCallLoopGenericClassAndMethodAbstractClass`1<T1>
extends class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
ldarg.1
callvirt instance void class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::.ctor(!0)
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<!T1>::resultA
ret
}
.method public hidebysig virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::Method2<!!0>(int32, !!0)
ret
}
}
.class auto ansi serializable nested public TailCallLoopImplementGenericInterface`1<T1>
extends [mscorlib]System.Object
implements class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopImplementGenericInterface`1<!T1>::resultA
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> 'Fsharp-InterfaceTailCallLoopGenericInterface`1-Method1'<T2>(int32 x, !!T2 resultB) cil managed
{
.override method instance class [mscorlib]System.Tuple`2<!0,!!T2> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method1<[1]>(int32, !!T2)
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopImplementGenericInterface`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method2<!!0>(int32, !!0)
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> 'Fsharp-InterfaceTailCallLoopGenericInterface`1-Method2'<T2>(int32 x, !!T2 resultB) cil managed
{
.override method instance class [mscorlib]System.Tuple`2<!0,!!T2> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method2<[1]>(int32, !!T2)
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopImplementGenericInterface`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method1<!!0>(int32, !!0)
ret
}
}
.method public specialname static int32 get_HugeInt() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldc.i4 0x80
ret
}
.method public static int32 simpleTail1(int32 x, int32 acc) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
IL_0000:
ldarg.0
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0009
IL_0007:
ldarg.1
ret
IL_0009:
ldarg.0
ldc.i4.1
sub
ldarg.1
ldc.i4.1
add
starg.s acc
starg.s x
br.s IL_0000
}
.method public static void RunTest<a>(string msg, !!a actual, !!a expected) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (!!a V_0, !!a V_1)
ldarg.1
stloc.0
ldarg.2
stloc.1
ldloc.0
ldloc.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityIntrinsic<!!0>(!!0, !!0)
brfalse.s IL_000f
br.s IL_0011
IL_000f:
br.s IL_0022
IL_0011:
ldarg.0
ldstr ": YES"
call string [mscorlib]System.String::Concat(string, string)
call void [mscorlib]System.Console::WriteLine(string)
ret
IL_0022:
ldstr "\n***** "
ldarg.0
call string [mscorlib]System.String::Concat(string, string)
ldstr ": FAIL\n"
call string [mscorlib]System.String::Concat(string, string)
call void [mscorlib]System.Console::WriteLine(string)
ldc.i4.1
call !!0 Microsoft.FSharp.Core.Operators::Exit<class Microsoft.FSharp.Core.Unit>(int32)
pop
ret
}
.method public static int32 simpleTail2(int32 acc, int32 _arg1) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1)
IL_0000:
ldarg.1
stloc.0
ldloc.0
switch (
IL_000e)
br.s IL_0010
IL_000e:
ldarg.0
ret
IL_0010:
ldloc.0
stloc.1
ldarg.0
ldc.i4.1
add
ldloc.1
ldc.i4.1
sub
starg.s _arg1
starg.s acc
br.s IL_0000
}
.method public static bool mutualTail1IsOdd(int32 x) cil managed
{
.locals init (int32 V_0, int32 V_1)
ldarg.0
stloc.0
ldloc.0
ldc.i4.1
sub
switch (
IL_0010)
br.s IL_0012
IL_0010:
ldc.i4.1
ret
IL_0012:
ldloc.0
stloc.1
ldarg.0
ldc.i4.1
sub
tail.
call bool Fsharp::mutualTail1IsEven(int32)
ret
}
.method public static bool mutualTail1IsEven(int32 x) cil managed
{
.locals init (int32 V_0, int32 V_1)
ldarg.0
stloc.0
ldloc.0
switch (
IL_0012,
IL_0014)
br.s IL_0018
IL_0012:
br.s IL_0016
IL_0014:
ldc.i4.0
ret
IL_0016:
ldc.i4.1
ret
IL_0018:
ldloc.0
stloc.1
ldarg.0
ldc.i4.1
sub
tail.
call bool Fsharp::mutualTail1IsOdd(int32)
ret
}
.method public static class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!T> create<T>(!!T result) cil managed
{
ldarg.0
newobj instance void class Fsharp/TailCallLoopImplementGenericInterface`1<!!T>::.ctor(!0)
ret
}
.property int32 HugeInt()
{
.get int32 Fsharp::get_HugeInt()
}
}
.class public abstract auto ansi sealed Microsoft.FSharp.Core.LanguagePrimitives
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname BoolIEquality@2220
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(bool obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(bool x, bool y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname ByteComparer@2306
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint8 x, uint8 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint8>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname ByteIEquality@2228
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint8 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint8 x, uint8 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname CharComparer@2299
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<char>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(char x, char y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<char>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname CharIEquality@2221
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(char obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char>::GetHashCode(!0)
ldarg.1
ldc.i4.s 16
shl
ldarg.1
or
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(char x, char y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname DecimalComparer@2313
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(valuetype [mscorlib]System.Decimal x, valuetype [mscorlib]System.Decimal y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal>::Compare(!0, !0)
ldarg.1
ldarg.2
call int32 [mscorlib]System.Decimal::Compare(valuetype [mscorlib]System.Decimal, valuetype [mscorlib]System.Decimal)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname DecimalIEquality@2235
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(valuetype [mscorlib]System.Decimal obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal>::GetHashCode(!0)
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashIntrinsic<valuetype [mscorlib]System.Decimal>(!!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(valuetype [mscorlib]System.Decimal x, valuetype [mscorlib]System.Decimal y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal>::Equals(!0, !0)
ldarg.1
ldarg.2
call bool [mscorlib]System.Decimal::op_Equality(valuetype [mscorlib]System.Decimal, valuetype [mscorlib]System.Decimal)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Float32Comparer@2312
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<float32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(float32 x, float32 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<float32>::Compare(!0, !0)
ldarg.1
ldarg.2
clt
brfalse.s IL_0009
ldc.i4.m1
ret
IL_0009:
ldarg.1
ldarg.2
cgt
brfalse.s IL_0011
ldc.i4.1
ret
IL_0011:
ldarg.1
ldarg.2
ceq
brfalse.s IL_0019
ldc.i4.0
ret
IL_0019:
ldarg.2
ldarg.2
ceq
brfalse.s IL_0021
ldc.i4.m1
ret
IL_0021:
ldarg.1
ldarg.1
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Float32IEquality@2234
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(float32 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32>::GetHashCode(!0)
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashIntrinsic<float32>(!!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(float32 x, float32 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname FloatComparer@2311
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<float64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(float64 x, float64 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<float64>::Compare(!0, !0)
ldarg.1
ldarg.2
clt
brfalse.s IL_0009
ldc.i4.m1
ret
IL_0009:
ldarg.1
ldarg.2
cgt
brfalse.s IL_0011
ldc.i4.1
ret
IL_0011:
ldarg.1
ldarg.2
ceq
brfalse.s IL_0019
ldc.i4.0
ret
IL_0019:
ldarg.2
ldarg.2
ceq
brfalse.s IL_0021
ldc.i4.m1
ret
IL_0021:
ldarg.1
ldarg.1
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname FloatIEquality@2233
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(float64 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64>::GetHashCode(!0)
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashIntrinsic<float64>(!!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(float64 x, float64 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class abstract auto ansi sealed nested public HashCompare
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname fsEqualityComparerNoHashingER@1662
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.1
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object obj) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldstr "notUsedForHashing"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname fsEqualityComparerNoHashingPER@1655
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.0
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object obj) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldstr "notUsedForHashing"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
}
.class auto ansi serializable nested assembly GenericComparer
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly bool throwsOnPER
.method public specialname rtspecialname instance void .ctor(bool throwsOnPER) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::throwsOnPER
ret
}
.method private hidebysig newslot virtual instance int32 'System-Collections-IComparer-Compare'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IComparer::Compare
ldarg.0
ldarg.1
ldarg.2
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
ret
}
}
.class auto ansi serializable nested assembly UnlimitedHasherER
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.1
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object x) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldarg.0
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ret
}
}
.class auto ansi serializable nested assembly UnlimitedHasherPER
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.0
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object x) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldarg.0
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ret
}
}
.method assembly specialname static class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer get_fsComparerER() cil managed
{
ldsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsComparerER@1182
ret
}
.method assembly specialname static class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER get_fsEqualityComparerUnlimitedHashingPER() cil managed
{
ldsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingPER@1810
ret
}
.method assembly specialname static class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER get_fsEqualityComparerUnlimitedHashingER() cil managed
{
ldsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingER@1807
ret
}
.method public static bool GenericEqualityIntrinsic<T>(!!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
ldc.i4.0
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingPER()
ldarg.0
box !!T
ldarg.1
box !!T
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method public static int32 GenericHashIntrinsic<T>(!!T input) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingPER()
ldarg.0
box !!T
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ret
}
.method assembly static !!a FailGenericComparison<a>(object obj) cil managed
{
.locals init (string V_0)
ldarg.0
callvirt instance class [mscorlib]System.Type [mscorlib]System.Object::GetType()
callvirt instance string [mscorlib]System.Object::ToString()
stloc.0
ldstr "genericCompareFail1"
ldloc.0
call string [mscorlib]System.String::Format(string, object)
newobj instance void [mscorlib]System.ArgumentException::.ctor(string)
throw
}
.method assembly specialname static class [mscorlib]System.Exception get_NaNException() cil managed
{
ldsfld class [mscorlib]System.Exception '<StartupCode$FSharp-Core>'.'$Prim-types'::NaNException@951
ret
}
.method assembly static int32 GenericCompare$cont@965(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, object yobj, object xobj, class [mscorlib]System.Array arr1, class Microsoft.FSharp.Core.Unit unitVar) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (object[] V_0, object[] V_1, object[] V_2, object[] V_3, uint8[] V_4, uint8[] V_5, uint8[] V_6, uint8[] V_7, class [mscorlib]System.Array V_8, class [mscorlib]System.Array V_9)
ldarg.3
isinst object[]
stloc.0
ldloc.0
brfalse IL_0082
ldarg.1
isinst object[]
stloc.1
ldloc.1
brfalse.s IL_0025
ldloc.1
stloc.2
ldloc.0
stloc.3
ldarg.0
ldloc.3
ldloc.2
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonObjArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object[], object[])
ret
IL_0025:
ldarg.3
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse.s IL_0070
ldarg.1
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_004f
ldloc.s V_5
stloc.s V_6
ldloc.s V_4
stloc.s V_7
IL_0045:
ldloc.s V_7
ldloc.s V_6
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonByteArray(uint8[], uint8[])
ret
IL_004f:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
IL_005f:
ldarg.0
ldarg.3
ldloc.s V_9
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonArbArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array)
ret
IL_0069:
ldarg.2
call !!0 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::FailGenericComparison<int32>(object)
ret
IL_0070:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
br.s IL_005f
IL_0082:
ldarg.3
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse.s IL_00b6
ldarg.1
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_00a4
ldloc.s V_5
ldloc.s V_4
stloc.s V_7
stloc.s V_6
br.s IL_0045
IL_00a4:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
br.s IL_005f
IL_00b6:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
br IL_005f
}
.method assembly static int32 GenericComparisonObjArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, object[] x, object[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4, int32 V_5)
ldarg.1
ldlen
conv.i4
stloc.0
ldarg.2
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
bge.s IL_0011
ldc.i4.m1
br.s IL_0016
IL_0011:
ldloc.0
ldloc.1
cgt
IL_0016:
stloc.2
ldloc.2
brfalse.s IL_001c
ldloc.2
ret
IL_001c:
ldc.i4.0
stloc.3
ldc.i4.0
stloc.s V_4
IL_0021:
ldloc.3
ldloc.0
bge.s IL_004f
ldarg.0
ldarg.1
ldloc.3
ldelem [mscorlib]System.Object
ldarg.2
ldloc.3
ldelem [mscorlib]System.Object
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0048
ldloc.s V_5
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0021
IL_0048:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0021
IL_004f:
ldloc.s V_4
ret
}
.method assembly static int32 GenericComparisonByteArray(uint8[] x, uint8[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4, int32 V_5, uint8 V_6, uint8 V_7)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
bge.s IL_0011
ldc.i4.m1
br.s IL_0016
IL_0011:
ldloc.0
ldloc.1
cgt
IL_0016:
stloc.2
ldloc.2
brfalse.s IL_001c
ldloc.2
ret
IL_001c:
ldc.i4.0
stloc.3
ldc.i4.0
stloc.s V_4
IL_0021:
ldloc.3
ldloc.0
bge.s IL_005e
ldarg.0
ldloc.3
ldelem [mscorlib]System.Byte
stloc.s V_6
ldarg.1
ldloc.3
ldelem [mscorlib]System.Byte
stloc.s V_7
ldloc.s V_6
ldloc.s V_7
bge.s IL_0041
ldc.i4.m1
br.s IL_0048
IL_0041:
ldloc.s V_6
ldloc.s V_7
cgt
IL_0048:
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0057
ldloc.s V_5
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0021
IL_0057:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0021
IL_005e:
ldloc.s V_4
ret
}
.method assembly static int32 GenericComparisonArbArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.maxstack 10
.locals init (int64 V_0, int64 V_1, int32 V_2, int64 V_3, int64 V_4, int32 V_5, class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer V_6, class [mscorlib]System.Array V_7, class [mscorlib]System.Array V_8, int64 V_9, int64 V_10, int64 V_11, int64 V_12, int32 V_13, int32 V_14, int64 V_15, int64 V_16, int64 V_17, int64 V_18, int64 V_19, int64 V_20, int64[] V_21, class [mscorlib]System.Array V_22, class [mscorlib]System.Array V_23, int32 V_24, int64[] V_25)
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
bne.un.s IL_0016
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
ceq
br.s IL_0018
IL_0016:
ldc.i4.0
IL_0018:
brfalse IL_0092
ldarg.1
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.0
ldarg.2
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.1
ldloc.0
ldloc.1
bge.s IL_0033
ldc.i4.m1
br.s IL_0038
IL_0033:
ldloc.0
ldloc.1
cgt
IL_0038:
stloc.2
ldloc.2
brfalse.s IL_003e
ldloc.2
ret
IL_003e:
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.3
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_4
ldloc.3
ldloc.s V_4
bge.s IL_005a
ldc.i4.m1
br.s IL_0060
IL_005a:
ldloc.3
ldloc.s V_4
cgt
IL_0060:
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0069
ldloc.s V_5
ret
IL_0069:
ldarg.0
stloc.s V_6
ldarg.1
stloc.s V_7
ldarg.2
stloc.s V_8
ldloc.0
stloc.s V_9
ldloc.3
stloc.s V_10
ldloc.s V_4
stloc.s V_11
ldarg.0
ldarg.1
ldarg.2
ldloc.0
ldloc.3
ldloc.s V_4
ldc.i8 0x0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::check@1081(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64)
ret
IL_0092:
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
bne.un.s IL_00a7
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
ceq
br.s IL_00a9
IL_00a7:
ldc.i4.0
IL_00a9:
brfalse IL_0191
ldarg.1
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.0
ldarg.2
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.1
ldloc.0
ldloc.1
bge.s IL_00c6
ldc.i4.m1
br.s IL_00cb
IL_00c6:
ldloc.0
ldloc.1
cgt
IL_00cb:
stloc.2
ldloc.2
brfalse.s IL_00d1
ldloc.2
ret
IL_00d1:
ldarg.1
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.3
ldarg.2
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.s V_4
ldloc.3
ldloc.s V_4
bge.s IL_00eb
ldc.i4.m1
br.s IL_00f1
IL_00eb:
ldloc.3
ldloc.s V_4
cgt
IL_00f1:
stloc.s V_5
ldloc.s V_5
brfalse.s IL_00fa
ldloc.s V_5
ret
IL_00fa:
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_9
ldarg.1
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_10
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_11
ldarg.2
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_12
ldloc.s V_9
ldloc.s V_11
bge.s IL_012c
ldc.i4.m1
br.s IL_0133
IL_012c:
ldloc.s V_9
ldloc.s V_11
cgt
IL_0133:
stloc.s V_13
ldloc.s V_13
brfalse.s IL_013c
ldloc.s V_13
ret
IL_013c:
ldloc.s V_10
ldloc.s V_12
bge.s IL_0146
ldc.i4.m1
br.s IL_014d
IL_0146:
ldloc.s V_10
ldloc.s V_12
cgt
IL_014d:
stloc.s V_14
ldloc.s V_14
brfalse.s IL_0156
ldloc.s V_14
ret
IL_0156:
ldarg.0
stloc.s V_6
ldarg.1
stloc.s V_7
ldarg.2
stloc.s V_8
ldloc.0
stloc.s V_15
ldloc.3
stloc.s V_16
ldloc.s V_9
stloc.s V_17
ldloc.s V_10
stloc.s V_18
ldloc.s V_11
stloc.s V_19
ldloc.s V_12
stloc.s V_20
ldarg.0
ldarg.1
ldarg.2
ldloc.0
ldloc.3
ldloc.s V_9
ldloc.s V_10
ldloc.s V_11
ldloc.s V_12
ldc.i8 0x0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::check0@1103(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
ret
IL_0191:
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_5
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_13
ldloc.s V_5
ldloc.s V_13
bge.s IL_01ab
ldc.i4.m1
br.s IL_01b2
IL_01ab:
ldloc.s V_5
ldloc.s V_13
cgt
IL_01b2:
stloc.2
ldloc.2
brfalse.s IL_01b8
ldloc.2
ret
IL_01b8:
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_5
ldarg.1
stloc.s V_7
ldarg.2
stloc.s V_8
ldloc.s V_5
stloc.s V_13
ldarg.1
ldarg.2
ldloc.s V_5
ldc.i4.0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::precheck@1118(class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int32)
stloc.s V_14
ldloc.s V_14
brfalse.s IL_01dd
ldloc.s V_14
ret
IL_01dd:
ldloc.s V_5
newarr [mscorlib]System.Int64
stloc.s V_21
ldarg.0
stloc.s V_6
ldarg.1
stloc.s V_22
ldarg.2
stloc.s V_23
ldloc.s V_5
stloc.s V_24
ldloc.s V_21
stloc.s V_25
ldarg.0
ldarg.1
ldarg.2
ldloc.s V_5
ldloc.s V_21
ldc.i4.0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1137-1'(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
ret
}
.method assembly static int32 GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, object xobj, object yobj) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 02 00 00 00 00 00 )
.locals init (string V_0, string V_1, string V_2, string V_3, class [mscorlib]System.Array V_4, class [mscorlib]System.Array V_5, class [mscorlib]System.Collections.IStructuralComparable V_6, class [mscorlib]System.Collections.IStructuralComparable V_7, class [mscorlib]System.IComparable V_8, class [mscorlib]System.IComparable V_9, float32 V_10, float32 V_11, float64 V_12, float64 V_13, class [mscorlib]System.Collections.IStructuralComparable V_14, int32 V_15, class [mscorlib]System.IComparable V_16, native uint V_17, native uint V_18, native int V_19, native int V_20)
ldarg.1
brfalse IL_040f
ldarg.2
brfalse IL_040d
ldarg.1
isinst [mscorlib]System.String
stloc.0
ldloc.0
brfalse IL_02a5
ldarg.2
isinst [mscorlib]System.String
stloc.1
ldloc.1
brfalse.s IL_0030
ldloc.1
stloc.2
ldloc.0
stloc.3
ldloc.3
ldloc.2
call int32 [mscorlib]System.String::CompareOrdinal(string, string)
ret
IL_0030:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_004e
ldloc.s V_4
stloc.s V_5
IL_0040:
ldarg.0
ldarg.2
ldarg.1
ldloc.s V_5
ldnull
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare$cont@965(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object, class [mscorlib]System.Array, class Microsoft.FSharp.Core.Unit)
ret
IL_004e:
ldarg.1
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_006a
ldloc.s V_6
stloc.s V_7
IL_005e:
ldloc.s V_7
ldarg.2
ldarg.0
tail.
callvirt instance int32 [mscorlib]System.Collections.IStructuralComparable::CompareTo(object, class [mscorlib]System.Collections.IComparer)
ret
IL_006a:
ldarg.1
isinst [mscorlib]System.IComparable
stloc.s V_8
ldloc.s V_8
brfalse IL_0142
ldloc.s V_8
stloc.s V_9
IL_007d:
ldarg.0
ldfld bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::throwsOnPER
brfalse IL_0136
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_00d8
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_009e
IL_0098:
br IL_0137
IL_009e:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00a8
br.s IL_0098
IL_00a8:
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_10
ldarg.1
unbox.any [mscorlib]System.Single
stloc.s V_11
IL_00b8:
ldloc.s V_11
call bool [mscorlib]System.Single::IsNaN(float32)
brfalse.s IL_00c5
ldc.i4.1
br.s IL_00cd
IL_00c5:
ldloc.s V_10
call bool [mscorlib]System.Single::IsNaN(float32)
IL_00cd:
brfalse.s IL_00d5
call class [mscorlib]System.Exception Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_NaNException()
throw
IL_00d5:
br.s IL_0137
IL_00d8:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_0106
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00ea
br.s IL_0098
IL_00ea:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00f4
br.s IL_0098
IL_00f4:
ldarg.2
unbox.any [mscorlib]System.Single
ldarg.1
unbox.any [mscorlib]System.Single
stloc.s V_11
stloc.s V_10
br.s IL_00b8
IL_0106:
ldarg.2
unbox.any [mscorlib]System.Double
stloc.s V_12
ldarg.1
unbox.any [mscorlib]System.Double
stloc.s V_13
ldloc.s V_13
call bool [mscorlib]System.Double::IsNaN(float64)
brfalse.s IL_0123
ldc.i4.1
br.s IL_012b
IL_0123:
ldloc.s V_12
call bool [mscorlib]System.Double::IsNaN(float64)
IL_012b:
brfalse.s IL_0133
call class [mscorlib]System.Exception Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_NaNException()
throw
IL_0133:
br.s IL_0137
IL_0136:
IL_0137:
ldloc.s V_9
ldarg.2
tail.
callvirt instance int32 [mscorlib]System.IComparable::CompareTo(object)
ret
IL_0142:
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_01fc
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_01b1
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0180
ldloc.s V_7
stloc.s V_14
IL_0165:
ldloc.s V_14
ldarg.1
ldarg.0
callvirt instance int32 [mscorlib]System.Collections.IStructuralComparable::CompareTo(object, class [mscorlib]System.Collections.IComparer)
stloc.s V_15
ldloc.s V_15
ldc.i4.0
bge.s IL_0177
ldc.i4.1
ret
IL_0177:
ldloc.s V_15
ldc.i4.0
ble.s IL_017e
ldc.i4.m1
ret
IL_017e:
ldc.i4.0
ret
IL_0180:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse.s IL_01aa
ldloc.s V_9
stloc.s V_16
IL_0190:
ldloc.s V_16
ldarg.1
callvirt instance int32 [mscorlib]System.IComparable::CompareTo(object)
stloc.s V_15
ldloc.s V_15
ldc.i4.0
bge.s IL_01a1
ldc.i4.1
ret
IL_01a1:
ldloc.s V_15
ldc.i4.0
ble.s IL_01a8
ldc.i4.m1
ret
IL_01a8:
ldc.i4.0
ret
IL_01aa:
ldarg.1
call !!0 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::FailGenericComparison<int32>(object)
ret
IL_01b1:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_01dd
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_01cb
ldloc.s V_7
stloc.s V_14
br.s IL_0165
IL_01cb:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse.s IL_01aa
ldloc.s V_9
stloc.s V_16
br.s IL_0190
IL_01dd:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
stloc.s V_17
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
IL_01ed:
ldloc.s V_18
ldloc.s V_17
bge.un.s IL_01f5
ldc.i4.m1
ret
IL_01f5:
ldloc.s V_18
ldloc.s V_17
cgt.un
ret
IL_01fc:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_0286
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_023c
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0224
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0224:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_023c:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_0271
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0259
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0259:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_0271:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
stloc.s V_17
br IL_01ed
IL_0286:
ldarg.2
unbox.any [mscorlib]System.IntPtr
stloc.s V_19
ldarg.1
unbox.any [mscorlib]System.IntPtr
stloc.s V_20
IL_0296:
ldloc.s V_20
ldloc.s V_19
bge.s IL_029e
ldc.i4.m1
ret
IL_029e:
ldloc.s V_20
ldloc.s V_19
cgt
ret
IL_02a5:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_02ba
ldloc.s V_4
stloc.s V_5
br IL_0040
IL_02ba:
ldarg.1
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_02cf
ldloc.s V_6
stloc.s V_7
br IL_005e
IL_02cf:
ldarg.1
isinst [mscorlib]System.IComparable
stloc.s V_8
ldloc.s V_8
brfalse.s IL_02e4
ldloc.s V_8
stloc.s V_9
br IL_007d
IL_02e4:
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_036e
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_0324
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_030c
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_030c:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_0324:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_0359
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0341
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0341:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_0359:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
stloc.s V_17
br IL_01ed
IL_036e:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_03f8
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_03ae
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0396
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0396:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_03ae:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_03e3
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_03cb
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_03cb:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_03e3:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
stloc.s V_17
br IL_01ed
IL_03f8:
ldarg.2
unbox.any [mscorlib]System.IntPtr
ldarg.1
unbox.any [mscorlib]System.IntPtr
stloc.s V_20
stloc.s V_19
br IL_0296
IL_040d:
ldc.i4.1
ret
IL_040f:
ldarg.2
brfalse.s IL_0414
ldc.i4.m1
ret
IL_0414:
ldc.i4.0
ret
}
.method assembly static int32 check@1081(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx, int64 basex, int64 basey, int64 i) cil managed
{
.locals init (int32 V_0)
IL_0000:
ldarg.s i
ldarg.3
blt.s IL_0008
ldc.i4.0
ret
IL_0008:
ldarg.0
ldarg.1
ldarg.s i
ldarg.s basex
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
ldarg.2
ldarg.s i
ldarg.s basey
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
stloc.0
ldloc.0
brfalse.s IL_002a
ldloc.0
ret
IL_002a:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s basex
ldarg.s basey
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey
starg.s basex
starg.s lenx
starg.s y
starg.s x
starg.s comp
br.s IL_0000
}
.method assembly static int32 check1@1104(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i, int64 j) cil managed
{
.maxstack 11
.locals init (int32 V_0)
IL_0000:
ldarg.s j
ldarg.3
blt.s IL_0008
ldc.i4.0
ret
IL_0008:
ldarg.0
ldarg.1
ldarg.s i
ldarg.s basex0
add
ldarg.s j
ldarg.s basex1
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
ldarg.2
ldarg.s i
ldarg.s basey0
add
ldarg.s j
ldarg.s basey1
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
stloc.0
ldloc.0
brfalse.s IL_0034
ldloc.0
ret
IL_0034:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldarg.s j
ldc.i8 0x1
add
starg.s j
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s y
starg.s x
starg.s comp
br.s IL_0000
}
.method assembly static int32 check0@1103(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx0, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i) cil managed
{
.maxstack 11
.locals init (class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer V_0, class [mscorlib]System.Array V_1, class [mscorlib]System.Array V_2, int64 V_3, int64 V_4, int64 V_5, int64 V_6, int64 V_7, int64 V_8, int32 V_9)
IL_0000:
ldarg.0
stloc.0
ldarg.1
stloc.1
ldarg.2
stloc.2
ldarg.s lenx1
stloc.3
ldarg.s basex0
stloc.s V_4
ldarg.s basex1
stloc.s V_5
ldarg.s basey0
stloc.s V_6
ldarg.s basey1
stloc.s V_7
ldarg.s i
stloc.s V_8
ldarg.s i
ldarg.3
blt.s IL_0025
ldc.i4.0
ret
IL_0025:
ldarg.0
ldarg.1
ldarg.2
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::check1@1104(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
stloc.s V_9
ldloc.s V_9
brfalse.s IL_004b
ldloc.s V_9
ret
IL_004b:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s lenx0
starg.s y
starg.s x
starg.s comp
br IL_0000
}
.method assembly static int32 precheck@1118(class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int32 k) cil managed
{
.locals init (int32 V_0, int64 V_1, int64 V_2, int32 V_3, int32 V_4, int32 V_5)
IL_0000:
ldarg.3
ldarg.2
blt.s IL_0007
ldc.i4.0
ret
IL_0007:
ldarg.0
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.1
ldarg.1
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.2
ldloc.1
ldloc.2
bge.s IL_001f
ldc.i4.m1
br.s IL_0024
IL_001f:
ldloc.1
ldloc.2
cgt
IL_0024:
stloc.0
ldloc.0
brfalse.s IL_002a
ldloc.0
ret
IL_002a:
ldarg.0
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.s V_4
ldarg.1
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.s V_5
ldloc.s V_4
ldloc.s V_5
bge.s IL_0046
ldc.i4.m1
br.s IL_004d
IL_0046:
ldloc.s V_4
ldloc.s V_5
cgt
IL_004d:
stloc.3
ldloc.3
brfalse.s IL_0053
ldloc.3
ret
IL_0053:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldc.i4.1
add
starg.s k
starg.s ndims
starg.s y
starg.s x
br.s IL_0000
}
.method assembly static int32 checkN@1128(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k, int64 baseIdx, int64 i, int64 lim) cil managed
{
.maxstack 9
.locals init (int32 V_0)
IL_0000:
ldarg.s i
ldarg.s lim
blt.s IL_0009
ldc.i4.0
ret
IL_0009:
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
add
stelem [mscorlib]System.Int64
ldarg.s k
ldarg.3
ldc.i4.1
sub
bne.un.s IL_0037
ldarg.0
ldarg.1
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
ldarg.2
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
br.s IL_0047
IL_0037:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s idxs
ldarg.s k
ldc.i4.1
add
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1137-1'(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
IL_0047:
stloc.0
ldloc.0
brfalse.s IL_004d
ldloc.0
ret
IL_004d:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
ldc.i8 0x1
add
ldarg.s lim
starg.s lim
starg.s i
starg.s baseIdx
starg.s k
starg.s idxs
starg.s ndims
starg.s y
starg.s x
starg.s comp
br IL_0000
}
.method assembly static int32 'check@1137-1'(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k) cil managed
{
.maxstack 10
.locals init (int32 V_0)
ldarg.s k
ldarg.3
blt.s IL_0008
ldc.i4.0
ret
IL_0008:
ldarg.1
ldarg.s k
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.0
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s idxs
ldarg.s k
ldloc.0
conv.i8
ldc.i8 0x0
ldarg.1
ldarg.s k
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::checkN@1128(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32, int64, int64, int64)
ret
}
.method public static int32 GenericComparisonWithComparerIntrinsic<T>(class [mscorlib]System.Collections.IComparer comp, !!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
ldarg.0
ldarg.1
box !!T
ldarg.2
box !!T
tail.
callvirt instance int32 [mscorlib]System.Collections.IComparer::Compare(object, object)
ret
}
.method assembly static bool GenericEqualityByteArray(uint8[] x, uint8[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Byte
ldarg.1
ldloc.3
ldelem [mscorlib]System.Byte
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityInt32Array(int32[] x, int32[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Int32
ldarg.1
ldloc.3
ldelem [mscorlib]System.Int32
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool f32eq@1421(bool er, float32 x, float32 y) cil managed
{
ldarg.0
brfalse.s IL_000e
ldarg.1
ldarg.1
ceq
ldc.i4.0
ceq
br.s IL_0010
IL_000e:
ldc.i4.0
IL_0010:
brfalse.s IL_001c
ldarg.2
ldarg.2
ceq
ldc.i4.0
ceq
br.s IL_001e
IL_001c:
ldc.i4.0
IL_001e:
brfalse.s IL_0022
ldc.i4.1
ret
IL_0022:
ldarg.1
ldarg.2
ceq
ret
}
.method assembly static bool GenericEqualitySingleArray(bool er, float32[] x, float32[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.1
ldlen
conv.i4
stloc.0
ldarg.2
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0045
ldarg.0
ldarg.1
ldloc.3
ldelem [mscorlib]System.Single
ldarg.2
ldloc.3
ldelem [mscorlib]System.Single
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::f32eq@1421(bool, float32, float32)
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003e
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003e:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0045:
ldloc.s V_4
ret
}
.method assembly static bool feq@1438(bool er, float64 x, float64 y) cil managed
{
ldarg.0
brfalse.s IL_000e
ldarg.1
ldarg.1
ceq
ldc.i4.0
ceq
br.s IL_0010
IL_000e:
ldc.i4.0
IL_0010:
brfalse.s IL_001c
ldarg.2
ldarg.2
ceq
ldc.i4.0
ceq
br.s IL_001e
IL_001c:
ldc.i4.0
IL_001e:
brfalse.s IL_0022
ldc.i4.1
ret
IL_0022:
ldarg.1
ldarg.2
ceq
ret
}
.method assembly static bool GenericEqualityDoubleArray(bool er, float64[] x, float64[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.1
ldlen
conv.i4
stloc.0
ldarg.2
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0045
ldarg.0
ldarg.1
ldloc.3
ldelem [mscorlib]System.Double
ldarg.2
ldloc.3
ldelem [mscorlib]System.Double
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::feq@1438(bool, float64, float64)
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003e
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003e:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0045:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityCharArray(char[] x, char[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Char
ldarg.1
ldloc.3
ldelem [mscorlib]System.Char
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityInt64Array(int64[] x, int64[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Int64
ldarg.1
ldloc.3
ldelem [mscorlib]System.Int64
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityObj$cont@1498(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, object yobj, object xobj, class [mscorlib]System.Array arr1, class Microsoft.FSharp.Core.Unit unitVar) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (object[] V_0, object[] V_1, object[] V_2, object[] V_3, uint8[] V_4, uint8[] V_5, uint8[] V_6, uint8[] V_7, int32[] V_8, int32[] V_9, int32[] V_10, int32[] V_11, int64[] V_12, int64[] V_13, int64[] V_14, int64[] V_15, char[] V_16, char[] V_17, char[] V_18, char[] V_19, float32[] V_20, float32[] V_21, float32[] V_22, float32[] V_23, float64[] V_24, float64[] V_25, float64[] V_26, float64[] V_27, class [mscorlib]System.Array V_28, class [mscorlib]System.Array V_29)
ldarg.s arr1
isinst object[]
stloc.0
ldloc.0
brfalse IL_0fcd
ldarg.2
isinst object[]
stloc.1
ldloc.1
brfalse.s IL_0027
ldloc.1
stloc.2
ldloc.0
stloc.3
ldarg.0
ldarg.1
ldloc.3
ldloc.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObjArray(bool, class [mscorlib]System.Collections.IEqualityComparer, object[], object[])
ret
IL_0027:
ldarg.s arr1
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse IL_081e
ldarg.2
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0055
ldloc.s V_5
stloc.s V_6
ldloc.s V_4
stloc.s V_7
IL_004b:
ldloc.s V_7
ldloc.s V_6
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityByteArray(uint8[], uint8[])
ret
IL_0055:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_045b
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_0083
ldloc.s V_9
stloc.s V_10
ldloc.s V_8
stloc.s V_11
IL_0079:
ldloc.s V_11
ldloc.s V_10
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityInt32Array(int32[], int32[])
ret
IL_0083:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_028e
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_00b1
ldloc.s V_13
stloc.s V_14
ldloc.s V_12
stloc.s V_15
IL_00a7:
ldloc.s V_15
ldloc.s V_14
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityInt64Array(int64[], int64[])
ret
IL_00b1:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_01bc
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_00df
ldloc.s V_17
stloc.s V_18
ldloc.s V_16
stloc.s V_19
IL_00d5:
ldloc.s V_19
ldloc.s V_18
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityCharArray(char[], char[])
ret
IL_00df:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse IL_0172
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_010e
ldloc.s V_21
stloc.s V_22
ldloc.s V_20
stloc.s V_23
IL_0103:
ldarg.0
ldloc.s V_23
ldloc.s V_22
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualitySingleArray(bool, float32[], float32[])
ret
IL_010e:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0160
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_013a
ldloc.s V_25
stloc.s V_26
ldloc.s V_24
stloc.s V_27
IL_012f:
ldarg.0
ldloc.s V_27
ldloc.s V_26
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityDoubleArray(bool, float64[], float64[])
ret
IL_013a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
IL_014a:
ldarg.0
ldarg.1
ldarg.s arr1
ldloc.s V_29
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityArbArray(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array)
ret
IL_0156:
ldarg.3
ldarg.2
tail.
callvirt instance bool [mscorlib]System.Object::Equals(object)
ret
IL_0160:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
br.s IL_014a
IL_0172:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_01a7
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0195
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br.s IL_012f
IL_0195:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
br.s IL_014a
IL_01a7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_01bc:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0238
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_01e2
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_01e2:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0220
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0208
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0208:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0220:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0238:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0276
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_025e
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_025e:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0276:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_028e:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0389
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_02b7
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_02b7:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0333
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_02dd
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_02dd:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_031b
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0303
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0303:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_031b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0333:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0371
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0359
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0359:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0371:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0389:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0405
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_03af
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_03af:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_03ed
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_03d5
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_03d5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_03ed:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0405:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0443
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_042b
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_042b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0443:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_045b:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_0651
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_0484
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_0484:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_057f
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_04ad
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_04ad:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0529
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_04d3
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_04d3:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0511
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_04f9
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_04f9:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0511:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0529:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0567
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_054f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_054f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0567:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_057f:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_05fb
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_05a5
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_05a5:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_05e3
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_05cb
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_05cb:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_05e3:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_05fb:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0639
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0621
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0621:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0639:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0651:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_074c
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_067a
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_067a:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_06f6
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_06a0
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_06a0:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_06de
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_06c6
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_06c6:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_06de:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_06f6:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0734
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_071c
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_071c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0734:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_074c:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_07c8
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0772
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0772:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_07b0
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0798
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0798:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_07b0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_07c8:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0806
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_07ee
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_07ee:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0806:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_081e:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_0c0a
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_0847
ldloc.s V_9
ldloc.s V_8
stloc.s V_11
stloc.s V_10
br IL_0079
IL_0847:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_0a3d
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_0870
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_0870:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_096b
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0899
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0899:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0915
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_08bf
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_08bf:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_08fd
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_08e5
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_08e5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_08fd:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0915:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0953
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_093b
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_093b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0953:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_096b:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_09e7
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0991
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0991:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_09cf
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_09b7
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_09b7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_09cf:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_09e7:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0a25
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0a0d
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0a0d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0a25:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0a3d:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0b38
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0a66
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0a66:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0ae2
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0a8c
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0a8c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0aca
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0ab2
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0ab2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0aca:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0ae2:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0b20
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0b08
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0b08:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0b20:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0b38:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0bb4
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0b5e
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0b5e:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0b9c
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0b84
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0b84:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0b9c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0bb4:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0bf2
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0bda
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0bda:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0bf2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0c0a:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_0e00
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_0c33
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_0c33:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0d2e
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0c5c
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0c5c:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0cd8
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0c82
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0c82:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0cc0
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0ca8
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0ca8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0cc0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0cd8:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0d16
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0cfe
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0cfe:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0d16:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0d2e:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0daa
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0d54
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0d54:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0d92
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0d7a
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0d7a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0d92:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0daa:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0de8
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0dd0
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0dd0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0de8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0e00:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0efb
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0e29
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0e29:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0ea5
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0e4f
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0e4f:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0e8d
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0e75
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0e75:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0e8d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0ea5:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0ee3
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0ecb
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0ecb:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0ee3:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0efb:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0f77
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0f21
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0f21:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0f5f
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0f47
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0f47:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0f5f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0f77:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0fb5
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0f9d
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0f9d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0fb5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0fcd:
ldarg.s arr1
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse IL_17a5
ldarg.2
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0ff6
ldloc.s V_5
ldloc.s V_4
stloc.s V_7
stloc.s V_6
br IL_004b
IL_0ff6:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_13e2
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_101f
ldloc.s V_9
ldloc.s V_8
stloc.s V_11
stloc.s V_10
br IL_0079
IL_101f:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_1215
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_1048
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_1048:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1143
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1071
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1071:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_10ed
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1097
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1097:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_10d5
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_10bd
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_10bd:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_10d5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_10ed:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_112b
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1113
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1113:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_112b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1143:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_11bf
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1169
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1169:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_11a7
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_118f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_118f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_11a7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_11bf:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_11fd
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_11e5
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_11e5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_11fd:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1215:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1310
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_123e
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_123e:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_12ba
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1264
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1264:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_12a2
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_128a
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_128a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_12a2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_12ba:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_12f8
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_12e0
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_12e0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_12f8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1310:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_138c
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1336
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1336:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1374
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_135c
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_135c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1374:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_138c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_13ca
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_13b2
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_13b2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_13ca:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_13e2:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_15d8
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_140b
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_140b:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1506
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1434
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1434:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_14b0
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_145a
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_145a:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1498
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1480
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1480:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1498:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_14b0:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_14ee
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_14d6
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_14d6:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_14ee:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1506:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1582
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_152c
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_152c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_156a
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1552
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1552:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_156a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1582:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_15c0
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_15a8
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_15a8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_15c0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_15d8:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_16d3
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1601
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1601:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_167d
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1627
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1627:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1665
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_164d
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_164d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1665:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_167d:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_16bb
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_16a3
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_16a3:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_16bb:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_16d3:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_174f
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_16f9
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_16f9:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1737
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_171f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_171f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1737:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_174f:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_178d
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1775
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1775:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_178d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_17a5:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_1b91
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_17ce
ldloc.s V_9
ldloc.s V_8
stloc.s V_11
stloc.s V_10
br IL_0079
IL_17ce:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_19c4
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_17f7
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_17f7:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_18f2
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1820
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1820:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_189c
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1846
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1846:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1884
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_186c
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_186c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1884:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_189c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_18da
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_18c2
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_18c2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_18da:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_18f2:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_196e
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1918
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1918:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1956
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_193e
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_193e:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1956:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_196e:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_19ac
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1994
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1994:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_19ac:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_19c4:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1abf
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_19ed
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_19ed:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1a69
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1a13
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1a13:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1a51
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1a39
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1a39:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1a51:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1a69:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1aa7
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1a8f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1a8f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1aa7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1abf:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1b3b
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1ae5
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1ae5:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1b23
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1b0b
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1b0b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b23:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b3b:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1b79
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1b61
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1b61:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b79:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b91:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_1d87
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_1bba
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_1bba:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1cb5
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1be3
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1be3:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1c5f
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1c09
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1c09:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1c47
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1c2f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1c2f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1c47:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1c5f:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1c9d
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1c85
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1c85:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1c9d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1cb5:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1d31
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1cdb
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1cdb:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1d19
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1d01
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1d01:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d19:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d31:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1d6f
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1d57
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1d57:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d6f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d87:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1e82
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1db0
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1db0:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1e2c
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1dd6
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1dd6:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1e14
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1dfc
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1dfc:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e14:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e2c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1e6a
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1e52
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1e52:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e6a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e82:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1efe
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1ea8
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1ea8:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1ee6
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1ece
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1ece:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1ee6:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1efe:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1f3c
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1f24
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1f24:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1f3c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
}
.method assembly static bool GenericEqualityObjArray(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, object[] x, object[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.2
ldlen
conv.i4
stloc.0
ldarg.3
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0046
ldarg.0
ldarg.1
ldarg.2
ldloc.3
ldelem [mscorlib]System.Object
ldarg.3
ldloc.3
ldelem [mscorlib]System.Object
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003f
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003f:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0046:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityArbArray(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 01 00 00 00 00 00 )
.maxstack 11
.locals init (int64 V_0, int64 V_1, int64 V_2, int64 V_3, bool V_4, class [mscorlib]System.Collections.IEqualityComparer V_5, class [mscorlib]System.Array V_6, class [mscorlib]System.Array V_7, int64 V_8, int64 V_9, int64 V_10, int64 V_11, int64 V_12, int64 V_13, int64 V_14, int64 V_15, int64 V_16, int64 V_17, int32 V_18, int32 V_19, int64[] V_20, class [mscorlib]System.Array V_21, class [mscorlib]System.Array V_22, int32 V_23, int64[] V_24)
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
bne.un.s IL_0016
ldarg.3
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
ceq
br.s IL_0018
IL_0016:
ldc.i4.0
IL_0018:
brfalse.s IL_0071
ldarg.2
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.0
ldarg.3
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.1
ldloc.0
ldloc.1
bne.un.s IL_006f
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.2
ldarg.3
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.3
ldloc.2
ldloc.3
bne.un.s IL_006d
ldarg.0
stloc.s V_4
ldarg.1
stloc.s V_5
ldarg.2
stloc.s V_6
ldarg.3
stloc.s V_7
ldloc.0
stloc.s V_8
ldloc.2
stloc.s V_9
ldloc.3
stloc.s V_10
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldloc.0
ldloc.2
ldloc.3
ldc.i8 0x0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1588-2'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64)
ret
IL_006d:
ldc.i4.0
ret
IL_006f:
ldc.i4.0
ret
IL_0071:
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
bne.un.s IL_0086
ldarg.3
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
ceq
br.s IL_0088
IL_0086:
ldc.i4.0
IL_0088:
brfalse IL_013b
ldarg.2
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.0
ldarg.3
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.1
ldloc.0
ldloc.1
bne.un IL_0139
ldarg.2
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.2
ldarg.3
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.3
ldloc.2
ldloc.3
bne.un IL_0137
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_8
ldarg.2
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_9
ldarg.3
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_10
ldarg.3
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_11
ldloc.s V_8
ldloc.s V_10
bne.un.s IL_00f2
ldloc.s V_9
ldloc.s V_11
ceq
br.s IL_00f4
IL_00f2:
ldc.i4.0
IL_00f4:
brfalse.s IL_0135
ldarg.0
stloc.s V_4
ldarg.1
stloc.s V_5
ldarg.2
stloc.s V_6
ldarg.3
stloc.s V_7
ldloc.0
stloc.s V_12
ldloc.2
stloc.s V_13
ldloc.s V_8
stloc.s V_14
ldloc.s V_9
stloc.s V_15
ldloc.s V_10
stloc.s V_16
ldloc.s V_11
stloc.s V_17
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldloc.0
ldloc.2
ldloc.s V_8
ldloc.s V_9
ldloc.s V_10
ldloc.s V_11
ldc.i8 0x0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check0@1605-1'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
ret
IL_0135:
ldc.i4.0
ret
IL_0137:
ldc.i4.0
ret
IL_0139:
ldc.i4.0
ret
IL_013b:
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldarg.3
callvirt instance int32 [mscorlib]System.Array::get_Rank()
bne.un.s IL_0195
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_18
ldarg.2
stloc.s V_6
ldarg.3
stloc.s V_7
ldloc.s V_18
stloc.s V_19
ldarg.2
ldarg.3
ldloc.s V_18
ldc.i4.0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'precheck@1613-1'(class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int32)
brfalse.s IL_0193
ldloc.s V_18
newarr [mscorlib]System.Int64
stloc.s V_20
ldarg.0
stloc.s V_4
ldarg.1
stloc.s V_5
ldarg.2
stloc.s V_21
ldarg.3
stloc.s V_22
ldloc.s V_18
stloc.s V_23
ldloc.s V_20
stloc.s V_24
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldloc.s V_18
ldloc.s V_20
ldc.i4.0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1628-3'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
ret
IL_0193:
ldc.i4.0
ret
IL_0195:
ldc.i4.0
ret
}
.method assembly static bool GenericEqualityObj(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, object xobj, object yobj) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00
00 00 00 00 )
.locals init (string V_0, string V_1, string V_2, string V_3, class [mscorlib]System.Array V_4, class [mscorlib]System.Array V_5, class [mscorlib]System.Collections.IStructuralEquatable V_6, class [mscorlib]System.Collections.IStructuralEquatable V_7, float32 V_8, float32 V_9, float64 V_10, float64 V_11)
ldarg.2
brfalse IL_01e7
ldarg.3
brfalse IL_01e5
ldarg.2
isinst [mscorlib]System.String
stloc.0
ldloc.0
brfalse IL_0138
ldarg.3
isinst [mscorlib]System.String
stloc.1
ldloc.1
brfalse.s IL_0030
ldloc.1
stloc.2
ldloc.0
stloc.3
ldloc.3
ldloc.2
call bool [mscorlib]System.String::Equals(string, string)
ret
IL_0030:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_004f
ldloc.s V_4
stloc.s V_5
IL_0040:
ldarg.0
ldarg.1
ldarg.3
ldarg.2
ldloc.s V_5
ldnull
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj$cont@1498(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object, class [mscorlib]System.Array, class Microsoft.FSharp.Core.Unit)
ret
IL_004f:
ldarg.2
isinst [mscorlib]System.Collections.IStructuralEquatable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_006b
ldloc.s V_6
stloc.s V_7
IL_005f:
ldloc.s V_7
ldarg.3
ldarg.1
tail.
callvirt instance bool [mscorlib]System.Collections.IStructuralEquatable::Equals(object, class [mscorlib]System.Collections.IEqualityComparer)
ret
IL_006b:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_00cb
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_0085
IL_007b:
ldarg.2
ldarg.3
tail.
callvirt instance bool [mscorlib]System.Object::Equals(object)
ret
IL_0085:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_008f
br.s IL_007b
IL_008f:
ldarg.3
unbox.any [mscorlib]System.Single
stloc.s V_8
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
IL_009f:
ldarg.0
brfalse.s IL_00ae
ldloc.s V_9
ldloc.s V_9
ceq
ldc.i4.0
ceq
br.s IL_00b0
IL_00ae:
ldc.i4.0
IL_00b0:
brfalse.s IL_00be
ldloc.s V_8
ldloc.s V_8
ceq
ldc.i4.0
ceq
br.s IL_00c0
IL_00be:
ldc.i4.0
IL_00c0:
brfalse.s IL_00c4
ldc.i4.1
ret
IL_00c4:
ldloc.s V_9
ldloc.s V_8
ceq
ret
IL_00cb:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_00fc
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00dd
br.s IL_007b
IL_00dd:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00ea
br IL_007b
IL_00ea:
ldarg.3
unbox.any [mscorlib]System.Single
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
stloc.s V_8
br.s IL_009f
IL_00fc:
ldarg.3
unbox.any [mscorlib]System.Double
stloc.s V_10
ldarg.2
unbox.any [mscorlib]System.Double
stloc.s V_11
IL_010c:
ldarg.0
brfalse.s IL_011b
ldloc.s V_11
ldloc.s V_11
ceq
ldc.i4.0
ceq
br.s IL_011d
IL_011b:
ldc.i4.0
IL_011d:
brfalse.s IL_012b
ldloc.s V_10
ldloc.s V_10
ceq
ldc.i4.0
ceq
br.s IL_012d
IL_012b:
ldc.i4.0
IL_012d:
brfalse.s IL_0131
ldc.i4.1
ret
IL_0131:
ldloc.s V_11
ldloc.s V_10
ceq
ret
IL_0138:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_014d
ldloc.s V_4
stloc.s V_5
br IL_0040
IL_014d:
ldarg.2
isinst [mscorlib]System.Collections.IStructuralEquatable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_0162
ldloc.s V_6
stloc.s V_7
br IL_005f
IL_0162:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_0199
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_0177
br IL_007b
IL_0177:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_0184
br IL_007b
IL_0184:
ldarg.3
unbox.any [mscorlib]System.Single
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
stloc.s V_8
br IL_009f
IL_0199:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_01d0
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_01ae
br IL_007b
IL_01ae:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_01bb
br IL_007b
IL_01bb:
ldarg.3
unbox.any [mscorlib]System.Single
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
stloc.s V_8
br IL_009f
IL_01d0:
ldarg.3
unbox.any [mscorlib]System.Double
ldarg.2
unbox.any [mscorlib]System.Double
stloc.s V_11
stloc.s V_10
br IL_010c
IL_01e5:
ldc.i4.0
ret
IL_01e7:
ldarg.3
brfalse.s IL_01ec
ldc.i4.0
ret
IL_01ec:
ldc.i4.1
ret
}
.method assembly static bool 'check@1588-2'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx, int64 basex, int64 basey, int64 i) cil managed
{
.maxstack 9
IL_0001:
ldarg.s i
ldarg.s lenx
blt.s IL_0009
ldc.i4.1
ret
IL_0009:
ldarg.0
ldarg.1
ldarg.2
ldarg.s basex
ldarg.s i
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
ldarg.3
ldarg.s basey
ldarg.s i
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
brfalse.s IL_0050
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx
ldarg.s basex
ldarg.s basey
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey
starg.s basex
starg.s lenx
starg.s y
starg.s x
starg.s iec
starg.s er
br.s IL_0001
IL_0050:
ldc.i4.0
ret
}
.method assembly static bool 'check1@1606-1'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i, int64 j) cil managed
{
.maxstack 12
IL_0001:
ldarg.s j
ldarg.s lenx1
blt.s IL_0009
ldc.i4.1
ret
IL_0009:
ldarg.0
ldarg.1
ldarg.2
ldarg.s basex0
ldarg.s i
add
ldarg.s basex1
ldarg.s j
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
ldarg.3
ldarg.s basey0
ldarg.s i
add
ldarg.s basey1
ldarg.s j
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
brfalse.s IL_0066
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldarg.s j
ldc.i8 0x1
add
starg.s j
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s y
starg.s x
starg.s iec
starg.s er
br.s IL_0001
IL_0066:
ldc.i4.0
ret
}
.method assembly static bool 'check0@1605-1'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx0, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i) cil managed
{
.maxstack 12
.locals init (bool V_0, class [mscorlib]System.Collections.IEqualityComparer V_1, class [mscorlib]System.Array V_2, class [mscorlib]System.Array V_3, int64 V_4, int64 V_5, int64 V_6, int64 V_7, int64 V_8, int64 V_9)
IL_0001:
ldarg.0
stloc.0
ldarg.1
stloc.1
ldarg.2
stloc.2
ldarg.3
stloc.3
ldarg.s lenx1
stloc.s V_4
ldarg.s basex0
stloc.s V_5
ldarg.s basex1
stloc.s V_6
ldarg.s basey0
stloc.s V_7
ldarg.s basey1
stloc.s V_8
ldarg.s i
stloc.s V_9
ldarg.s i
ldarg.s lenx0
blt.s IL_0029
ldc.i4.1
ret
IL_0029:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check1@1606-1'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
brfalse.s IL_0080
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx0
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s lenx0
starg.s y
starg.s x
starg.s iec
starg.s er
br IL_0001
IL_0080:
ldc.i4.0
ret
}
.method assembly static bool 'precheck@1613-1'(class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int32 k) cil managed
{
IL_0001:
ldarg.3
ldarg.2
blt.s IL_0007
ldc.i4.1
ret
IL_0007:
ldarg.0
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
ldarg.1
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
bne.un.s IL_002a
ldarg.0
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
ldarg.1
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
ceq
br.s IL_002c
IL_002a:
ldc.i4.0
IL_002c:
brfalse.s IL_003e
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldc.i4.1
add
starg.s k
starg.s ndims
starg.s y
starg.s x
br.s IL_0001
IL_003e:
ldc.i4.0
ret
}
.method assembly static bool 'checkN@1621-1'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k, int64 baseIdx, int64 i, int64 lim) cil managed
{
.maxstack 10
IL_0000:
ldarg.s i
ldarg.s lim
blt.s IL_0008
ldc.i4.1
ret
IL_0008:
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
add
stelem [mscorlib]System.Int64
ldarg.s k
ldarg.s ndims
ldc.i4.1
sub
bne.un.s IL_0039
ldarg.0
ldarg.1
ldarg.2
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
ldarg.3
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
br.s IL_004b
IL_0039:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s ndims
ldarg.s idxs
ldarg.s k
ldc.i4.1
add
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1628-3'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
IL_004b:
brfalse.s IL_0080
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s ndims
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
ldc.i8 0x1
add
ldarg.s lim
starg.s lim
starg.s i
starg.s baseIdx
starg.s k
starg.s idxs
starg.s ndims
starg.s y
starg.s x
starg.s iec
starg.s er
br IL_0000
IL_0080:
ldc.i4.0
ret
}
.method assembly static bool 'check@1628-3'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k) cil managed
{
.maxstack 11
.locals init (int32 V_0)
ldarg.s k
ldarg.s ndims
blt.s IL_0008
ldc.i4.1
ret
IL_0008:
ldarg.2
ldarg.s k
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.0
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s ndims
ldarg.s idxs
ldarg.s k
ldloc.0
conv.i8
ldc.i8 0x0
ldarg.2
ldarg.s k
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'checkN@1621-1'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32, int64, int64, int64)
ret
}
.method assembly specialname static class [mscorlib]System.Collections.IEqualityComparer get_fsEqualityComparerNoHashingPER() cil managed
{
ldsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingPER@1654
ret
}
.method assembly specialname static class [mscorlib]System.Collections.IEqualityComparer get_fsEqualityComparerNoHashingER() cil managed
{
ldsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingER@1661
ret
}
.method public static bool GenericEqualityERIntrinsic<T>(!!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
ldc.i4.1
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingER()
ldarg.0
box !!T
ldarg.1
box !!T
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method public static bool GenericEqualityWithComparerIntrinsic<T>(class [mscorlib]System.Collections.IEqualityComparer comp, !!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
ldarg.0
ldarg.1
box !!T
ldarg.2
box !!T
tail.
callvirt instance bool [mscorlib]System.Collections.IEqualityComparer::Equals(object, object)
ret
}
.method assembly static int32 GenericHashObjArray(class [mscorlib]System.Collections.IEqualityComparer iec, object[] x) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.1
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_0042
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldarg.1
ldloc.1
callvirt instance object [mscorlib]System.Array::GetValue(int32)
callvirt instance int32 [mscorlib]System.Collections.IEqualityComparer::GetHashCode(object)
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_0042:
ldloc.2
ret
}
.method assembly static int32 GenericHashByteArray(uint8[] x) cil managed
{
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.0
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_003c
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldloc.1
ldelem [mscorlib]System.Byte
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_003c:
ldloc.2
ret
}
.method assembly static int32 GenericHashInt32Array(int32[] x) cil managed
{
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.0
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_003c
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldloc.1
ldelem [mscorlib]System.Int32
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_003c:
ldloc.2
ret
}
.method assembly static int32 GenericHashInt64Array(int64[] x) cil managed
{
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.0
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_003d
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldloc.1
ldelem [mscorlib]System.Int64
conv.i4
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_003d:
ldloc.2
ret
}
.method assembly static int32 GenericHashArbArray(class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4, int32 V_5)
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
sub
switch (
IL_002c)
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLength(int32)
stloc.0
ldloc.0
ldc.i4.1
shl
ldarg.1
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLength(int32)
add
ldc.i4 0x18a6
add
ret
IL_002c:
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.0
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Length()
stloc.1
ldloc.0
ldloc.1
add
ldc.i4.1
sub
stloc.2
ldloc.2
ldloc.0
ldc.i4.s 18
add
ble.s IL_0050
ldloc.0
ldc.i4.s 18
add
stloc.2
br.s IL_0051
IL_0050:
IL_0051:
ldc.i4.0
stloc.3
IL_0053:
ldloc.2
ldloc.0
blt.s IL_0080
ldloc.2
stloc.s V_4
ldloc.3
stloc.s V_5
ldloc.s V_5
ldc.i4.1
shl
ldarg.0
ldarg.1
ldloc.2
callvirt instance object [mscorlib]System.Array::GetValue(int32)
callvirt instance int32 [mscorlib]System.Collections.IEqualityComparer::GetHashCode(object)
add
ldc.i4 0x277
ldloc.s V_4
mul
add
stloc.3
ldloc.2
ldc.i4.1
sub
stloc.2
br.s IL_0053
IL_0080:
ldloc.3
ret
}
.method assembly static int32 GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer iec, object x) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (class [mscorlib]System.Array V_0, class [mscorlib]System.Array V_1, object[] V_2, object[] V_3, uint8[] V_4, uint8[] V_5, int32[] V_6, int32[] V_7, int64[] V_8, int64[] V_9, class [mscorlib]System.Collections.IStructuralEquatable V_10, class [mscorlib]System.Collections.IStructuralEquatable V_11)
ldarg.1
brfalse IL_009b
ldarg.1
isinst [mscorlib]System.Array
stloc.0
ldloc.0
brfalse.s IL_0077
ldloc.0
stloc.1
ldloc.1
isinst object[]
stloc.2
ldloc.2
brfalse.s IL_0027
ldloc.2
stloc.3
ldarg.0
ldloc.3
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashObjArray(class [mscorlib]System.Collections.IEqualityComparer, object[])
ret
IL_0027:
ldloc.1
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse.s IL_003f
ldloc.s V_4
stloc.s V_5
ldloc.s V_5
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashByteArray(uint8[])
ret
IL_003f:
ldloc.1
isinst int32[]
stloc.s V_6
ldloc.s V_6
brfalse.s IL_0057
ldloc.s V_6
stloc.s V_7
ldloc.s V_7
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashInt32Array(int32[])
ret
IL_0057:
ldloc.1
isinst int64[]
stloc.s V_8
ldloc.s V_8
brfalse.s IL_006f
ldloc.s V_8
stloc.s V_9
ldloc.s V_9
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashInt64Array(int64[])
ret
IL_006f:
ldarg.0
ldloc.1
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashArbArray(class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array)
ret
IL_0077:
ldarg.1
isinst [mscorlib]System.Collections.IStructuralEquatable
stloc.s V_10
ldloc.s V_10
brfalse.s IL_0092
ldloc.s V_10
stloc.s V_11
ldloc.s V_11
ldarg.0
tail.
callvirt instance int32 [mscorlib]System.Collections.IStructuralEquatable::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ret
IL_0092:
ldarg.1
tail.
callvirt instance int32 [mscorlib]System.Object::GetHashCode()
ret
IL_009b:
ldc.i4.0
ret
}
.property class [mscorlib]System.Exception
NaNException()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Exception Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_NaNException()
}
.property class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer
fsComparerER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsComparerER()
}
.property class [mscorlib]System.Collections.IEqualityComparer
fsEqualityComparerNoHashingPER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingPER()
}
.property class [mscorlib]System.Collections.IEqualityComparer
fsEqualityComparerNoHashingER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingER()
}
.property class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER
fsEqualityComparerUnlimitedHashingER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingER()
}
.property class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER
fsEqualityComparerUnlimitedHashingPER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingPER()
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int16Comparer@2302
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int16 x, int16 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int16>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int16IEquality@2224
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int16 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16>::GetHashCode(!0)
ldarg.1
conv.u2
ldarg.1
ldc.i4.s 16
shl
or
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int16 x, int16 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int32Comparer@2303
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int32 x, int32 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int32>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int32IEquality@2225
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int32 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int32 x, int32 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int64Comparer@2304
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int64 x, int64 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int64>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int64IEquality@2226
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int64 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64>::GetHashCode(!0)
ldarg.1
conv.i4
ldarg.1
ldc.i4.s 32
shr
conv.i4
xor
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int64 x, int64 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname IntPtrComparer@2305
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<native int>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(native int x, native int y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<native int>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname IntPtrIEquality@2227
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(native int obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int>::GetHashCode(!0)
ldarg.1
conv.u8
conv.i4
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(native int x, native int y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class abstract auto ansi sealed nested public IntrinsicFunctions
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto ansi serializable nested assembly beforefieldinit TypeInfo`1<T>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field static assembly int32 info
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private specialname rtspecialname static void .cctor() cil managed
{
ldtoken !T
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::getTypeInfo(class [mscorlib]System.Type)
stsfld int32 class Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions/TypeInfo`1<!T>::info
ret
}
}
.method public static bool TypeTestGeneric<T>(object source) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 4C 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 66 6F 72 20 75 73 65 20 62 79 20 63
6F 6D 70 69 6C 65 64 20 46 23 20 63 6F 64 65 20
61 6E 64 20 73 68 6F 75 6C 64 20 6E 6F 74 20 62
65 20 75 73 65 64 20 64 69 72 65 63 74 6C 79 B4
04 00 00 01 00 54 02 08 49 73 48 69 64 64 65 6E
01 )
ldarg.0
isinst !!T
ldnull
cgt.un
brfalse.s IL_000e
ldc.i4.1
ret
IL_000e:
ldarg.0
ldnull
cgt.un
brfalse.s IL_0016
ldc.i4.0
ret
IL_0016:
ldsfld int32 class Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions/TypeInfo`1<!!T>::info
ldc.i4.2
ceq
ret
}
.method assembly static int32 getTypeInfo(class [mscorlib]System.Type ty) cil managed
{
.locals init (object[] V_0, object[] V_1, object V_2, class Microsoft.FSharp.Core.CompilationRepresentationAttribute V_3)
ldarg.0
callvirt instance bool [mscorlib]System.Type::get_IsValueType()
brfalse.s IL_000b
ldc.i4.4
ret
IL_000b:
ldarg.0
ldtoken Microsoft.FSharp.Core.CompilationMappingAttribute
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldc.i4.0
callvirt instance object[] [mscorlib]System.Reflection.MemberInfo::GetCustomAttributes(class [mscorlib]System.Type, bool)
stloc.0
ldloc.0
ldlen
conv.i4
brtrue.s IL_0024
ldc.i4.1
ret
IL_0024:
ldarg.0
ldtoken Microsoft.FSharp.Core.Unit
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
callvirt instance bool [mscorlib]System.Type::Equals(class [mscorlib]System.Type)
brfalse.s IL_0038
ldc.i4.2
ret
IL_0038:
ldtoken [mscorlib]System.Delegate
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldarg.0
callvirt instance bool [mscorlib]System.Type::IsAssignableFrom(class [mscorlib]System.Type)
brfalse.s IL_004c
ldc.i4.1
ret
IL_004c:
ldarg.0
ldtoken Microsoft.FSharp.Core.AllowNullLiteralAttribute
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldc.i4.0
callvirt instance object[] [mscorlib]System.Reflection.MemberInfo::GetCustomAttributes(class [mscorlib]System.Type, bool)
ldlen
conv.i4
ldc.i4.0
ble.s IL_0064
ldc.i4.1
ret
IL_0064:
ldarg.0
ldtoken Microsoft.FSharp.Core.CompilationRepresentationAttribute
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldc.i4.0
callvirt instance object[] [mscorlib]System.Reflection.MemberInfo::GetCustomAttributes(class [mscorlib]System.Type, bool)
stloc.1
ldloc.1
ldlen
conv.i4
brtrue.s IL_007d
ldc.i4.3
ret
IL_007d:
ldloc.1
ldc.i4.0
ldelem [mscorlib]System.Object
stloc.2
ldloc.2
unbox.any Microsoft.FSharp.Core.CompilationRepresentationAttribute
stloc.3
ldloc.3
ldfld valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Microsoft.FSharp.Core.CompilationRepresentationAttribute::'flags'
ldc.i4.8
and
brtrue.s IL_0098
ldc.i4.3
ret
IL_0098:
ldc.i4.2
ret
}
.method public static void FailStaticInit() cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 4C 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 66 6F 72 20 75 73 65 20 62 79 20 63
6F 6D 70 69 6C 65 64 20 46 23 20 63 6F 64 65 20
61 6E 64 20 73 68 6F 75 6C 64 20 6E 6F 74 20 62
65 20 75 73 65 64 20 64 69 72 65 63 74 6C 79 B4
04 00 00 01 00 54 02 08 49 73 48 69 64 64 65 6E
01 )
ldstr "checkStaticInit"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname SByteComparer@2301
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int8 x, int8 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int8>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname SByteIEquality@2223
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int8 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8>::GetHashCode(!0)
ldarg.1
ldc.i4.8
shl
ldarg.1
xor
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int8 x, int8 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname StringComparer@2300
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<string>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(string x, string y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<string>::Compare(!0, !0)
ldarg.1
ldarg.2
call int32 [mscorlib]System.String::CompareOrdinal(string, string)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname StringIEquality@2222
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(string obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string>::GetHashCode(!0)
ldarg.1
brfalse.s IL_000b
ldarg.1
call instance int32 [mscorlib]System.String::GetHashCode()
ret
IL_000b:
ldc.i4.0
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(string x, string y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string>::Equals(!0, !0)
ldarg.1
ldarg.2
call bool [mscorlib]System.String::Equals(string, string)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt16Comparer@2307
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint16 x, uint16 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint16>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt16IEquality@2229
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint16 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint16 x, uint16 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt32Comparer@2308
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint32 x, uint32 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint32>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt32IEquality@2230
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint32 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint32 x, uint32 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt64Comparer@2309
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint64 x, uint64 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint64>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt64IEquality@2231
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint64 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64>::GetHashCode(!0)
ldarg.1
conv.i4
ldarg.1
ldc.i4.s 32
shr.un
conv.i4
xor
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint64 x, uint64 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UIntPtrComparer@2310
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<native uint>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(native uint x, native uint y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<native uint>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UIntPtrIEquality@2232
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(native uint obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint>::GetHashCode(!0)
ldarg.1
conv.u8
conv.i4
ldc.i4 0x7fffffff
and
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(native uint x, native uint y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.method assembly static string anyToStringShowingNull<T>(!!T x) cil managed
{
.locals init (object V_0, class [mscorlib]System.IFormattable V_1, class [mscorlib]System.IFormattable V_2, object V_3)
ldarg.0
box !!T
stloc.0
ldloc.0
brfalse.s IL_0031
ldloc.0
isinst [mscorlib]System.IFormattable
stloc.1
ldloc.1
brfalse.s IL_0026
ldloc.1
stloc.2
ldloc.2
ldnull
call class [mscorlib]System.Globalization.CultureInfo [mscorlib]System.Globalization.CultureInfo::get_InvariantCulture()
tail.
callvirt instance string [mscorlib]System.IFormattable::ToString(string, class [mscorlib]System.IFormatProvider)
ret
IL_0026:
ldloc.0
stloc.3
ldloc.3
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_0031:
ldstr "null"
ret
}
.method public specialname static class [mscorlib]System.Collections.IComparer get_GenericComparer() cil managed
{
ldsfld class [mscorlib]System.Collections.IComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericComparer@2195
ret
}
.method public specialname static class [mscorlib]System.Collections.IEqualityComparer get_GenericEqualityComparer() cil managed
{
ldsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericEqualityComparer@2196
ret
}
.property class [mscorlib]System.Collections.IComparer
GenericComparer()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
}
.property class [mscorlib]System.Collections.IEqualityComparer
GenericEqualityComparer()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericEqualityComparer()
}
}
.class public abstract auto ansi serializable beforefieldinit Microsoft.FSharp.Core.FSharpFunc`2<T,TResult>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.AbstractClassAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public hidebysig abstract virtual instance !TResult Invoke(!T func) cil managed
{
}
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
}
.class private abstract auto ansi sealed Microsoft.FSharp.Collections.Internal
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class abstract auto ansi sealed nested assembly IEnumerator
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname filter@182<T>
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,
[mscorlib]System.IDisposable,
[mscorlib]System.Collections.IEnumerator
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f
.field public class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> e
.field public class Microsoft.FSharp.Core.FSharpRef`1<bool> started
.method public specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f, class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> e, class Microsoft.FSharp.Core.FSharpRef`1<bool> started) cil managed
{
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::f
ldarg.0
ldarg.2
stfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
ldarg.0
ldarg.3
stfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance !T 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
.locals init (bool V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<bool>::contents@
stloc.0
ldloc.0
brtrue.s IL_0019
call !!0 Microsoft.FSharp.Collections.IEnumerator::notStarted<class Microsoft.FSharp.Core.Unit>()
pop
br.s IL_001a
IL_0019:
IL_001a:
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
tail.
callvirt instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
ret
}
.method private hidebysig newslot virtual final instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
.locals init (bool V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<bool>::contents@
stloc.0
ldloc.0
brtrue.s IL_0019
call !!0 Microsoft.FSharp.Collections.IEnumerator::notStarted<class Microsoft.FSharp.Core.Unit>()
pop
br.s IL_001a
IL_0019:
IL_001a:
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
callvirt instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
box !T
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> V_0, class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> V_1, class Microsoft.FSharp.Core.FSharpRef`1<bool> V_2)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::f
stloc.0
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
stloc.1
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
stloc.2
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::f
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldnull
call bool Microsoft.FSharp.Collections.Internal/IEnumerator::next@187<!T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>, class Microsoft.FSharp.Core.FSharpRef`1<bool>, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldstr "resetNotSupported"
newobj instance void [mscorlib]System.NotSupportedException::.ctor(string)
throw
}
.method private hidebysig newslot virtual final instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
tail.
callvirt instance void [mscorlib]System.IDisposable::Dispose()
ret
}
}
.method assembly static bool next@187<T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool> f, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> e, class Microsoft.FSharp.Core.FSharpRef`1<bool> started, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
IL_0000:
ldarg.2
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<bool>::contents@
brtrue.s IL_0013
ldarg.2
ldc.i4.1
call instance void class Microsoft.FSharp.Core.FSharpRef`1<bool>::set_contents(!0)
br.s IL_0014
IL_0013:
IL_0014:
ldarg.1
callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
brfalse.s IL_003a
ldarg.0
ldarg.1
callvirt instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T>::get_Current()
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool>::Invoke(!0)
brfalse.s IL_002c
ldc.i4.1
ret
IL_002c:
ldarg.0
ldarg.1
ldarg.2
ldnull
starg.s unitVar0
starg.s started
starg.s e
starg.s f
br.s IL_0000
IL_003a:
ldc.i4.0
ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> 'filter'<T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool> f, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> e) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<bool> V_0)
ldc.i4.0
newobj instance void class Microsoft.FSharp.Core.FSharpRef`1<bool>::.ctor(!0)
stloc.0
ldarg.0
ldarg.1
ldloc.0
newobj instance void class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!!T>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool>,
class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>,
class Microsoft.FSharp.Core.FSharpRef`1<bool>)
ret
}
}
}
.class public abstract auto ansi sealed Microsoft.FSharp.Collections.SeqModule
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationRepresentationAttribute::.ctor(valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags) = ( 01 00 04 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.RequireQualifiedAccessAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto ansi serializable sealed nested assembly beforefieldinit Filter@583<T>
extends class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>>
{
.field public class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f
.method assembly specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f) cil managed
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>>::.ctor()
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.SeqModule/Filter@583<!T>::f
ret
}
.method public strict virtual instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> Invoke(class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> e) cil managed
{
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.SeqModule/Filter@583<!T>::f
ldarg.1
call class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0> Microsoft.FSharp.Collections.Internal/IEnumerator::'filter'<!T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>)
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit revamp@574<b,a>
extends class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>>
{
.field public class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>> f
.field public class [mscorlib]System.Collections.Generic.IEnumerable`1<!a> ie
.method assembly specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>> f, class [mscorlib]System.Collections.Generic.IEnumerable`1<!a> ie) cil managed
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>>::.ctor()
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!1>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::f
ldarg.0
ldarg.2
stfld class [mscorlib]System.Collections.Generic.IEnumerable`1<!1> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::ie
ret
}
.method public strict virtual instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!b> Invoke(class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!1>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::f
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerable`1<!1> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::ie
callvirt instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!a>::GetEnumerator()
tail.
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>>::Invoke(!0)
ret
}
}
.method public static class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T> Filter<T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool> predicate, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T> source) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationSourceNameAttribute::.ctor(string) = ( 01 00 06 66 69 6C 74 65 72 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
ldarg.1
box class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T>
brfalse.s IL_000b
br.s IL_0016
IL_000b:
ldstr "source"
newobj instance void [mscorlib]System.ArgumentNullException::.ctor(string)
throw
IL_0016:
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.SeqModule/Filter@583<!!T>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool>)
ldarg.1
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!1> Microsoft.FSharp.Collections.SeqModule::revamp<!!0,!!0>(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!1>>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ret
}
.method public static int32 Length<T>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T> source) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationSourceNameAttribute::.ctor(string) = ( 01 00 06 6C 65 6E 67 74 68 00 00 )
.locals init (!!T[] V_0, !!T[] V_1, class Microsoft.FSharp.Collections.FSharpList`1<!!T> V_2, class Microsoft.FSharp.Collections.FSharpList`1<!!T> V_3, class [mscorlib]System.Collections.Generic.ICollection`1<!!T> V_4, class [mscorlib]System.Collections.Generic.ICollection`1<!!T> V_5, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> V_6, int32 V_7, int32 V_8, class [mscorlib]System.IDisposable V_9)
ldarg.0
box class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T>
brfalse.s IL_000b
br.s IL_0016
IL_000b:
ldstr "source"
newobj instance void [mscorlib]System.ArgumentNullException::.ctor(string)
throw
IL_0016:
ldarg.0
isinst !!T[]
stloc.0
ldloc.0
brfalse.s IL_0027
ldloc.0
stloc.1
ldloc.1
ldlen
conv.i4
ret
IL_0027:
ldarg.0
isinst class Microsoft.FSharp.Collections.FSharpList`1<!!T>
stloc.2
ldloc.2
brfalse.s IL_003a
ldloc.2
stloc.3
ldloc.3
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!!T>::get_Length()
ret
IL_003a:
ldarg.0
isinst class [mscorlib]System.Collections.Generic.ICollection`1<!!T>
stloc.s V_4
ldloc.s V_4
brfalse.s IL_0054
ldloc.s V_4
stloc.s V_5
ldloc.s V_5
tail.
callvirt instance int32 class [mscorlib]System.Collections.Generic.ICollection`1<!!T>::get_Count()
ret
IL_0054:
ldarg.0
callvirt instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T>::GetEnumerator()
stloc.s V_6
.try
{
ldc.i4.0
stloc.s V_8
IL_005f:
ldloc.s V_6
callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
brfalse.s IL_0071
ldloc.s V_8
ldc.i4.1
add
stloc.s V_8
br.s IL_005f
IL_0071:
ldloc.s V_8
stloc.s V_7
leave.s IL_0091
}
finally
{
IL_0077: ldloc.s V_6
IL_0079: isinst [mscorlib]System.IDisposable
IL_007e: stloc.s V_9
IL_0080: ldloc.s V_9
IL_0082: brfalse.s IL_008e
IL_0084: ldloc.s V_9
IL_0086: callvirt instance void [mscorlib]System.IDisposable::Dispose()
IL_008b: ldnull
IL_008c: pop
IL_008d: endfinally
IL_008e: ldnull
IL_008f: pop
IL_0090: endfinally
}
IL_0091: ldloc.s V_7
IL_0093: ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerable`1<!!b> revamp<a,b>(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!b>> f, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!a> ie) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
ldarg.0
ldarg.1
newobj instance void class Microsoft.FSharp.Collections.SeqModule/revamp@574<!!b,!!a>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!1>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>>,
class [mscorlib]System.Collections.Generic.IEnumerable`1<!1>)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.IEnumerator::mkSeq<!!1>(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>>)
ret
}
}
.class private abstract auto ansi sealed Microsoft.FSharp.Collections.PrivateListHelpers
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto ansi serializable nested assembly beforefieldinit ListEnumerator`1<T>
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,
[mscorlib]System.Collections.IEnumerator,
[mscorlib]System.IDisposable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly class Microsoft.FSharp.Collections.FSharpList`1<!T> s
.field assembly class Microsoft.FSharp.Collections.FSharpList`1<!T> curr
.field assembly bool started
.method public specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Collections.FSharpList`1<!T> s) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::s
ldarg.0
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::s
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldarg.0
ldc.i4.0
stfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
ret
}
.method assembly hidebysig instance !T GetCurrent() cil managed
{
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0)
ldarg.0
ldfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
brfalse.s IL_0025
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
stloc.0
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_001f
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
ret
IL_001f:
call !!0 Microsoft.FSharp.Collections.PrivateListHelpers::alreadyFinished<!T>()
ret
IL_0025:
call !!0 Microsoft.FSharp.Collections.PrivateListHelpers::notStarted<!T>()
ret
}
.method private hidebysig newslot specialname virtual instance !T 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
ldarg.0
callvirt instance !0 class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::GetCurrent()
ret
}
.method private hidebysig newslot virtual instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2)
ldarg.0
ldfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
brfalse.s IL_003c
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
stloc.0
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_003a
ldloc.0
stloc.1
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.2
ldarg.0
ldloc.2
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
ceq
ldc.i4.0
ceq
ret
IL_003a:
ldc.i4.0
ret
IL_003c:
ldarg.0
ldc.i4.1
stfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
ceq
ldc.i4.0
ceq
ret
}
.method private hidebysig newslot specialname virtual instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
ldarg.0
callvirt instance !0 class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::GetCurrent()
box !T
ret
}
.method private hidebysig newslot virtual instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldarg.0
ldc.i4.0
stfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
ldarg.0
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::s
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ret
}
.method private hidebysig newslot virtual instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ret
}
}
.method assembly static !!a notStarted<a>() cil managed
{
ldstr "enumerationNotStarted"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static !!a alreadyFinished<a>() cil managed
{
ldstr "enumerationAlreadyFinished"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static int32 lengthAcc<a>(int32 acc, class Microsoft.FSharp.Collections.FSharpList`1<!!a> xs) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!!a> V_0)
IL_0000:
ldarg.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!!a>::tail
brfalse.s IL_001a
ldarg.1
stloc.0
ldarg.0
ldc.i4.1
add
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!!a>::tail
starg.s xs
starg.s acc
br.s IL_0000
IL_001a:
ldarg.0
ret
}
}
.class public auto autochar serializable sealed beforefieldinit Microsoft.FSharp.Collections.FSharpList`1<T>
extends [mscorlib]System.Object
implements class [mscorlib]System.IEquatable`1<class Microsoft.FSharp.Collections.FSharpList`1<!T>>,
[mscorlib]System.Collections.IStructuralEquatable,
[mscorlib]System.IComparable,
class [mscorlib]System.IComparable`1<class Microsoft.FSharp.Collections.FSharpList`1<!T>>,
class [mscorlib]System.Collections.Generic.IReadOnlyCollection`1<!T>,
[mscorlib]System.Collections.IStructuralComparable,
[mscorlib]System.Collections.IEnumerable,
class [mscorlib]System.Collections.Generic.IEnumerable`1<!T>
{
.custom instance void [mscorlib]System.Reflection.DefaultMemberAttribute::.ctor(string) = ( 01 00 04 49 74 65 6D 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralEqualityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralComparisonAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompiledNameAttribute::.ctor(string) = ( 01 00 0C 46 53 68 61 72 70 4C 69 73 74 60 31 00
00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerTypeProxyAttribute::.ctor(class [mscorlib]System.Type) = ( 01 00 2C 4D 69 63 72 6F 73 6F 66 74 2E 46 53 68
61 72 70 2E 43 6F 6C 6C 65 63 74 69 6F 6E 73 2E
4C 69 73 74 44 65 62 75 67 56 69 65 77 60 31 00
00 )
.custom instance void Microsoft.FSharp.Core.DefaultAugmentationAttribute::.ctor(bool) = ( 01 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 01 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerDisplayAttribute::.ctor(string) = ( 01 00 11 7B 44 65 62 75 67 44 69 73 70 6C 61 79
2C 6E 71 7D 00 00 )
.field assembly !T head
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field assembly class Microsoft.FSharp.Collections.FSharpList`1<!T> tail
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Collections.FSharpList`1<!T> _unique_Empty
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.method private specialname rtspecialname static void .cctor() cil managed
{
newobj instance void class Microsoft.FSharp.Collections.FSharpList`1<!T>::.ctor()
stsfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::_unique_Empty
ret
}
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
.method public hidebysig virtual final instance int32 CompareTo(class Microsoft.FSharp.Collections.FSharpList`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, int32 V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, int32 V_4, class [mscorlib]System.Collections.IComparer V_5, !T V_6, !T V_7, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_8, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_9)
ldarg.0
ldnull
cgt.un
brfalse IL_0096
ldarg.1
ldnull
cgt.un
brfalse IL_0094
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.0
ldarg.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldloc.1
bne.un.s IL_0090
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_008e
ldarg.0
stloc.2
ldarg.1
stloc.3
call class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
stloc.s V_5
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_6
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_7
ldloc.s V_5
ldloc.s V_6
ldloc.s V_7
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
stloc.s V_4
ldloc.s V_4
ldc.i4.0
bge.s IL_0063
ldloc.s V_4
ret
IL_0063:
ldloc.s V_4
ldc.i4.0
ble.s IL_006b
ldloc.s V_4
ret
IL_006b:
call class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
stloc.s V_5
ldloc.2
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_8
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_9
ldloc.s V_8
ldloc.s V_9
ldloc.s V_5
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::CompareTo(object, class [mscorlib]System.Collections.IComparer)
ret
IL_008e:
ldc.i4.0
ret
IL_0090:
ldloc.0
ldloc.1
sub
ret
IL_0094:
ldc.i4.1
ret
IL_0096:
ldarg.1
ldnull
cgt.un
brfalse.s IL_009e
ldc.i4.m1
ret
IL_009e:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::CompareTo(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj, class [mscorlib]System.Collections.IComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, int32 V_1, int32 V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_4, int32 V_5, !T V_6, !T V_7, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_8, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_9)
IL_0000:
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
stloc.0
ldarg.0
ldnull
cgt.un
brfalse IL_009a
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
ldnull
cgt.un
brfalse IL_0098
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.2
ldloc.1
ldloc.2
bne.un.s IL_0094
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0092
ldarg.0
stloc.3
ldloc.0
stloc.s V_4
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_6
ldloc.s V_4
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_7
ldarg.2
ldloc.s V_6
ldloc.s V_7
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
stloc.s V_5
ldloc.s V_5
ldc.i4.0
bge.s IL_0069
ldloc.s V_5
ret
IL_0069:
ldloc.s V_5
ldc.i4.0
ble.s IL_0071
ldloc.s V_5
ret
IL_0071:
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_8
ldloc.s V_4
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_9
ldloc.s V_8
ldloc.s V_9
ldarg.2
starg.s comp
starg.s obj
starg.s 0
br IL_0000
IL_0092:
ldc.i4.0
ret
IL_0094:
ldloc.1
ldloc.2
sub
ret
IL_0098:
ldc.i4.1
ret
IL_009a:
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
ldnull
cgt.un
brfalse.s IL_00a7
ldc.i4.m1
ret
IL_00a7:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode(class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_1, !T V_2)
ldarg.0
ldnull
cgt.un
brfalse.s IL_005e
ldc.i4.0
stloc.0
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0054
ldarg.0
stloc.1
ldc.i4.1
stloc.0
ldc.i4 0x9e3779b9
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldarg.1
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ldloc.0
ldc.i4.6
shl
ldloc.0
ldc.i4.2
shr
add
add
add
stloc.0
ldc.i4 0x9e3779b9
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.2
ldarg.1
ldloc.2
box !T
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ldloc.0
ldc.i4.6
shl
ldloc.0
ldc.i4.2
shr
add
add
add
stloc.0
ldloc.0
ret
IL_0054:
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
ret
IL_005e:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericEqualityComparer()
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ret
}
.method public hidebysig virtual final instance bool Equals(object obj, class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, int32 V_1, int32 V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_4, !T V_5, !T V_6, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_7, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_8)
IL_0001:
ldarg.0
ldnull
cgt.un
brfalse IL_007f
ldarg.1
isinst class Microsoft.FSharp.Collections.FSharpList`1<!T>
stloc.0
ldloc.0
brfalse.s IL_007d
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.2
ldloc.1
ldloc.2
bne.un.s IL_007b
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0079
ldarg.0
stloc.3
ldloc.0
stloc.s V_4
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
ldloc.s V_4
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_6
ldarg.2
ldloc.s V_5
ldloc.s V_6
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IEqualityComparer, !!0, !!0)
brfalse.s IL_0077
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_7
ldloc.s V_4
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_8
ldloc.s V_7
ldloc.s V_8
ldarg.2
starg.s comp
starg.s obj
starg.s 0
br IL_0001
IL_0077:
ldc.i4.0
ret
IL_0079:
ldc.i4.1
ret
IL_007b:
ldc.i4.0
ret
IL_007d:
ldc.i4.0
ret
IL_007f:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(class Microsoft.FSharp.Collections.FSharpList`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, int32 V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, !T V_4, !T V_5)
IL_0001:
ldarg.0
ldnull
cgt.un
brfalse.s IL_0066
ldarg.1
ldnull
cgt.un
brfalse.s IL_0064
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.0
ldarg.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldloc.1
bne.un.s IL_0062
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0060
ldarg.0
stloc.2
ldarg.1
stloc.3
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
ldloc.s V_4
ldloc.s V_5
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityERIntrinsic<!T>(!!0, !!0)
brfalse.s IL_005e
ldloc.2
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
starg.s obj
starg.s 0
br.s IL_0001
IL_005e:
ldc.i4.0
ret
IL_0060:
ldc.i4.1
ret
IL_0062:
ldc.i4.0
ret
IL_0064:
ldc.i4.0
ret
IL_0066:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0)
ldarg.1
isinst class Microsoft.FSharp.Collections.FSharpList`1<!T>
stloc.0
ldloc.0
brfalse.s IL_0013
ldarg.0
ldloc.0
callvirt instance bool class Microsoft.FSharp.Collections.FSharpList`1<!T>::Equals(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
IL_0013:
ldc.i4.0
ret
}
.method public hidebysig specialname instance int32 get_Length() cil managed
{
ldc.i4.0
ldarg.0
call int32 Microsoft.FSharp.Collections.PrivateListHelpers::lengthAcc<!T>(int32, class Microsoft.FSharp.Collections.FSharpList`1<!!0>)
ret
}
.method public hidebysig virtual instance string ToString() cil managed
{
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2, !T V_3, !T V_4, !T V_5)
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse IL_01ab
ldarg.0
stloc.0
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse IL_0178
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.1
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse IL_0127
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.2
ldloc.2
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brtrue.s IL_00b8
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_5
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_4
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_00b8:
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_5
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_4
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; ... ]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_0127:
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_4
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_0178:
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_01ab:
ldstr "[]"
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!T>::GetEnumerator()
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::.ctor(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::.ctor(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
}
.method private hidebysig newslot specialname virtual instance int32 'System-Collections-Generic-IReadOnlyCollection`1-get_Count'() cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IReadOnlyCollection`1<!T>::get_Count()
ldc.i4.0
ldarg.0
call int32 Microsoft.FSharp.Collections.PrivateListHelpers::lengthAcc<!T>(int32, class Microsoft.FSharp.Collections.FSharpList`1<!!0>)
ret
}
.property instance int32 Length()
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.get instance int32 Microsoft.FSharp.Collections.FSharpList`1::get_Length()
}
}
.class private abstract auto ansi sealed Microsoft.FSharp.Collections.IEnumerator
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname mkSeq@133<TResult>
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerable`1<!TResult>,
[mscorlib]System.Collections.IEnumerable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>> f
.method public specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>> f) cil managed
{
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!TResult>::f
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!TResult>::GetEnumerator()
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!TResult>::f
ldnull
tail.
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>>::Invoke(!0)
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!TResult>::f
ldnull
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>>::Invoke(!0)
ret
}
}
.method assembly static !!a notStarted<a>() cil managed
{
ldstr "enumerationNotStarted"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerable`1<!!TResult> mkSeq<TResult>(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!TResult>> f) cil managed
{
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!!TResult>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>>)
ret
}
}
.class private auto ansi serializable beforefieldinit Microsoft.FSharp.Collections.ListDebugView`1<T>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.AbstractClassAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.AllowNullLiteralAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly bool 'value'
.method public specialname rtspecialname instance void .ctor(bool 'value') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.AllowNullLiteralAttribute::'value'
ret
}
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
ldc.i4.1
callvirt instance void Microsoft.FSharp.Core.AllowNullLiteralAttribute::.ctor(bool)
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.AutoOpenAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 05 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 01 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly string path
.method public specialname rtspecialname instance void .ctor(string path) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.AutoOpenAttribute::path
ret
}
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
ldstr ""
callvirt instance void Microsoft.FSharp.Core.AutoOpenAttribute::.ctor(string)
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationArgumentCountsAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 40 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.field assembly int32[] counts
.method public specialname rtspecialname instance void .ctor(int32[] counts) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld int32[] Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::counts
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationMappingAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.field assembly int32 variantNumber
.field assembly class [mscorlib]System.Type[] typeDefinitions
.field assembly valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags
.field assembly int32 sequenceNumber
.field assembly string resourceName
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags) cil managed
{
ldarg.0
ldarg.1
ldc.i4.0
ldc.i4.0
callvirt instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags, int32, int32)
ret
}
.method assembly specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags, int32 variantNumber, int32 sequenceNumber, string resourceName, class [mscorlib]System.Type[] typeDefinitions) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld valuetype Microsoft.FSharp.Core.SourceConstructFlags Microsoft.FSharp.Core.CompilationMappingAttribute::sourceConstructFlags
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.CompilationMappingAttribute::variantNumber
ldarg.0
ldarg.3
stfld int32 Microsoft.FSharp.Core.CompilationMappingAttribute::sequenceNumber
ldarg.0
ldarg.s resourceName
stfld string Microsoft.FSharp.Core.CompilationMappingAttribute::resourceName
ldarg.0
ldarg.s typeDefinitions
stfld class [mscorlib]System.Type[] Microsoft.FSharp.Core.CompilationMappingAttribute::typeDefinitions
ret
}
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags, int32 variantNumber, int32 sequenceNumber) cil managed
{
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldnull
ldnull
callvirt instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags, int32, int32, string, class [mscorlib]System.Type[])
ret
}
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags, int32 sequenceNumber) cil managed
{
ldarg.0
ldarg.1
ldc.i4.0
ldarg.2
callvirt instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags, int32, int32)
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationRepresentationAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.field assembly valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags 'flags'
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags 'flags') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Microsoft.FSharp.Core.CompilationRepresentationAttribute::'flags'
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationRepresentationFlags
extends [mscorlib]System.Enum
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.FlagsAttribute::.ctor() = ( 01 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags None = int32(0x00000000)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Static = int32(0x00000001)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Instance = int32(0x00000002)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags ModuleSuffix = int32(0x00000004)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags UseNullAsTrueValue = int32(0x00000008)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Event = int32(0x00000010)
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationSourceNameAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.field assembly string sourceName
.method public specialname rtspecialname instance void .ctor(string sourceName) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.CompilationSourceNameAttribute::sourceName
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompiledNameAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 DC 15 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.field assembly string compiledName
.method public specialname rtspecialname instance void .ctor(string compiledName) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.CompiledNameAttribute::compiledName
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilerMessageAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly int32 messageNumber
.field assembly string message
.field assembly bool isError
.field assembly bool isHidden
.method public specialname rtspecialname instance void .ctor(string message, int32 messageNumber) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.CompilerMessageAttribute::message
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.CompilerMessageAttribute::messageNumber
ldarg.0
ldc.i4.0
stfld bool Microsoft.FSharp.Core.CompilerMessageAttribute::isError
ldarg.0
ldc.i4.0
stfld bool Microsoft.FSharp.Core.CompilerMessageAttribute::isHidden
ret
}
.method public hidebysig specialname instance void set_IsHidden(bool v) cil managed
{
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.CompilerMessageAttribute::isHidden
ret
}
.property instance bool IsHidden()
{
.set instance void Microsoft.FSharp.Core.CompilerMessageAttribute::set_IsHidden(bool)
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.DefaultAugmentationAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.field assembly bool 'value'
.method public specialname rtspecialname instance void .ctor(bool 'value') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.DefaultAugmentationAttribute::'value'
ret
}
}
.class public auto ansi serializable sealed beforefieldinit Microsoft.FSharp.Core.FSharpRef`1<T>
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IStructuralComparable,
[mscorlib]System.IComparable,
class [mscorlib]System.IComparable`1<class Microsoft.FSharp.Core.FSharpRef`1<!T>>,
[mscorlib]System.Collections.IStructuralEquatable,
class [mscorlib]System.IEquatable`1<class Microsoft.FSharp.Core.FSharpRef`1<!T>>
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerDisplayAttribute::.ctor(string) = ( 01 00 0A 7B 63 6F 6E 74 65 6E 74 73 7D 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralComparisonAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralEqualityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompiledNameAttribute::.ctor(string) = ( 01 00 0B 46 53 68 61 72 70 52 65 66 60 31 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 02 00 00 00 00 00 )
.field public !T contents@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method public hidebysig specialname instance void set_contents(!T 'value') cil managed
{
ldarg.0
ldarg.1
stfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
ret
}
.method public specialname rtspecialname instance void .ctor(!T contents) cil managed
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ldarg.0
ldarg.1
stfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
ret
}
.method public hidebysig virtual final instance int32 CompareTo(class Microsoft.FSharp.Core.FSharpRef`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class [mscorlib]System.Collections.IComparer V_0, !T V_1, !T V_2)
ldarg.0
ldnull
cgt.un
brfalse.s IL_002e
ldarg.1
ldnull
cgt.un
brfalse.s IL_002c
call class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
stloc.0
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldarg.1
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.2
ldloc.0
ldloc.1
ldloc.2
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
ret
IL_002c:
ldc.i4.1
ret
IL_002e:
ldarg.1
ldnull
cgt.un
brfalse.s IL_0036
ldc.i4.m1
ret
IL_0036:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
tail.
callvirt instance int32 class Microsoft.FSharp.Core.FSharpRef`1<!T>::CompareTo(class Microsoft.FSharp.Core.FSharpRef`1<!0>)
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj, class [mscorlib]System.Collections.IComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<!T> V_0, !T V_1, !T V_2)
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
stloc.0
ldarg.0
ldnull
cgt.un
brfalse.s IL_0034
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
ldnull
cgt.un
brfalse.s IL_0032
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldloc.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.2
ldarg.2
ldloc.1
ldloc.2
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
ret
IL_0032:
ldc.i4.1
ret
IL_0034:
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
ldnull
cgt.un
brfalse.s IL_0041
ldc.i4.m1
ret
IL_0041:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode(class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, !T V_1)
ldarg.0
ldnull
cgt.un
brfalse.s IL_002d
ldc.i4.0
stloc.0
ldc.i4 0x9e3779b9
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldarg.1
ldloc.1
box !T
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ldloc.0
ldc.i4.6
shl
ldloc.0
ldc.i4.2
shr
add
add
add
stloc.0
ldloc.0
ret
IL_002d:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericEqualityComparer()
callvirt instance int32 class Microsoft.FSharp.Core.FSharpRef`1<!T>::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ret
}
.method public hidebysig virtual final instance bool Equals(object obj, class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<!T> V_0, !T V_1, !T V_2)
ldarg.0
ldnull
cgt.un
brfalse.s IL_002c
ldarg.1
isinst class Microsoft.FSharp.Core.FSharpRef`1<!T>
stloc.0
ldloc.0
brfalse.s IL_002a
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldloc.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.2
ldarg.2
ldloc.1
ldloc.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IEqualityComparer, !!0, !!0)
ret
IL_002a:
ldc.i4.0
ret
IL_002c:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(class Microsoft.FSharp.Core.FSharpRef`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (!T V_0, !T V_1)
ldarg.0
ldnull
cgt.un
brfalse.s IL_0027
ldarg.1
ldnull
cgt.un
brfalse.s IL_0025
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.0
ldarg.1
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldloc.0
ldloc.1
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityERIntrinsic<!T>(!!0, !!0)
ret
IL_0025:
ldc.i4.0
ret
IL_0027:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<!T> V_0)
ldarg.1
isinst class Microsoft.FSharp.Core.FSharpRef`1<!T>
stloc.0
ldloc.0
brfalse.s IL_0015
ldarg.0
ldloc.0
tail.
callvirt instance bool class Microsoft.FSharp.Core.FSharpRef`1<!T>::Equals(class Microsoft.FSharp.Core.FSharpRef`1<!0>)
ret
IL_0015:
ldc.i4.0
ret
}
.property instance !T contents()
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 00 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.FSharpRef`1::set_contents(!T)
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.NoComparisonAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 1C 14 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.NoEqualityAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 1C 14 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public abstract auto ansi sealed Microsoft.FSharp.Core.Operators
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.AutoOpenAttribute::.ctor() = ( 01 00 00 00 )
.class abstract auto ansi sealed nested public OperatorIntrinsics
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname RangeInt32@5421
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>,
[mscorlib]System.Collections.IEnumerator
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.field public int32 step
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.field public int32 m
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> state
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor(int32 n, int32 step, int32 m, class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> state) cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldarg.0
ldarg.3
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
ldarg.0
ldarg.s state
stfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>::get_Current()
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldnull
call int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::current@5249(class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldnull
call int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::current@5249(class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>, class Microsoft.FSharp.Core.Unit)
box [mscorlib]System.Int32
ret
}
.method private hidebysig newslot virtual final instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Started(bool)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Complete(bool)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Current(!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Started@
brtrue IL_0086
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.1
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Started(bool)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::n
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Current(!0)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
ble.s IL_0052
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
cgt
br.s IL_0054
IL_0052:
ldc.i4.0
IL_0054:
brfalse.s IL_005a
ldc.i4.1
br.s IL_007b
IL_005a:
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
bge.s IL_0079
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
clt
br.s IL_007b
IL_0079:
ldc.i4.0
IL_007b:
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Complete(bool)
br IL_011b
IL_0086:
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
add
stloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
ble.s IL_00b3
ldloc.0
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
cgt
br.s IL_00b5
IL_00b3:
ldc.i4.0
IL_00b5:
brfalse.s IL_00c6
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
cgt
ldc.i4.0
ceq
br.s IL_00c8
IL_00c6:
ldc.i4.0
IL_00c8:
brfalse.s IL_00ce
ldc.i4.1
br.s IL_00fd
IL_00ce:
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
bge.s IL_00e8
ldloc.0
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
clt
br.s IL_00ea
IL_00e8:
ldc.i4.0
IL_00ea:
brfalse.s IL_00fb
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
clt
ldc.i4.0
ceq
br.s IL_00fd
IL_00fb:
ldc.i4.0
IL_00fd:
brfalse.s IL_010e
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldloc.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Current(!0)
br.s IL_011b
IL_010e:
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.1
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Complete(bool)
IL_011b:
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Complete@
ldc.i4.0
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname 'RangeInt32@5421-1'
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>,
[mscorlib]System.Collections.IEnumerable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.field public int32 step
.field public int32 m
.method public specialname rtspecialname instance void .ctor(int32 n, int32 step, int32 m) cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::step
ldarg.0
ldarg.3
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::m
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>::GetEnumerator()
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::step
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::variableStepRangeEnumerator@5242(int32, int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::step
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::variableStepRangeEnumerator@5242(int32, int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname 'RangeInt32@5421-2'
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEnumerator,
class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.field public int32 m
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.FSharpRef`1<int32> 'value'
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor(int32 n, int32 m, class Microsoft.FSharp.Core.FSharpRef`1<int32> 'value') cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
ldarg.0
ldarg.3
stfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>::get_Current()
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<int32>::contents@
stloc.0
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
bge.s IL_001c
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::notStarted<int32>()
ret
IL_001c:
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
ble.s IL_002b
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::alreadyFinished<int32>()
ret
IL_002b:
ldloc.0
ret
}
.method private hidebysig newslot virtual final instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<int32>::contents@
stloc.0
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
bge.s IL_001e
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::notStarted<int32>()
br.s IL_0031
IL_001e:
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
ble.s IL_002f
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::alreadyFinished<int32>()
br.s IL_0031
IL_002f:
ldloc.0
IL_0031:
box [mscorlib]System.Int32
ret
}
.method private hidebysig newslot virtual final instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
ldc.i4.1
sub
call instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::set_contents(!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<int32>::contents@
stloc.0
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
bge.s IL_0026
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldloc.0
ldc.i4.1
add
call instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::set_contents(!0)
ldc.i4.1
ret
IL_0026:
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
bne.un.s IL_003f
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldloc.0
ldc.i4.1
add
call instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::set_contents(!0)
ldc.i4.0
ret
IL_003f:
ldc.i4.0
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname 'RangeInt32@5421-3'
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>,
[mscorlib]System.Collections.IEnumerable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.field public int32 m
.method public specialname rtspecialname instance void .ctor(int32 n, int32 m) cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::m
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>::GetEnumerator()
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::singleStepRangeEnumerator@5303(int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::singleStepRangeEnumerator@5303(int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit VariableStepIntegralRangeState`1<T>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 22 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.NoEqualityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.NoComparisonAttribute::.ctor() = ( 01 00 00 00 )
.field assembly bool Started@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field assembly bool Complete@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field assembly !T Current@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method assembly hidebysig specialname instance void set_Started(bool 'value') cil managed
{
ldarg.0
ldarg.1
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Started@
ret
}
.method assembly hidebysig specialname instance void set_Complete(bool 'value') cil managed
{
ldarg.0
ldarg.1
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Complete@
ret
}
.method assembly hidebysig specialname instance void set_Current(!T 'value') cil managed
{
ldarg.0
ldarg.1
stfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Current@
ret
}
.method assembly specialname rtspecialname instance void .ctor(bool started, bool complete, !T current) cil managed
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ldarg.0
ldarg.1
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Started@
ldarg.0
ldarg.2
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Complete@
ldarg.0
ldarg.3
stfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Current@
ret
}
.property instance bool Started()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 00 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1::set_Started(bool)
}
.property instance bool Complete()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 01 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1::set_Complete(bool)
}
.property instance !T Current()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 02 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1::set_Current(!T)
}
}
.method public static class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> RangeInt32(int32 start, int32 step, int32 stop) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 4C 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 66 6F 72 20 75 73 65 20 62 79 20 63
6F 6D 70 69 6C 65 64 20 46 23 20 63 6F 64 65 20
61 6E 64 20 73 68 6F 75 6C 64 20 6E 6F 74 20 62
65 20 75 73 65 64 20 64 69 72 65 63 74 6C 79 B4
04 00 00 01 00 54 02 08 49 73 48 69 64 64 65 6E
01 )
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (string V_0)
ldarg.1
ldc.i4.1
beq.s IL_0009
ldc.i4.1
br.s IL_000e
IL_0009:
ldarg.0
ldarg.2
cgt
IL_000e:
brfalse.s IL_0014
ldc.i4.1
br.s IL_001d
IL_0014:
ldarg.0
ldc.i4 0x80000000
ceq
IL_001d:
brfalse.s IL_0023
ldc.i4.1
br.s IL_002c
IL_0023:
ldarg.2
ldc.i4 0x7fffffff
ceq
IL_002c:
brfalse.s IL_004d
ldarg.1
brtrue.s IL_0043
ldstr "stepCannotBeZero"
stloc.0
ldloc.0
ldstr "step"
newobj instance void [mscorlib]System.ArgumentException::.ctor(string,
string)
throw
IL_0043:
ldarg.0
ldarg.1
ldarg.2
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::.ctor(int32,
int32,
int32)
ret
IL_004d:
ldarg.0
ldarg.2
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::.ctor(int32,
int32)
ret
}
.method assembly static !!a notStarted<a>() cil managed
{
ldstr "enumerationNotStarted"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static !!a alreadyFinished<a>() cil managed
{
ldstr "enumerationAlreadyFinished"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static int32 current@5249(class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> state, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Started@
brtrue.s IL_000f
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::notStarted<int32>()
ret
IL_000f:
ldarg.0
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Complete@
brfalse.s IL_001d
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::alreadyFinished<int32>()
ret
IL_001d:
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> variableStepRangeEnumerator@5242(int32 n, int32 step, int32 m, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> V_0)
ldc.i4.0
ldc.i4.0
ldc.i4.0
newobj instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::.ctor(bool, bool, !0)
stloc.0
ldarg.0
ldarg.1
ldarg.2
ldloc.0
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::.ctor(int32,
int32,
int32,
class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>)
ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> singleStepRangeEnumerator@5303(int32 n, int32 m, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<int32> V_0)
ldarg.0
ldc.i4.1
sub
newobj instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::.ctor(!0)
stloc.0
ldarg.0
ldarg.1
ldloc.0
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::.ctor(int32,
int32,
class Microsoft.FSharp.Core.FSharpRef`1<int32>)
ret
}
}
.method public static !!T Exit<T>(int32 exitcode) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationSourceNameAttribute::.ctor(string) = ( 01 00 04 65 78 69 74 00 00 )
ldarg.0
call void [mscorlib]System.Environment::Exit(int32)
ldstr "System.Environment.Exit did not exit!"
newobj instance void [mscorlib]System.Exception::.ctor(string)
throw
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.RequireQualifiedAccessAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.SealedAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly bool 'value'
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
ldc.i4.1
callvirt instance void Microsoft.FSharp.Core.SealedAttribute::.ctor(bool)
ret
}
.method public specialname rtspecialname instance void .ctor(bool 'value') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.SealedAttribute::'value'
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.SourceConstructFlags
extends [mscorlib]System.Enum
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags None = int32(0x00000000)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags SumType = int32(0x00000001)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags RecordType = int32(0x00000002)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags ObjectType = int32(0x00000003)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Field = int32(0x00000004)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Exception = int32(0x00000005)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Closure = int32(0x00000006)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Module = int32(0x00000007)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags UnionCase = int32(0x00000008)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Value = int32(0x00000009)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags KindMask = int32(0x0000001F)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags NonPublicRepresentation = int32(0x00000020)
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.StructuralComparisonAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.StructuralEqualityAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.Unit
extends [mscorlib]System.Object
implements [mscorlib]System.IComparable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method public hidebysig virtual instance int32 GetHashCode() cil managed
{
ldc.i4.0
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed
{
ldarg.1
brfalse.s IL_0010
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<class Microsoft.FSharp.Core.Unit>(object)
brtrue.s IL_000e
ldc.i4.0
ret
IL_000e:
ldc.i4.1
ret
IL_0010:
ldc.i4.1
ret
}
.method private hidebysig newslot virtual instance int32 'System-IComparable-CompareTo'(object _obj) cil managed
{
.override [mscorlib]System.IComparable::CompareTo
ldc.i4.0
ret
}
}
| /*
This test is derived from below F#.
Comment out the two failing tests.
fsharpc --standalone --optimize- fsharp.fs
monolinker fsharp.exe to trim a little
change resource-using code to use constant strings
(**************************************
F# tests for validating tail calls
are correctly generated by the
compiler and taken by the .NET
runtime.
Tested and passes when ran against
F# v1.9.6.16
Run this script via:
Chris Smith
[email protected]
**************************************)
open System
// --------------------------------------------------
// Utilities
// --------------------------------------------------
// Check an expression against the result. If they do not
// match the script immediately terminates.
let RunTest msg actual expected =
if actual = expected then
Console.WriteLine(msg + ": YES")
else
Console.WriteLine("\n***** " + msg + ": FAIL\n")
exit 1
let HugeInt = 10000000
// --------------------------------------------------
// Tail Call Tests
// --------------------------------------------------
// Not a tail call - test that this overflows the stack
let rec nonTailCall x =
if x = 0
then 0
else 1 + nonTailCall (x - 1)
// Simple tail call, the compiler will convert to while loop
let rec simpleTail1 x acc =
if x = 0
then acc
else simpleTail1 (x - 1) (acc + 1)
RunTest "simpleTail1" (simpleTail1 HugeInt 0) HugeInt
// Another simple example
let rec simpleTail2 acc = function
|0 -> acc
|i -> simpleTail2 (acc+1) (i-1)
RunTest "simpleTail2" (simpleTail2 HugeInt 0) HugeInt
// Mutually recurisve tail call, compiler will emit tail instruction
let rec mutualTail1IsOdd x =
match x with
| 1 -> true
| n -> mutualTail1IsEven (x - 1)
and mutualTail1IsEven x =
match x with
| 1 -> false
| 0 -> true
| n -> mutualTail1IsOdd (x - 1)
RunTest "mutualTail1IsOdd" (mutualTail1IsOdd HugeInt) false
RunTest "mutualTail1IsEven" (mutualTail1IsEven HugeInt) true
// Interesting parameter types (large stack frame)
// Making mutually recurisve to ensure the .tail call
let rec mutualTail2IsOdd a b c d e f g h i x =
match x with
| 1 -> (true, a, b, c)
| n -> mutualTail2IsEven a b c d e f g h i 0L 0L 0L 0L (x - 1)
and mutualTail2IsEven a b c d e f g h i j k l m x =
match x with
| 1 -> (false, a, b, c)
| 0 -> (true, a, b, c)
| n -> mutualTail2IsOdd a b c d e f g h i (x - 1)
// These two tests fail on Mono and probably CoreCLR.
RunTest "mutualTail2IsOdd" (mutualTail2IsOdd 0.0M [| 1 .. 10 |] "str" 0L 0L 0L 0L 0L 0L HugeInt) (false, 0.0M, [| 1 .. 10 |], "str")
RunTest "mutualTail2IsEven" (mutualTail2IsEven 0.0M [| 1 .. 10 |] "str" 0L 0L 0L 0L 0L 0L 0L 0L 0L 0L HugeInt) (true, 0.0M, [| 1 .. 10 |], "str")
// Generic tail call within a type
type TailCallLoop<'T1>() =
let rec f x = if x = 0 then 1 else f (x - 1)
let v5 = f 10000000
member x.Result =
f 10000000 + v5
RunTest "TailCallLoop<int>" ((new TailCallLoop<int>()).Result) 2
RunTest "TailCallLoop<DateTime>" ((new TailCallLoop<DateTime>()).Result) 2
// Generic tail call within a type
type TailCallLoopGenericClassAndMethod<'T1>(resultA: 'T1) =
member this.Method1<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method2 (x - 1, resultB)
member this.Method2<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method1 (x - 1, resultB)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<byte>(10000000, 4uy)) (3uy, 4uy)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<int>(10000000, 4)) (3uy, 4)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<DateTime>(10000000, DateTime.MinValue)) (3uy, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<byte>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<byte>(3uy)).Method1<string>(10000000, "abc")) (3uy, "abc")
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<byte>(10000000, 4uy)) (3, 4uy)
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<int>(10000000, 4)) (3, 4)
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<DateTime>(10000000, DateTime.MinValue)) (3, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<int>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<int>(3)).Method1<string>(10000000, "abc")) (3, "abc")
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<byte>(10000000, 4uy)) (DateTime.MaxValue, 4uy)
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<int>(10000000, 4)) (DateTime.MaxValue, 4)
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<DateTime>(10000000, DateTime.MinValue)) (DateTime.MaxValue, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<DateTime>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<DateTime>(DateTime.MaxValue)).Method1<string>(10000000, "abc")) (DateTime.MaxValue, "abc")
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<byte>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<byte>(10000000, 4uy)) ("qq", 4uy)
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<int>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<int>(10000000, 4)) ("qq", 4)
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<DateTime>(10000000, DateTime.MinValue)) ("qq", DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethod<string>.Method1<string>" ((new TailCallLoopGenericClassAndMethod<string>("qq")).Method1<string>(10000000, "abc")) ("qq", "abc")
// Generic tail call within a type via virtual method in abstract class hierarchy
[<AbstractClass>]
type AbstractTailCallLoopGenericClassAndMethod<'T1>(resultA: 'T1) =
abstract Method1<'T2> : int * 'T2 -> ('T1 * 'T2)
abstract Method2<'T2> : int * 'T2 -> ('T1 * 'T2)
default this.Method2<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method1 (x - 1, resultB)
type TailCallLoopGenericClassAndMethodAbstractClass<'T1>(resultA: 'T1) =
inherit AbstractTailCallLoopGenericClassAndMethod<'T1>(resultA)
override this.Method1<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else this.Method2 (x - 1, resultB)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<byte>(10000000, 4uy)) (3uy, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<int>(10000000, 4)) (3uy, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<DateTime>(10000000, DateTime.MinValue)) (3uy, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<byte>(3uy)).Method1<string>(10000000, "abc")) (3uy, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<byte>(10000000, 4uy)) (3, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<int>(10000000, 4)) (3, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<DateTime>(10000000, DateTime.MinValue)) (3, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<int>(3)).Method1<string>(10000000, "abc")) (3, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<byte>(10000000, 4uy)) (DateTime.MaxValue, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<int>(10000000, 4)) (DateTime.MaxValue, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<DateTime>(10000000, DateTime.MinValue)) (DateTime.MaxValue, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<DateTime>(DateTime.MaxValue)).Method1<string>(10000000, "abc")) (DateTime.MaxValue, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<byte>(10000000, 4uy)) ("qq", 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<int>(10000000, 4)) ("qq", 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<DateTime>(10000000, DateTime.MinValue)) ("qq", DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>" ((new TailCallLoopGenericClassAndMethodAbstractClass<string>("qq")).Method1<string>(10000000, "abc")) ("qq", "abc")
// Generic tail call within a type via interface
type InterfaceTailCallLoopGenericInterface<'T1> =
interface
abstract Method1<'T2> : int * 'T2 -> ('T1 * 'T2)
abstract Method2<'T2> : int * 'T2 -> ('T1 * 'T2)
end
type TailCallLoopImplementGenericInterface<'T1>(resultA: 'T1) =
interface InterfaceTailCallLoopGenericInterface<'T1> with
member this.Method1<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else (this :> InterfaceTailCallLoopGenericInterface<'T1>).Method2 (x - 1, resultB)
member this.Method2<'T2>(x:int, resultB: 'T2) =
if x = 0 then (resultA, resultB) else (this :> InterfaceTailCallLoopGenericInterface<'T1>).Method1 (x - 1, resultB)
let create<'T> result = TailCallLoopImplementGenericInterface<'T>(result) :> InterfaceTailCallLoopGenericInterface<'T>
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>" ((create<byte>(3uy)).Method1<byte>(10000000, 4uy)) (3uy, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>" ((create<byte>(3uy)).Method1<int>(10000000, 4)) (3uy, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>" ((create<byte>(3uy)).Method1<DateTime>(10000000, DateTime.MinValue)) (3uy, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>" ((create<byte>(3uy)).Method1<string>(10000000, "abc")) (3uy, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>" ((create<int>(3)).Method1<byte>(10000000, 4uy)) (3, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>" ((create<int>(3)).Method1<int>(10000000, 4)) (3, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>" ((create<int>(3)).Method1<DateTime>(10000000, DateTime.MinValue)) (3, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>" ((create<int>(3)).Method1<string>(10000000, "abc")) (3, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>" ((create<DateTime>(DateTime.MaxValue)).Method1<byte>(10000000, 4uy)) (DateTime.MaxValue, 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>" ((create<DateTime>(DateTime.MaxValue)).Method1<int>(10000000, 4)) (DateTime.MaxValue, 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>" ((create<DateTime>(DateTime.MaxValue)).Method1<DateTime>(10000000, DateTime.MinValue)) (DateTime.MaxValue, DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>" ((create<DateTime>(DateTime.MaxValue)).Method1<string>(10000000, "abc")) (DateTime.MaxValue, "abc")
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>" ((create<string>("qq")).Method1<byte>(10000000, 4uy)) ("qq", 4uy)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>" ((create<string>("qq")).Method1<int>(10000000, 4)) ("qq", 4)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>" ((create<string>("qq")).Method1<DateTime>(10000000, DateTime.MinValue)) ("qq", DateTime.MinValue)
RunTest "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>" ((create<string>("qq")).Method1<string>(10000000, "abc")) ("qq", "abc")
// Generic tail call within a type
type TailCallLoopGenericClass<'T1>(resultA: 'T1) =
member this.Method1(x:int) =
if x = 0 then resultA else this.Method2 (x - 1)
member this.Method2(x:int) =
if x = 0 then resultA else this.Method1 (x - 1)
member this.Result =
this.Method1 10000000
RunTest "TailCallLoopGenericClass<int>" ((new TailCallLoopGenericClass<int>(3)).Result) 3
RunTest "TailCallLoopGenericClass<DateTime>" ((new TailCallLoopGenericClass<DateTime>(DateTime.MinValue)).Result) DateTime.MinValue
RunTest "TailCallLoopGenericClass<string>" ((new TailCallLoopGenericClass<string>("abc")).Result) "abc"
// Generic tail call calling sizeof within a type
type StaticTailCallLoop<'T1>() =
static let rec f x = if x = 0 then sizeof<'T1> else f (x - 1)
static let v5 = f HugeInt
static member Result =
f HugeInt + v5
RunTest "StaticTailCallLoop<int>" (StaticTailCallLoop<int>.Result) 8
RunTest "StaticTailCallLoop<DateTime>" (StaticTailCallLoop<DateTime>.Result) 16
// --------------------------------------------------
// Some regression tests for F# related to tail calls
// --------------------------------------------------
do RunTest "Seq.filter-length1" ({ 1 .. 1000000 } |> Seq.filter (fun n -> n <> 1) |> Seq.length) 999999;;
do RunTest "Seq.filter-length2" ({ 1 .. 1000000 } |> Seq.filter (fun n -> n = 1) |> Seq.length) 1;;
do RunTest "Seq.filter-length3" ({ 1 .. 1000000 } |> Seq.filter (fun n -> n % 2 = 0) |> Seq.length) 500000;;
exit 0
*/
.assembly extern mscorlib { }
.assembly 'fsharp-shallowtail' { }
.class private abstract auto ansi sealed '<StartupCode$fsharp>'.$Fsharp
extends [mscorlib]System.Object
{
.method public static void main@() cil managed
{
.entrypoint
ldstr "simpleTail1"
call int32 Fsharp::get_HugeInt()
ldc.i4.0
call int32 Fsharp::simpleTail1(int32, int32)
call int32 Fsharp::get_HugeInt()
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "simpleTail2"
call int32 Fsharp::get_HugeInt()
ldc.i4.0
call int32 Fsharp::simpleTail2(int32, int32)
call int32 Fsharp::get_HugeInt()
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "mutualTail1IsOdd"
call int32 Fsharp::get_HugeInt()
call bool Fsharp::mutualTail1IsOdd(int32)
ldc.i4.0
call void Fsharp::RunTest<bool>(string, !!0, !!0)
ldstr "mutualTail1IsEven"
call int32 Fsharp::get_HugeInt()
call bool Fsharp::mutualTail1IsEven(int32)
ldc.i4.1
call void Fsharp::RunTest<bool>(string, !!0, !!0)
ldstr "TailCallLoop<int>"
newobj instance void class Fsharp/TailCallLoop`1<int32>::.ctor()
callvirt instance int32 class Fsharp/TailCallLoop`1<int32>::get_Result()
ldc.i4.2
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "TailCallLoop<DateTime>"
newobj instance void class Fsharp/TailCallLoop`1<valuetype [mscorlib]System.DateTime>::.ctor()
callvirt instance int32 class Fsharp/TailCallLoop`1<valuetype [mscorlib]System.DateTime>::get_Result()
ldc.i4.2
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<byte>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<uint8>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<uint8,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<int>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<int32>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<int32,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<byte>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<uint8>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<int>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<int32>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<DateTime>.Method1<string>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<string>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<byte>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<uint8>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<int>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<int32>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<DateTime>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldstr "qq"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethod<string>.Method1<string>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<string>::Method1<string>(int32, !!0)
ldstr "qq"
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<string,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<uint8>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<uint8>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<uint8,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<int32>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<int32>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<int32,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<uint8>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<int32>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<valuetype [mscorlib]System.DateTime>::Method1<string>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<uint8>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<int32>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldstr "qq"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>"
ldstr "qq"
newobj instance void class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<string>::.ctor(!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<string>::Method1<string>(int32, !!0)
ldstr "qq"
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<string,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<byte>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<int>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<uint8,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<DateTime>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<byte>.Method1<string>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<uint8>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<uint8>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<uint8,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<uint8,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<byte>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<uint8>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<int>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<int32>(int32, !!0)
ldc.i4.3
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<int32,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<DateTime>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldc.i4.3
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<int>.Method1<string>"
ldc.i4.3
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<int32>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<int32>::Method1<string>(int32, !!0)
ldc.i4.3
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<int32,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<int32,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<byte>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<uint8>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<int>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<int32>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DateTime>.Method1<string>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<valuetype [mscorlib]System.DateTime>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<valuetype [mscorlib]System.DateTime>::Method1<string>(int32, !!0)
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MaxValue
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<valuetype [mscorlib]System.DateTime,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<byte>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<uint8>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,uint8>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,uint8>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<int>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldc.i4.4
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<int32>(int32, !!0)
ldstr "qq"
ldc.i4.4
newobj instance void class [mscorlib]System.Tuple`2<string,int32>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,int32>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<string>.Method1<DateTime>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<valuetype [mscorlib]System.DateTime>(int32, !!0)
ldstr "qq"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,valuetype [mscorlib]System.DateTime>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClassAndMethodAbstractClass<DatstringeTime>.Method1<string>"
ldstr "qq"
call class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!0> Fsharp::create<string>(!!0)
call int32 Fsharp::get_HugeInt()
ldstr "abc"
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<string>::Method1<string>(int32, !!0)
ldstr "qq"
ldstr "abc"
newobj instance void class [mscorlib]System.Tuple`2<string,string>::.ctor(!0, !1)
call void Fsharp::RunTest<class [mscorlib]System.Tuple`2<string,string>>(string, !!0, !!0)
ldstr "TailCallLoopGenericClass<int>"
ldc.i4.3
newobj instance void class Fsharp/TailCallLoopGenericClass`1<int32>::.ctor(!0)
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<int32>::get_Result()
ldc.i4.3
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "TailCallLoopGenericClass<DateTime>"
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
newobj instance void class Fsharp/TailCallLoopGenericClass`1<valuetype [mscorlib]System.DateTime>::.ctor(!0)
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<valuetype [mscorlib]System.DateTime>::get_Result()
ldsfld valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::MinValue
call void Fsharp::RunTest<valuetype [mscorlib]System.DateTime>(string, !!0, !!0)
ldstr "TailCallLoopGenericClass<string>"
ldstr "abc"
newobj instance void class Fsharp/TailCallLoopGenericClass`1<string>::.ctor(!0)
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<string>::get_Result()
ldstr "abc"
call void Fsharp::RunTest<string>(string, !!0, !!0)
ldstr "StaticTailCallLoop<int>"
call int32 class Fsharp/StaticTailCallLoop`1<int32>::get_Result()
ldc.i4.8
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "StaticTailCallLoop<DateTime>"
call int32 class Fsharp/StaticTailCallLoop`1<valuetype [mscorlib]System.DateTime>::get_Result()
ldc.i4.s 16
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "Seq.filter-length1"
newobj instance void Fsharp/clo@223::.ctor()
ldc.i4.1
ldc.i4.1
ldc.i4 0xf4240
call class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::RangeInt32(int32, int32, int32)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.SeqModule::Filter<int32>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
call int32 Microsoft.FSharp.Collections.SeqModule::Length<int32>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ldc.i4 0xf423f
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "Seq.filter-length2"
newobj instance void Fsharp/'clo@224-1'::.ctor()
ldc.i4.1
ldc.i4.1
ldc.i4 0xf4240
call class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::RangeInt32(int32, int32, int32)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.SeqModule::Filter<int32>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
call int32 Microsoft.FSharp.Collections.SeqModule::Length<int32>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ldc.i4.1
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldstr "Seq.filter-length3"
newobj instance void Fsharp/'clo@225-2'::.ctor()
ldc.i4.1
ldc.i4.1
ldc.i4 0xf4240
call class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::RangeInt32(int32, int32, int32)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.SeqModule::Filter<int32>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
call int32 Microsoft.FSharp.Collections.SeqModule::Length<int32>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ldc.i4 0x7a120
call void Fsharp::RunTest<int32>(string, !!0, !!0)
ldc.i4.0
call !!0 Microsoft.FSharp.Core.Operators::Exit<class Microsoft.FSharp.Core.Unit>(int32)
pop
ret
}
}
.class private abstract auto ansi sealed '<StartupCode$FSharp-Core>'.'$Prim-types'
extends [mscorlib]System.Object
{
.field static assembly initonly string AddressOpNotFirstClassString@656
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly string NoNegateMinValueString@657
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly string InputSequenceEmptyString@659
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly string InputArrayEmptyString@661
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.field static assembly initonly string InputMustBeNonNegativeString@663
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 49 54 68 69 73 20 76 61 6C 75 65 20 69 73
20 66 6F 72 20 75 73 65 20 62 79 20 63 6F 6D 70
69 6C 65 64 20 46 23 20 63 6F 64 65 20 61 6E 64
20 73 68 6F 75 6C 64 20 6E 6F 74 20 62 65 20 75
73 65 64 20 64 69 72 65 63 74 6C 79 B4 04 00 00
01 00 54 02 08 49 73 48 69 64 64 65 6E 01 )
.field static assembly initonly class [mscorlib]System.Exception NaNException@951
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer fsComparerPER@1179
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer fsComparerER@1182
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer fsEqualityComparerNoHashingPER@1654
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer fsEqualityComparerNoHashingER@1661
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER fsEqualityComparerUnlimitedHashingER@1807
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER fsEqualityComparerUnlimitedHashingPER@1810
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IComparer GenericComparer@2195
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer GenericEqualityComparer@2196
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.IEqualityComparer GenericEqualityERComparer@2197
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool> BoolIEquality@2220
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char> CharIEquality@2221
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string> StringIEquality@2222
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8> SByteIEquality@2223
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16> Int16IEquality@2224
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32> Int32IEquality@2225
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64> Int64IEquality@2226
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int> IntPtrIEquality@2227
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8> ByteIEquality@2228
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16> UInt16IEquality@2229
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32> UInt32IEquality@2230
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64> UInt64IEquality@2231
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint> UIntPtrIEquality@2232
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64> FloatIEquality@2233
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32> Float32IEquality@2234
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal> DecimalIEquality@2235
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<char> CharComparer@2299
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<string> StringComparer@2300
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int8> SByteComparer@2301
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int16> Int16Comparer@2302
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int32> Int32Comparer@2303
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<int64> Int64Comparer@2304
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<native int> IntPtrComparer@2305
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint8> ByteComparer@2306
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint16> UInt16Comparer@2307
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint32> UInt32Comparer@2308
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<uint64> UInt64Comparer@2309
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<native uint> UIntPtrComparer@2310
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<float64> FloatComparer@2311
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<float32> Float32Comparer@2312
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field static assembly initonly class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal> DecimalComparer@2313
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method private specialname rtspecialname static void .cctor() cil managed
{
ldstr "addressOpNotFirstClass"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::AddressOpNotFirstClassString@656
ldstr "noNegateMinValue"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::NoNegateMinValueString@657
ldstr "inputSequenceEmpty"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::InputSequenceEmptyString@659
ldstr "arrayWasEmpty"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::InputArrayEmptyString@661
ldstr "inputMustBeNonNegative"
stsfld string '<StartupCode$FSharp-Core>'.'$Prim-types'::InputMustBeNonNegativeString@663
newobj instance void [mscorlib]System.Exception::.ctor()
stsfld class [mscorlib]System.Exception '<StartupCode$FSharp-Core>'.'$Prim-types'::NaNException@951
ldc.i4.1
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::.ctor(bool)
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsComparerPER@1179
ldc.i4.0
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::.ctor(bool)
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsComparerER@1182
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/fsEqualityComparerNoHashingPER@1655::.ctor()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingPER@1654
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/fsEqualityComparerNoHashingER@1662::.ctor()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingER@1661
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER::.ctor()
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingER@1807
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER::.ctor()
stsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingPER@1810
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsComparerER()
stsfld class [mscorlib]System.Collections.IComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericComparer@2195
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingPER()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericEqualityComparer@2196
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingER()
stsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericEqualityERComparer@2197
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/BoolIEquality@2220::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool> '<StartupCode$FSharp-Core>'.'$Prim-types'::BoolIEquality@2220
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/CharIEquality@2221::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char> '<StartupCode$FSharp-Core>'.'$Prim-types'::CharIEquality@2221
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/StringIEquality@2222::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string> '<StartupCode$FSharp-Core>'.'$Prim-types'::StringIEquality@2222
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/SByteIEquality@2223::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8> '<StartupCode$FSharp-Core>'.'$Prim-types'::SByteIEquality@2223
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int16IEquality@2224::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int16IEquality@2224
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int32IEquality@2225::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int32IEquality@2225
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int64IEquality@2226::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int64IEquality@2226
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/IntPtrIEquality@2227::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int> '<StartupCode$FSharp-Core>'.'$Prim-types'::IntPtrIEquality@2227
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/ByteIEquality@2228::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8> '<StartupCode$FSharp-Core>'.'$Prim-types'::ByteIEquality@2228
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt16IEquality@2229::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt16IEquality@2229
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt32IEquality@2230::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt32IEquality@2230
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt64IEquality@2231::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt64IEquality@2231
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UIntPtrIEquality@2232::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint> '<StartupCode$FSharp-Core>'.'$Prim-types'::UIntPtrIEquality@2232
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/FloatIEquality@2233::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64> '<StartupCode$FSharp-Core>'.'$Prim-types'::FloatIEquality@2233
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Float32IEquality@2234::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Float32IEquality@2234
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/DecimalIEquality@2235::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal> '<StartupCode$FSharp-Core>'.'$Prim-types'::DecimalIEquality@2235
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/CharComparer@2299::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<char> '<StartupCode$FSharp-Core>'.'$Prim-types'::CharComparer@2299
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/StringComparer@2300::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<string> '<StartupCode$FSharp-Core>'.'$Prim-types'::StringComparer@2300
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/SByteComparer@2301::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int8> '<StartupCode$FSharp-Core>'.'$Prim-types'::SByteComparer@2301
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int16Comparer@2302::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int16> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int16Comparer@2302
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int32Comparer@2303::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int32Comparer@2303
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Int64Comparer@2304::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<int64> '<StartupCode$FSharp-Core>'.'$Prim-types'::Int64Comparer@2304
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/IntPtrComparer@2305::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<native int> '<StartupCode$FSharp-Core>'.'$Prim-types'::IntPtrComparer@2305
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/ByteComparer@2306::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint8> '<StartupCode$FSharp-Core>'.'$Prim-types'::ByteComparer@2306
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt16Comparer@2307::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint16> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt16Comparer@2307
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt32Comparer@2308::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint32> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt32Comparer@2308
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UInt64Comparer@2309::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<uint64> '<StartupCode$FSharp-Core>'.'$Prim-types'::UInt64Comparer@2309
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/UIntPtrComparer@2310::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<native uint> '<StartupCode$FSharp-Core>'.'$Prim-types'::UIntPtrComparer@2310
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/FloatComparer@2311::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<float64> '<StartupCode$FSharp-Core>'.'$Prim-types'::FloatComparer@2311
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/Float32Comparer@2312::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<float32> '<StartupCode$FSharp-Core>'.'$Prim-types'::Float32Comparer@2312
newobj instance void Microsoft.FSharp.Core.LanguagePrimitives/DecimalComparer@2313::.ctor()
stsfld class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal> '<StartupCode$FSharp-Core>'.'$Prim-types'::DecimalComparer@2313
ret
}
}
.class public abstract auto ansi sealed Fsharp
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class abstract auto ansi serializable nested public AbstractTailCallLoopGenericClassAndMethod`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.AbstractClassAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public hidebysig abstract virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 A_1, !!T2 A_2) cil managed
{
}
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::resultA
ret
}
.method public hidebysig virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method2<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::Method1<!!0>(int32, !!0)
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit clo@223
extends class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>
{
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>::.ctor()
ret
}
.method public strict virtual instance bool Invoke(int32 n) cil managed
{
ldarg.1
ldc.i4.1
ceq
ldc.i4.0
ceq
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit 'clo@224-1'
extends class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>
{
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>::.ctor()
ret
}
.method public strict virtual instance bool Invoke(int32 n) cil managed
{
ldarg.1
ldc.i4.1
ceq
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit 'clo@225-2'
extends class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>
{
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<int32,bool>::.ctor()
ret
}
.method public strict virtual instance bool Invoke(int32 n) cil managed
{
ldarg.1
ldc.i4.2
rem
ldc.i4.0
ceq
ret
}
}
.class interface abstract auto ansi serializable nested public InterfaceTailCallLoopGenericInterface`1<T1>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public hidebysig abstract virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 A_1, !!T2 A_2) cil managed
{
}
.method public hidebysig abstract virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method2<T2>(int32 A_1, !!T2 A_2) cil managed
{
}
}
.class auto ansi serializable nested public StaticTailCallLoop`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field static assembly int32 v5
.field static assembly int32 init@211
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private specialname rtspecialname static void .cctor() cil managed
{
call int32 Fsharp::get_HugeInt()
call int32 class Fsharp/StaticTailCallLoop`1<!T1>::f(int32)
stsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::v5
ldc.i4.2
volatile.
stsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::init@211
ret
}
.method public specialname static int32 get_Result() cil managed
{
call int32 Fsharp::get_HugeInt()
call int32 class Fsharp/StaticTailCallLoop`1<!T1>::f(int32)
volatile.
ldsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::init@211
ldc.i4.2
bge.s IL_0016
br.s IL_0018
IL_0016:
br.s IL_001f
IL_0018:
call void Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::FailStaticInit()
br.s IL_001f
IL_001f:
ldsfld int32 class Fsharp/StaticTailCallLoop`1<!T1>::v5
add
ret
}
.method assembly static int32 f(int32 x) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
IL_0000:
ldarg.0
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_000e
IL_0007:
sizeof !T1
ret
IL_000e:
ldarg.0
ldc.i4.1
sub
starg.s x
br.s IL_0000
}
.property int32 Result()
{
.get int32 Fsharp/StaticTailCallLoop`1::get_Result()
}
}
.class auto ansi serializable nested public TailCallLoop`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly int32 v5
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.0
call int32 Fsharp::get_HugeInt()
callvirt instance int32 class Fsharp/TailCallLoop`1<!T1>::f(int32)
stfld int32 class Fsharp/TailCallLoop`1<!T1>::v5
ret
}
.method public hidebysig specialname instance int32 get_Result() cil managed
{
ldarg.0
call int32 Fsharp::get_HugeInt()
callvirt instance int32 class Fsharp/TailCallLoop`1<!T1>::f(int32)
ldarg.0
ldfld int32 class Fsharp/TailCallLoop`1<!T1>::v5
add
ret
}
.method assembly hidebysig instance int32 f(int32 x) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Fsharp/TailCallLoop`1<!T1> V_0, int32 V_1)
IL_0000:
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0009
IL_0007:
ldc.i4.1
ret
IL_0009:
ldarg.0
stloc.0
ldarg.1
ldc.i4.1
sub
stloc.1
ldloc.0
ldloc.1
starg.s x
starg.s 0
br.s IL_0000
}
.property instance int32 Result()
{
.get instance int32 Fsharp/TailCallLoop`1::get_Result()
}
}
.class auto ansi serializable nested public TailCallLoopGenericClass`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::resultA
ret
}
.method public hidebysig instance !T1 Method1(int32 x) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_000e
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::resultA
ret
IL_000e:
ldarg.0
ldarg.1
ldc.i4.1
sub
tail.
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::Method2(int32)
ret
}
.method public hidebysig instance !T1 Method2(int32 x) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_000e
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::resultA
ret
IL_000e:
ldarg.0
ldarg.1
ldc.i4.1
sub
tail.
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::Method1(int32)
ret
}
.method public hidebysig specialname instance !T1 get_Result() cil managed
{
ldarg.0
call int32 Fsharp::get_HugeInt()
tail.
callvirt instance !0 class Fsharp/TailCallLoopGenericClass`1<!T1>::Method1(int32)
ret
}
.property instance !T1 Result()
{
.get instance !T1 Fsharp/TailCallLoopGenericClass`1::get_Result()
}
}
.class auto ansi serializable nested public TailCallLoopGenericClassAndMethod`1<T1>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::resultA
ret
}
.method public hidebysig instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::Method2<!!0>(int32, !!0)
ret
}
.method public hidebysig instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method2<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/TailCallLoopGenericClassAndMethod`1<!T1>::Method1<!!0>(int32, !!0)
ret
}
}
.class auto ansi serializable nested public TailCallLoopGenericClassAndMethodAbstractClass`1<T1>
extends class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
ldarg.1
callvirt instance void class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::.ctor(!0)
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<!T1>::resultA
ret
}
.method public hidebysig virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> Method1<T2>(int32 x, !!T2 resultB) cil managed
{
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopGenericClassAndMethodAbstractClass`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/AbstractTailCallLoopGenericClassAndMethod`1<!T1>::Method2<!!0>(int32, !!0)
ret
}
}
.class auto ansi serializable nested public TailCallLoopImplementGenericInterface`1<T1>
extends [mscorlib]System.Object
implements class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly !T1 resultA
.method public specialname rtspecialname instance void .ctor(!T1 resultA) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld !0 class Fsharp/TailCallLoopImplementGenericInterface`1<!T1>::resultA
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> 'Fsharp-InterfaceTailCallLoopGenericInterface`1-Method1'<T2>(int32 x, !!T2 resultB) cil managed
{
.override method instance class [mscorlib]System.Tuple`2<!0,!!T2> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method1<[1]>(int32, !!T2)
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopImplementGenericInterface`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method2<!!0>(int32, !!0)
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Tuple`2<!T1,!!T2> 'Fsharp-InterfaceTailCallLoopGenericInterface`1-Method2'<T2>(int32 x, !!T2 resultB) cil managed
{
.override method instance class [mscorlib]System.Tuple`2<!0,!!T2> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method2<[1]>(int32, !!T2)
ldarg.1
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0014
IL_0007:
ldarg.0
ldfld !0 class Fsharp/TailCallLoopImplementGenericInterface`1<!T1>::resultA
ldarg.2
newobj instance void class [mscorlib]System.Tuple`2<!T1,!!T2>::.ctor(!0, !1)
ret
IL_0014:
ldarg.0
ldarg.1
ldc.i4.1
sub
ldarg.2
tail.
callvirt instance class [mscorlib]System.Tuple`2<!0,!!0> class Fsharp/InterfaceTailCallLoopGenericInterface`1<!T1>::Method1<!!0>(int32, !!0)
ret
}
}
.method public specialname static int32 get_HugeInt() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldc.i4 0x80
ret
}
.method public static int32 simpleTail1(int32 x, int32 acc) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
IL_0000:
ldarg.0
brtrue.s IL_0005
br.s IL_0007
IL_0005:
br.s IL_0009
IL_0007:
ldarg.1
ret
IL_0009:
ldarg.0
ldc.i4.1
sub
ldarg.1
ldc.i4.1
add
starg.s acc
starg.s x
br.s IL_0000
}
.method public static void RunTest<a>(string msg, !!a actual, !!a expected) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (!!a V_0, !!a V_1)
ldarg.1
stloc.0
ldarg.2
stloc.1
ldloc.0
ldloc.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityIntrinsic<!!0>(!!0, !!0)
brfalse.s IL_000f
br.s IL_0011
IL_000f:
br.s IL_0022
IL_0011:
ldarg.0
ldstr ": YES"
call string [mscorlib]System.String::Concat(string, string)
call void [mscorlib]System.Console::WriteLine(string)
ret
IL_0022:
ldstr "\n***** "
ldarg.0
call string [mscorlib]System.String::Concat(string, string)
ldstr ": FAIL\n"
call string [mscorlib]System.String::Concat(string, string)
call void [mscorlib]System.Console::WriteLine(string)
ldc.i4.1
call !!0 Microsoft.FSharp.Core.Operators::Exit<class Microsoft.FSharp.Core.Unit>(int32)
pop
ret
}
.method public static int32 simpleTail2(int32 acc, int32 _arg1) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1)
IL_0000:
ldarg.1
stloc.0
ldloc.0
switch (
IL_000e)
br.s IL_0010
IL_000e:
ldarg.0
ret
IL_0010:
ldloc.0
stloc.1
ldarg.0
ldc.i4.1
add
ldloc.1
ldc.i4.1
sub
starg.s _arg1
starg.s acc
br.s IL_0000
}
.method public static bool mutualTail1IsOdd(int32 x) cil managed
{
.locals init (int32 V_0, int32 V_1)
ldarg.0
stloc.0
ldloc.0
ldc.i4.1
sub
switch (
IL_0010)
br.s IL_0012
IL_0010:
ldc.i4.1
ret
IL_0012:
ldloc.0
stloc.1
ldarg.0
ldc.i4.1
sub
tail.
call bool Fsharp::mutualTail1IsEven(int32)
ret
}
.method public static bool mutualTail1IsEven(int32 x) cil managed
{
.locals init (int32 V_0, int32 V_1)
ldarg.0
stloc.0
ldloc.0
switch (
IL_0012,
IL_0014)
br.s IL_0018
IL_0012:
br.s IL_0016
IL_0014:
ldc.i4.0
ret
IL_0016:
ldc.i4.1
ret
IL_0018:
ldloc.0
stloc.1
ldarg.0
ldc.i4.1
sub
tail.
call bool Fsharp::mutualTail1IsOdd(int32)
ret
}
.method public static class Fsharp/InterfaceTailCallLoopGenericInterface`1<!!T> create<T>(!!T result) cil managed
{
ldarg.0
newobj instance void class Fsharp/TailCallLoopImplementGenericInterface`1<!!T>::.ctor(!0)
ret
}
.property int32 HugeInt()
{
.get int32 Fsharp::get_HugeInt()
}
}
.class public abstract auto ansi sealed Microsoft.FSharp.Core.LanguagePrimitives
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname BoolIEquality@2220
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(bool obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(bool x, bool y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<bool>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname ByteComparer@2306
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint8 x, uint8 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint8>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname ByteIEquality@2228
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint8 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint8 x, uint8 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint8>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname CharComparer@2299
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<char>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(char x, char y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<char>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname CharIEquality@2221
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(char obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char>::GetHashCode(!0)
ldarg.1
ldc.i4.s 16
shl
ldarg.1
or
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(char x, char y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<char>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname DecimalComparer@2313
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(valuetype [mscorlib]System.Decimal x, valuetype [mscorlib]System.Decimal y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<valuetype [mscorlib]System.Decimal>::Compare(!0, !0)
ldarg.1
ldarg.2
call int32 [mscorlib]System.Decimal::Compare(valuetype [mscorlib]System.Decimal, valuetype [mscorlib]System.Decimal)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname DecimalIEquality@2235
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(valuetype [mscorlib]System.Decimal obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal>::GetHashCode(!0)
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashIntrinsic<valuetype [mscorlib]System.Decimal>(!!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(valuetype [mscorlib]System.Decimal x, valuetype [mscorlib]System.Decimal y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<valuetype [mscorlib]System.Decimal>::Equals(!0, !0)
ldarg.1
ldarg.2
call bool [mscorlib]System.Decimal::op_Equality(valuetype [mscorlib]System.Decimal, valuetype [mscorlib]System.Decimal)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Float32Comparer@2312
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<float32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(float32 x, float32 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<float32>::Compare(!0, !0)
ldarg.1
ldarg.2
clt
brfalse.s IL_0009
ldc.i4.m1
ret
IL_0009:
ldarg.1
ldarg.2
cgt
brfalse.s IL_0011
ldc.i4.1
ret
IL_0011:
ldarg.1
ldarg.2
ceq
brfalse.s IL_0019
ldc.i4.0
ret
IL_0019:
ldarg.2
ldarg.2
ceq
brfalse.s IL_0021
ldc.i4.m1
ret
IL_0021:
ldarg.1
ldarg.1
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Float32IEquality@2234
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(float32 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32>::GetHashCode(!0)
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashIntrinsic<float32>(!!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(float32 x, float32 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float32>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname FloatComparer@2311
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<float64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(float64 x, float64 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<float64>::Compare(!0, !0)
ldarg.1
ldarg.2
clt
brfalse.s IL_0009
ldc.i4.m1
ret
IL_0009:
ldarg.1
ldarg.2
cgt
brfalse.s IL_0011
ldc.i4.1
ret
IL_0011:
ldarg.1
ldarg.2
ceq
brfalse.s IL_0019
ldc.i4.0
ret
IL_0019:
ldarg.2
ldarg.2
ceq
brfalse.s IL_0021
ldc.i4.m1
ret
IL_0021:
ldarg.1
ldarg.1
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname FloatIEquality@2233
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(float64 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64>::GetHashCode(!0)
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashIntrinsic<float64>(!!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(float64 x, float64 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<float64>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class abstract auto ansi sealed nested public HashCompare
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname fsEqualityComparerNoHashingER@1662
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.1
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object obj) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldstr "notUsedForHashing"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname fsEqualityComparerNoHashingPER@1655
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.0
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object obj) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldstr "notUsedForHashing"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
}
.class auto ansi serializable nested assembly GenericComparer
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly bool throwsOnPER
.method public specialname rtspecialname instance void .ctor(bool throwsOnPER) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::throwsOnPER
ret
}
.method private hidebysig newslot virtual instance int32 'System-Collections-IComparer-Compare'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IComparer::Compare
ldarg.0
ldarg.1
ldarg.2
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
ret
}
}
.class auto ansi serializable nested assembly UnlimitedHasherER
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.1
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object x) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldarg.0
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ret
}
}
.class auto ansi serializable nested assembly UnlimitedHasherPER
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEqualityComparer
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual instance bool 'System-Collections-IEqualityComparer-Equals'(object x, object y) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::Equals
ldc.i4.0
ldarg.0
ldarg.1
ldarg.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method private hidebysig newslot virtual instance int32 'System-Collections-IEqualityComparer-GetHashCode'(object x) cil managed
{
.override [mscorlib]System.Collections.IEqualityComparer::GetHashCode
ldarg.0
ldarg.1
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ret
}
}
.method assembly specialname static class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer get_fsComparerER() cil managed
{
ldsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsComparerER@1182
ret
}
.method assembly specialname static class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER get_fsEqualityComparerUnlimitedHashingPER() cil managed
{
ldsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingPER@1810
ret
}
.method assembly specialname static class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER get_fsEqualityComparerUnlimitedHashingER() cil managed
{
ldsfld class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerUnlimitedHashingER@1807
ret
}
.method public static bool GenericEqualityIntrinsic<T>(!!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
ldc.i4.0
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingPER()
ldarg.0
box !!T
ldarg.1
box !!T
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method public static int32 GenericHashIntrinsic<T>(!!T input) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
call class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingPER()
ldarg.0
box !!T
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ret
}
.method assembly static !!a FailGenericComparison<a>(object obj) cil managed
{
.locals init (string V_0)
ldarg.0
callvirt instance class [mscorlib]System.Type [mscorlib]System.Object::GetType()
callvirt instance string [mscorlib]System.Object::ToString()
stloc.0
ldstr "genericCompareFail1"
ldloc.0
call string [mscorlib]System.String::Format(string, object)
newobj instance void [mscorlib]System.ArgumentException::.ctor(string)
throw
}
.method assembly specialname static class [mscorlib]System.Exception get_NaNException() cil managed
{
ldsfld class [mscorlib]System.Exception '<StartupCode$FSharp-Core>'.'$Prim-types'::NaNException@951
ret
}
.method assembly static int32 GenericCompare$cont@965(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, object yobj, object xobj, class [mscorlib]System.Array arr1, class Microsoft.FSharp.Core.Unit unitVar) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (object[] V_0, object[] V_1, object[] V_2, object[] V_3, uint8[] V_4, uint8[] V_5, uint8[] V_6, uint8[] V_7, class [mscorlib]System.Array V_8, class [mscorlib]System.Array V_9)
ldarg.3
isinst object[]
stloc.0
ldloc.0
brfalse IL_0082
ldarg.1
isinst object[]
stloc.1
ldloc.1
brfalse.s IL_0025
ldloc.1
stloc.2
ldloc.0
stloc.3
ldarg.0
ldloc.3
ldloc.2
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonObjArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object[], object[])
ret
IL_0025:
ldarg.3
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse.s IL_0070
ldarg.1
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_004f
ldloc.s V_5
stloc.s V_6
ldloc.s V_4
stloc.s V_7
IL_0045:
ldloc.s V_7
ldloc.s V_6
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonByteArray(uint8[], uint8[])
ret
IL_004f:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
IL_005f:
ldarg.0
ldarg.3
ldloc.s V_9
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonArbArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array)
ret
IL_0069:
ldarg.2
call !!0 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::FailGenericComparison<int32>(object)
ret
IL_0070:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
br.s IL_005f
IL_0082:
ldarg.3
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse.s IL_00b6
ldarg.1
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_00a4
ldloc.s V_5
ldloc.s V_4
stloc.s V_7
stloc.s V_6
br.s IL_0045
IL_00a4:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
br.s IL_005f
IL_00b6:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_8
ldloc.s V_8
brfalse.s IL_0069
ldloc.s V_8
stloc.s V_9
br IL_005f
}
.method assembly static int32 GenericComparisonObjArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, object[] x, object[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4, int32 V_5)
ldarg.1
ldlen
conv.i4
stloc.0
ldarg.2
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
bge.s IL_0011
ldc.i4.m1
br.s IL_0016
IL_0011:
ldloc.0
ldloc.1
cgt
IL_0016:
stloc.2
ldloc.2
brfalse.s IL_001c
ldloc.2
ret
IL_001c:
ldc.i4.0
stloc.3
ldc.i4.0
stloc.s V_4
IL_0021:
ldloc.3
ldloc.0
bge.s IL_004f
ldarg.0
ldarg.1
ldloc.3
ldelem [mscorlib]System.Object
ldarg.2
ldloc.3
ldelem [mscorlib]System.Object
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0048
ldloc.s V_5
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0021
IL_0048:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0021
IL_004f:
ldloc.s V_4
ret
}
.method assembly static int32 GenericComparisonByteArray(uint8[] x, uint8[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4, int32 V_5, uint8 V_6, uint8 V_7)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
bge.s IL_0011
ldc.i4.m1
br.s IL_0016
IL_0011:
ldloc.0
ldloc.1
cgt
IL_0016:
stloc.2
ldloc.2
brfalse.s IL_001c
ldloc.2
ret
IL_001c:
ldc.i4.0
stloc.3
ldc.i4.0
stloc.s V_4
IL_0021:
ldloc.3
ldloc.0
bge.s IL_005e
ldarg.0
ldloc.3
ldelem [mscorlib]System.Byte
stloc.s V_6
ldarg.1
ldloc.3
ldelem [mscorlib]System.Byte
stloc.s V_7
ldloc.s V_6
ldloc.s V_7
bge.s IL_0041
ldc.i4.m1
br.s IL_0048
IL_0041:
ldloc.s V_6
ldloc.s V_7
cgt
IL_0048:
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0057
ldloc.s V_5
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0021
IL_0057:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0021
IL_005e:
ldloc.s V_4
ret
}
.method assembly static int32 GenericComparisonArbArrayWithComparer(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.maxstack 10
.locals init (int64 V_0, int64 V_1, int32 V_2, int64 V_3, int64 V_4, int32 V_5, class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer V_6, class [mscorlib]System.Array V_7, class [mscorlib]System.Array V_8, int64 V_9, int64 V_10, int64 V_11, int64 V_12, int32 V_13, int32 V_14, int64 V_15, int64 V_16, int64 V_17, int64 V_18, int64 V_19, int64 V_20, int64[] V_21, class [mscorlib]System.Array V_22, class [mscorlib]System.Array V_23, int32 V_24, int64[] V_25)
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
bne.un.s IL_0016
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
ceq
br.s IL_0018
IL_0016:
ldc.i4.0
IL_0018:
brfalse IL_0092
ldarg.1
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.0
ldarg.2
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.1
ldloc.0
ldloc.1
bge.s IL_0033
ldc.i4.m1
br.s IL_0038
IL_0033:
ldloc.0
ldloc.1
cgt
IL_0038:
stloc.2
ldloc.2
brfalse.s IL_003e
ldloc.2
ret
IL_003e:
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.3
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_4
ldloc.3
ldloc.s V_4
bge.s IL_005a
ldc.i4.m1
br.s IL_0060
IL_005a:
ldloc.3
ldloc.s V_4
cgt
IL_0060:
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0069
ldloc.s V_5
ret
IL_0069:
ldarg.0
stloc.s V_6
ldarg.1
stloc.s V_7
ldarg.2
stloc.s V_8
ldloc.0
stloc.s V_9
ldloc.3
stloc.s V_10
ldloc.s V_4
stloc.s V_11
ldarg.0
ldarg.1
ldarg.2
ldloc.0
ldloc.3
ldloc.s V_4
ldc.i8 0x0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::check@1081(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64)
ret
IL_0092:
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
bne.un.s IL_00a7
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
ceq
br.s IL_00a9
IL_00a7:
ldc.i4.0
IL_00a9:
brfalse IL_0191
ldarg.1
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.0
ldarg.2
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.1
ldloc.0
ldloc.1
bge.s IL_00c6
ldc.i4.m1
br.s IL_00cb
IL_00c6:
ldloc.0
ldloc.1
cgt
IL_00cb:
stloc.2
ldloc.2
brfalse.s IL_00d1
ldloc.2
ret
IL_00d1:
ldarg.1
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.3
ldarg.2
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.s V_4
ldloc.3
ldloc.s V_4
bge.s IL_00eb
ldc.i4.m1
br.s IL_00f1
IL_00eb:
ldloc.3
ldloc.s V_4
cgt
IL_00f1:
stloc.s V_5
ldloc.s V_5
brfalse.s IL_00fa
ldloc.s V_5
ret
IL_00fa:
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_9
ldarg.1
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_10
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_11
ldarg.2
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_12
ldloc.s V_9
ldloc.s V_11
bge.s IL_012c
ldc.i4.m1
br.s IL_0133
IL_012c:
ldloc.s V_9
ldloc.s V_11
cgt
IL_0133:
stloc.s V_13
ldloc.s V_13
brfalse.s IL_013c
ldloc.s V_13
ret
IL_013c:
ldloc.s V_10
ldloc.s V_12
bge.s IL_0146
ldc.i4.m1
br.s IL_014d
IL_0146:
ldloc.s V_10
ldloc.s V_12
cgt
IL_014d:
stloc.s V_14
ldloc.s V_14
brfalse.s IL_0156
ldloc.s V_14
ret
IL_0156:
ldarg.0
stloc.s V_6
ldarg.1
stloc.s V_7
ldarg.2
stloc.s V_8
ldloc.0
stloc.s V_15
ldloc.3
stloc.s V_16
ldloc.s V_9
stloc.s V_17
ldloc.s V_10
stloc.s V_18
ldloc.s V_11
stloc.s V_19
ldloc.s V_12
stloc.s V_20
ldarg.0
ldarg.1
ldarg.2
ldloc.0
ldloc.3
ldloc.s V_9
ldloc.s V_10
ldloc.s V_11
ldloc.s V_12
ldc.i8 0x0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::check0@1103(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
ret
IL_0191:
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_5
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_13
ldloc.s V_5
ldloc.s V_13
bge.s IL_01ab
ldc.i4.m1
br.s IL_01b2
IL_01ab:
ldloc.s V_5
ldloc.s V_13
cgt
IL_01b2:
stloc.2
ldloc.2
brfalse.s IL_01b8
ldloc.2
ret
IL_01b8:
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_5
ldarg.1
stloc.s V_7
ldarg.2
stloc.s V_8
ldloc.s V_5
stloc.s V_13
ldarg.1
ldarg.2
ldloc.s V_5
ldc.i4.0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::precheck@1118(class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int32)
stloc.s V_14
ldloc.s V_14
brfalse.s IL_01dd
ldloc.s V_14
ret
IL_01dd:
ldloc.s V_5
newarr [mscorlib]System.Int64
stloc.s V_21
ldarg.0
stloc.s V_6
ldarg.1
stloc.s V_22
ldarg.2
stloc.s V_23
ldloc.s V_5
stloc.s V_24
ldloc.s V_21
stloc.s V_25
ldarg.0
ldarg.1
ldarg.2
ldloc.s V_5
ldloc.s V_21
ldc.i4.0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1137-1'(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
ret
}
.method assembly static int32 GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, object xobj, object yobj) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 02 00 00 00 00 00 )
.locals init (string V_0, string V_1, string V_2, string V_3, class [mscorlib]System.Array V_4, class [mscorlib]System.Array V_5, class [mscorlib]System.Collections.IStructuralComparable V_6, class [mscorlib]System.Collections.IStructuralComparable V_7, class [mscorlib]System.IComparable V_8, class [mscorlib]System.IComparable V_9, float32 V_10, float32 V_11, float64 V_12, float64 V_13, class [mscorlib]System.Collections.IStructuralComparable V_14, int32 V_15, class [mscorlib]System.IComparable V_16, native uint V_17, native uint V_18, native int V_19, native int V_20)
ldarg.1
brfalse IL_040f
ldarg.2
brfalse IL_040d
ldarg.1
isinst [mscorlib]System.String
stloc.0
ldloc.0
brfalse IL_02a5
ldarg.2
isinst [mscorlib]System.String
stloc.1
ldloc.1
brfalse.s IL_0030
ldloc.1
stloc.2
ldloc.0
stloc.3
ldloc.3
ldloc.2
call int32 [mscorlib]System.String::CompareOrdinal(string, string)
ret
IL_0030:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_004e
ldloc.s V_4
stloc.s V_5
IL_0040:
ldarg.0
ldarg.2
ldarg.1
ldloc.s V_5
ldnull
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare$cont@965(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object, class [mscorlib]System.Array, class Microsoft.FSharp.Core.Unit)
ret
IL_004e:
ldarg.1
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_006a
ldloc.s V_6
stloc.s V_7
IL_005e:
ldloc.s V_7
ldarg.2
ldarg.0
tail.
callvirt instance int32 [mscorlib]System.Collections.IStructuralComparable::CompareTo(object, class [mscorlib]System.Collections.IComparer)
ret
IL_006a:
ldarg.1
isinst [mscorlib]System.IComparable
stloc.s V_8
ldloc.s V_8
brfalse IL_0142
ldloc.s V_8
stloc.s V_9
IL_007d:
ldarg.0
ldfld bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer::throwsOnPER
brfalse IL_0136
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_00d8
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_009e
IL_0098:
br IL_0137
IL_009e:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00a8
br.s IL_0098
IL_00a8:
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_10
ldarg.1
unbox.any [mscorlib]System.Single
stloc.s V_11
IL_00b8:
ldloc.s V_11
call bool [mscorlib]System.Single::IsNaN(float32)
brfalse.s IL_00c5
ldc.i4.1
br.s IL_00cd
IL_00c5:
ldloc.s V_10
call bool [mscorlib]System.Single::IsNaN(float32)
IL_00cd:
brfalse.s IL_00d5
call class [mscorlib]System.Exception Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_NaNException()
throw
IL_00d5:
br.s IL_0137
IL_00d8:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_0106
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00ea
br.s IL_0098
IL_00ea:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00f4
br.s IL_0098
IL_00f4:
ldarg.2
unbox.any [mscorlib]System.Single
ldarg.1
unbox.any [mscorlib]System.Single
stloc.s V_11
stloc.s V_10
br.s IL_00b8
IL_0106:
ldarg.2
unbox.any [mscorlib]System.Double
stloc.s V_12
ldarg.1
unbox.any [mscorlib]System.Double
stloc.s V_13
ldloc.s V_13
call bool [mscorlib]System.Double::IsNaN(float64)
brfalse.s IL_0123
ldc.i4.1
br.s IL_012b
IL_0123:
ldloc.s V_12
call bool [mscorlib]System.Double::IsNaN(float64)
IL_012b:
brfalse.s IL_0133
call class [mscorlib]System.Exception Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_NaNException()
throw
IL_0133:
br.s IL_0137
IL_0136:
IL_0137:
ldloc.s V_9
ldarg.2
tail.
callvirt instance int32 [mscorlib]System.IComparable::CompareTo(object)
ret
IL_0142:
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_01fc
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_01b1
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0180
ldloc.s V_7
stloc.s V_14
IL_0165:
ldloc.s V_14
ldarg.1
ldarg.0
callvirt instance int32 [mscorlib]System.Collections.IStructuralComparable::CompareTo(object, class [mscorlib]System.Collections.IComparer)
stloc.s V_15
ldloc.s V_15
ldc.i4.0
bge.s IL_0177
ldc.i4.1
ret
IL_0177:
ldloc.s V_15
ldc.i4.0
ble.s IL_017e
ldc.i4.m1
ret
IL_017e:
ldc.i4.0
ret
IL_0180:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse.s IL_01aa
ldloc.s V_9
stloc.s V_16
IL_0190:
ldloc.s V_16
ldarg.1
callvirt instance int32 [mscorlib]System.IComparable::CompareTo(object)
stloc.s V_15
ldloc.s V_15
ldc.i4.0
bge.s IL_01a1
ldc.i4.1
ret
IL_01a1:
ldloc.s V_15
ldc.i4.0
ble.s IL_01a8
ldc.i4.m1
ret
IL_01a8:
ldc.i4.0
ret
IL_01aa:
ldarg.1
call !!0 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::FailGenericComparison<int32>(object)
ret
IL_01b1:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_01dd
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_01cb
ldloc.s V_7
stloc.s V_14
br.s IL_0165
IL_01cb:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse.s IL_01aa
ldloc.s V_9
stloc.s V_16
br.s IL_0190
IL_01dd:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
stloc.s V_17
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
IL_01ed:
ldloc.s V_18
ldloc.s V_17
bge.un.s IL_01f5
ldc.i4.m1
ret
IL_01f5:
ldloc.s V_18
ldloc.s V_17
cgt.un
ret
IL_01fc:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_0286
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_023c
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0224
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0224:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_023c:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_0271
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0259
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0259:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_0271:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
stloc.s V_17
br IL_01ed
IL_0286:
ldarg.2
unbox.any [mscorlib]System.IntPtr
stloc.s V_19
ldarg.1
unbox.any [mscorlib]System.IntPtr
stloc.s V_20
IL_0296:
ldloc.s V_20
ldloc.s V_19
bge.s IL_029e
ldc.i4.m1
ret
IL_029e:
ldloc.s V_20
ldloc.s V_19
cgt
ret
IL_02a5:
ldarg.1
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_02ba
ldloc.s V_4
stloc.s V_5
br IL_0040
IL_02ba:
ldarg.1
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_02cf
ldloc.s V_6
stloc.s V_7
br IL_005e
IL_02cf:
ldarg.1
isinst [mscorlib]System.IComparable
stloc.s V_8
ldloc.s V_8
brfalse.s IL_02e4
ldloc.s V_8
stloc.s V_9
br IL_007d
IL_02e4:
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_036e
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_0324
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_030c
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_030c:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_0324:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_0359
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0341
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0341:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_0359:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
stloc.s V_17
br IL_01ed
IL_036e:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native int>(object)
brtrue IL_03f8
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_03ae
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_0396
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_0396:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_03ae:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<native uint>(object)
brtrue.s IL_03e3
ldarg.2
isinst [mscorlib]System.Collections.IStructuralComparable
stloc.s V_7
ldloc.s V_7
brfalse.s IL_03cb
ldloc.s V_7
stloc.s V_14
br IL_0165
IL_03cb:
ldarg.2
isinst [mscorlib]System.IComparable
stloc.s V_9
ldloc.s V_9
brfalse IL_01aa
ldloc.s V_9
stloc.s V_16
br IL_0190
IL_03e3:
ldarg.2
unbox.any [mscorlib]System.UIntPtr
ldarg.1
unbox.any [mscorlib]System.UIntPtr
stloc.s V_18
stloc.s V_17
br IL_01ed
IL_03f8:
ldarg.2
unbox.any [mscorlib]System.IntPtr
ldarg.1
unbox.any [mscorlib]System.IntPtr
stloc.s V_20
stloc.s V_19
br IL_0296
IL_040d:
ldc.i4.1
ret
IL_040f:
ldarg.2
brfalse.s IL_0414
ldc.i4.m1
ret
IL_0414:
ldc.i4.0
ret
}
.method assembly static int32 check@1081(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx, int64 basex, int64 basey, int64 i) cil managed
{
.locals init (int32 V_0)
IL_0000:
ldarg.s i
ldarg.3
blt.s IL_0008
ldc.i4.0
ret
IL_0008:
ldarg.0
ldarg.1
ldarg.s i
ldarg.s basex
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
ldarg.2
ldarg.s i
ldarg.s basey
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
stloc.0
ldloc.0
brfalse.s IL_002a
ldloc.0
ret
IL_002a:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s basex
ldarg.s basey
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey
starg.s basex
starg.s lenx
starg.s y
starg.s x
starg.s comp
br.s IL_0000
}
.method assembly static int32 check1@1104(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i, int64 j) cil managed
{
.maxstack 11
.locals init (int32 V_0)
IL_0000:
ldarg.s j
ldarg.3
blt.s IL_0008
ldc.i4.0
ret
IL_0008:
ldarg.0
ldarg.1
ldarg.s i
ldarg.s basex0
add
ldarg.s j
ldarg.s basex1
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
ldarg.2
ldarg.s i
ldarg.s basey0
add
ldarg.s j
ldarg.s basey1
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
stloc.0
ldloc.0
brfalse.s IL_0034
ldloc.0
ret
IL_0034:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldarg.s j
ldc.i8 0x1
add
starg.s j
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s y
starg.s x
starg.s comp
br.s IL_0000
}
.method assembly static int32 check0@1103(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx0, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i) cil managed
{
.maxstack 11
.locals init (class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer V_0, class [mscorlib]System.Array V_1, class [mscorlib]System.Array V_2, int64 V_3, int64 V_4, int64 V_5, int64 V_6, int64 V_7, int64 V_8, int32 V_9)
IL_0000:
ldarg.0
stloc.0
ldarg.1
stloc.1
ldarg.2
stloc.2
ldarg.s lenx1
stloc.3
ldarg.s basex0
stloc.s V_4
ldarg.s basex1
stloc.s V_5
ldarg.s basey0
stloc.s V_6
ldarg.s basey1
stloc.s V_7
ldarg.s i
stloc.s V_8
ldarg.s i
ldarg.3
blt.s IL_0025
ldc.i4.0
ret
IL_0025:
ldarg.0
ldarg.1
ldarg.2
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x0
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::check1@1104(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
stloc.s V_9
ldloc.s V_9
brfalse.s IL_004b
ldloc.s V_9
ret
IL_004b:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s lenx0
starg.s y
starg.s x
starg.s comp
br IL_0000
}
.method assembly static int32 precheck@1118(class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int32 k) cil managed
{
.locals init (int32 V_0, int64 V_1, int64 V_2, int32 V_3, int32 V_4, int32 V_5)
IL_0000:
ldarg.3
ldarg.2
blt.s IL_0007
ldc.i4.0
ret
IL_0007:
ldarg.0
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.1
ldarg.1
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.2
ldloc.1
ldloc.2
bge.s IL_001f
ldc.i4.m1
br.s IL_0024
IL_001f:
ldloc.1
ldloc.2
cgt
IL_0024:
stloc.0
ldloc.0
brfalse.s IL_002a
ldloc.0
ret
IL_002a:
ldarg.0
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.s V_4
ldarg.1
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.s V_5
ldloc.s V_4
ldloc.s V_5
bge.s IL_0046
ldc.i4.m1
br.s IL_004d
IL_0046:
ldloc.s V_4
ldloc.s V_5
cgt
IL_004d:
stloc.3
ldloc.3
brfalse.s IL_0053
ldloc.3
ret
IL_0053:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldc.i4.1
add
starg.s k
starg.s ndims
starg.s y
starg.s x
br.s IL_0000
}
.method assembly static int32 checkN@1128(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k, int64 baseIdx, int64 i, int64 lim) cil managed
{
.maxstack 9
.locals init (int32 V_0)
IL_0000:
ldarg.s i
ldarg.s lim
blt.s IL_0009
ldc.i4.0
ret
IL_0009:
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
add
stelem [mscorlib]System.Int64
ldarg.s k
ldarg.3
ldc.i4.1
sub
bne.un.s IL_0037
ldarg.0
ldarg.1
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
ldarg.2
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericCompare(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, object, object)
br.s IL_0047
IL_0037:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s idxs
ldarg.s k
ldc.i4.1
add
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1137-1'(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
IL_0047:
stloc.0
ldloc.0
brfalse.s IL_004d
ldloc.0
ret
IL_004d:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
ldc.i8 0x1
add
ldarg.s lim
starg.s lim
starg.s i
starg.s baseIdx
starg.s k
starg.s idxs
starg.s ndims
starg.s y
starg.s x
starg.s comp
br IL_0000
}
.method assembly static int32 'check@1137-1'(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer comp, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k) cil managed
{
.maxstack 10
.locals init (int32 V_0)
ldarg.s k
ldarg.3
blt.s IL_0008
ldc.i4.0
ret
IL_0008:
ldarg.1
ldarg.s k
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.0
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s idxs
ldarg.s k
ldloc.0
conv.i8
ldc.i8 0x0
ldarg.1
ldarg.s k
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::checkN@1128(class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32, int64, int64, int64)
ret
}
.method public static int32 GenericComparisonWithComparerIntrinsic<T>(class [mscorlib]System.Collections.IComparer comp, !!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
ldarg.0
ldarg.1
box !!T
ldarg.2
box !!T
tail.
callvirt instance int32 [mscorlib]System.Collections.IComparer::Compare(object, object)
ret
}
.method assembly static bool GenericEqualityByteArray(uint8[] x, uint8[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Byte
ldarg.1
ldloc.3
ldelem [mscorlib]System.Byte
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityInt32Array(int32[] x, int32[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Int32
ldarg.1
ldloc.3
ldelem [mscorlib]System.Int32
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool f32eq@1421(bool er, float32 x, float32 y) cil managed
{
ldarg.0
brfalse.s IL_000e
ldarg.1
ldarg.1
ceq
ldc.i4.0
ceq
br.s IL_0010
IL_000e:
ldc.i4.0
IL_0010:
brfalse.s IL_001c
ldarg.2
ldarg.2
ceq
ldc.i4.0
ceq
br.s IL_001e
IL_001c:
ldc.i4.0
IL_001e:
brfalse.s IL_0022
ldc.i4.1
ret
IL_0022:
ldarg.1
ldarg.2
ceq
ret
}
.method assembly static bool GenericEqualitySingleArray(bool er, float32[] x, float32[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.1
ldlen
conv.i4
stloc.0
ldarg.2
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0045
ldarg.0
ldarg.1
ldloc.3
ldelem [mscorlib]System.Single
ldarg.2
ldloc.3
ldelem [mscorlib]System.Single
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::f32eq@1421(bool, float32, float32)
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003e
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003e:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0045:
ldloc.s V_4
ret
}
.method assembly static bool feq@1438(bool er, float64 x, float64 y) cil managed
{
ldarg.0
brfalse.s IL_000e
ldarg.1
ldarg.1
ceq
ldc.i4.0
ceq
br.s IL_0010
IL_000e:
ldc.i4.0
IL_0010:
brfalse.s IL_001c
ldarg.2
ldarg.2
ceq
ldc.i4.0
ceq
br.s IL_001e
IL_001c:
ldc.i4.0
IL_001e:
brfalse.s IL_0022
ldc.i4.1
ret
IL_0022:
ldarg.1
ldarg.2
ceq
ret
}
.method assembly static bool GenericEqualityDoubleArray(bool er, float64[] x, float64[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.1
ldlen
conv.i4
stloc.0
ldarg.2
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0045
ldarg.0
ldarg.1
ldloc.3
ldelem [mscorlib]System.Double
ldarg.2
ldloc.3
ldelem [mscorlib]System.Double
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::feq@1438(bool, float64, float64)
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003e
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003e:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0045:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityCharArray(char[] x, char[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Char
ldarg.1
ldloc.3
ldelem [mscorlib]System.Char
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityInt64Array(int64[] x, int64[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.0
ldlen
conv.i4
stloc.0
ldarg.1
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0041
ldarg.0
ldloc.3
ldelem [mscorlib]System.Int64
ldarg.1
ldloc.3
ldelem [mscorlib]System.Int64
ceq
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003a
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003a:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0041:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityObj$cont@1498(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, object yobj, object xobj, class [mscorlib]System.Array arr1, class Microsoft.FSharp.Core.Unit unitVar) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (object[] V_0, object[] V_1, object[] V_2, object[] V_3, uint8[] V_4, uint8[] V_5, uint8[] V_6, uint8[] V_7, int32[] V_8, int32[] V_9, int32[] V_10, int32[] V_11, int64[] V_12, int64[] V_13, int64[] V_14, int64[] V_15, char[] V_16, char[] V_17, char[] V_18, char[] V_19, float32[] V_20, float32[] V_21, float32[] V_22, float32[] V_23, float64[] V_24, float64[] V_25, float64[] V_26, float64[] V_27, class [mscorlib]System.Array V_28, class [mscorlib]System.Array V_29)
ldarg.s arr1
isinst object[]
stloc.0
ldloc.0
brfalse IL_0fcd
ldarg.2
isinst object[]
stloc.1
ldloc.1
brfalse.s IL_0027
ldloc.1
stloc.2
ldloc.0
stloc.3
ldarg.0
ldarg.1
ldloc.3
ldloc.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObjArray(bool, class [mscorlib]System.Collections.IEqualityComparer, object[], object[])
ret
IL_0027:
ldarg.s arr1
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse IL_081e
ldarg.2
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0055
ldloc.s V_5
stloc.s V_6
ldloc.s V_4
stloc.s V_7
IL_004b:
ldloc.s V_7
ldloc.s V_6
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityByteArray(uint8[], uint8[])
ret
IL_0055:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_045b
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_0083
ldloc.s V_9
stloc.s V_10
ldloc.s V_8
stloc.s V_11
IL_0079:
ldloc.s V_11
ldloc.s V_10
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityInt32Array(int32[], int32[])
ret
IL_0083:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_028e
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_00b1
ldloc.s V_13
stloc.s V_14
ldloc.s V_12
stloc.s V_15
IL_00a7:
ldloc.s V_15
ldloc.s V_14
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityInt64Array(int64[], int64[])
ret
IL_00b1:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_01bc
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_00df
ldloc.s V_17
stloc.s V_18
ldloc.s V_16
stloc.s V_19
IL_00d5:
ldloc.s V_19
ldloc.s V_18
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityCharArray(char[], char[])
ret
IL_00df:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse IL_0172
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_010e
ldloc.s V_21
stloc.s V_22
ldloc.s V_20
stloc.s V_23
IL_0103:
ldarg.0
ldloc.s V_23
ldloc.s V_22
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualitySingleArray(bool, float32[], float32[])
ret
IL_010e:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0160
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_013a
ldloc.s V_25
stloc.s V_26
ldloc.s V_24
stloc.s V_27
IL_012f:
ldarg.0
ldloc.s V_27
ldloc.s V_26
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityDoubleArray(bool, float64[], float64[])
ret
IL_013a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
IL_014a:
ldarg.0
ldarg.1
ldarg.s arr1
ldloc.s V_29
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityArbArray(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array)
ret
IL_0156:
ldarg.3
ldarg.2
tail.
callvirt instance bool [mscorlib]System.Object::Equals(object)
ret
IL_0160:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
br.s IL_014a
IL_0172:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_01a7
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0195
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br.s IL_012f
IL_0195:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
br.s IL_014a
IL_01a7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse.s IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_01bc:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0238
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_01e2
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_01e2:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0220
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0208
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0208:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0220:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0238:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0276
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_025e
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_025e:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0276:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_028e:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0389
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_02b7
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_02b7:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0333
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_02dd
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_02dd:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_031b
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0303
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0303:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_031b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0333:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0371
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0359
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0359:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0371:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0389:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0405
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_03af
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_03af:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_03ed
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_03d5
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_03d5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_03ed:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0405:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0443
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_042b
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_042b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0443:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_045b:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_0651
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_0484
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_0484:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_057f
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_04ad
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_04ad:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0529
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_04d3
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_04d3:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0511
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_04f9
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_04f9:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0511:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0529:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0567
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_054f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_054f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0567:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_057f:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_05fb
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_05a5
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_05a5:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_05e3
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_05cb
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_05cb:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_05e3:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_05fb:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0639
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0621
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0621:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0639:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0651:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_074c
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_067a
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_067a:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_06f6
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_06a0
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_06a0:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_06de
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_06c6
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_06c6:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_06de:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_06f6:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0734
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_071c
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_071c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0734:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_074c:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_07c8
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0772
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0772:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_07b0
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0798
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0798:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_07b0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_07c8:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0806
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_07ee
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_07ee:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0806:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_081e:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_0c0a
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_0847
ldloc.s V_9
ldloc.s V_8
stloc.s V_11
stloc.s V_10
br IL_0079
IL_0847:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_0a3d
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_0870
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_0870:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_096b
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0899
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0899:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0915
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_08bf
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_08bf:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_08fd
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_08e5
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_08e5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_08fd:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0915:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0953
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_093b
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_093b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0953:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_096b:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_09e7
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0991
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0991:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_09cf
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_09b7
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_09b7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_09cf:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_09e7:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0a25
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0a0d
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0a0d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0a25:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0a3d:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0b38
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0a66
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0a66:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0ae2
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0a8c
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0a8c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0aca
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0ab2
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0ab2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0aca:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0ae2:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0b20
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0b08
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0b08:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0b20:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0b38:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0bb4
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0b5e
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0b5e:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0b9c
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0b84
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0b84:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0b9c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0bb4:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0bf2
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0bda
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0bda:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0bf2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0c0a:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_0e00
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_0c33
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_0c33:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0d2e
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0c5c
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0c5c:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0cd8
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0c82
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0c82:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0cc0
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0ca8
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0ca8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0cc0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0cd8:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0d16
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0cfe
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0cfe:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0d16:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0d2e:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0daa
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0d54
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0d54:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0d92
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0d7a
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0d7a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0d92:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0daa:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0de8
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0dd0
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0dd0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0de8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0e00:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_0efb
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_0e29
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_0e29:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0ea5
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0e4f
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0e4f:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0e8d
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0e75
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0e75:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0e8d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0ea5:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0ee3
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0ecb
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0ecb:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0ee3:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0efb:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_0f77
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_0f21
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_0f21:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0f5f
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0f47
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0f47:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0f5f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0f77:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_0fb5
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_0f9d
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_0f9d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0fb5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_0fcd:
ldarg.s arr1
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse IL_17a5
ldarg.2
isinst uint8[]
stloc.s V_5
ldloc.s V_5
brfalse.s IL_0ff6
ldloc.s V_5
ldloc.s V_4
stloc.s V_7
stloc.s V_6
br IL_004b
IL_0ff6:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_13e2
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_101f
ldloc.s V_9
ldloc.s V_8
stloc.s V_11
stloc.s V_10
br IL_0079
IL_101f:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_1215
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_1048
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_1048:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1143
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1071
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1071:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_10ed
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1097
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1097:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_10d5
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_10bd
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_10bd:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_10d5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_10ed:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_112b
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1113
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1113:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_112b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1143:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_11bf
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1169
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1169:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_11a7
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_118f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_118f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_11a7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_11bf:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_11fd
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_11e5
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_11e5:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_11fd:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1215:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1310
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_123e
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_123e:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_12ba
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1264
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1264:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_12a2
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_128a
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_128a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_12a2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_12ba:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_12f8
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_12e0
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_12e0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_12f8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1310:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_138c
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1336
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1336:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1374
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_135c
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_135c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1374:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_138c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_13ca
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_13b2
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_13b2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_13ca:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_13e2:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_15d8
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_140b
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_140b:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1506
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1434
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1434:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_14b0
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_145a
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_145a:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1498
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1480
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1480:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1498:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_14b0:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_14ee
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_14d6
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_14d6:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_14ee:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1506:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1582
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_152c
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_152c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_156a
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1552
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1552:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_156a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1582:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_15c0
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_15a8
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_15a8:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_15c0:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_15d8:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_16d3
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1601
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1601:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_167d
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1627
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1627:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1665
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_164d
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_164d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1665:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_167d:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_16bb
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_16a3
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_16a3:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_16bb:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_16d3:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_174f
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_16f9
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_16f9:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1737
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_171f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_171f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1737:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_174f:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_178d
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1775
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1775:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_178d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_17a5:
ldarg.s arr1
isinst int32[]
stloc.s V_8
ldloc.s V_8
brfalse IL_1b91
ldarg.2
isinst int32[]
stloc.s V_9
ldloc.s V_9
brfalse.s IL_17ce
ldloc.s V_9
ldloc.s V_8
stloc.s V_11
stloc.s V_10
br IL_0079
IL_17ce:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_19c4
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_17f7
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_17f7:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_18f2
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1820
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1820:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_189c
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1846
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1846:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1884
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_186c
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_186c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1884:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_189c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_18da
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_18c2
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_18c2:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_18da:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_18f2:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_196e
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1918
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1918:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1956
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_193e
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_193e:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1956:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_196e:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_19ac
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1994
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1994:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_19ac:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_19c4:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1abf
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_19ed
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_19ed:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1a69
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1a13
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1a13:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1a51
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1a39
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1a39:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1a51:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1a69:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1aa7
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1a8f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1a8f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1aa7:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1abf:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1b3b
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1ae5
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1ae5:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1b23
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1b0b
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1b0b:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b23:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b3b:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1b79
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1b61
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1b61:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b79:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1b91:
ldarg.s arr1
isinst int64[]
stloc.s V_12
ldloc.s V_12
brfalse IL_1d87
ldarg.2
isinst int64[]
stloc.s V_13
ldloc.s V_13
brfalse.s IL_1bba
ldloc.s V_13
ldloc.s V_12
stloc.s V_15
stloc.s V_14
br IL_00a7
IL_1bba:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1cb5
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1be3
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1be3:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1c5f
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1c09
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1c09:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1c47
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1c2f
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1c2f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1c47:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1c5f:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1c9d
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1c85
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1c85:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1c9d:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1cb5:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1d31
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1cdb
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1cdb:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1d19
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1d01
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1d01:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d19:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d31:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1d6f
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1d57
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1d57:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d6f:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1d87:
ldarg.s arr1
isinst char[]
stloc.s V_16
ldloc.s V_16
brfalse IL_1e82
ldarg.2
isinst char[]
stloc.s V_17
ldloc.s V_17
brfalse.s IL_1db0
ldloc.s V_17
ldloc.s V_16
stloc.s V_19
stloc.s V_18
br IL_00d5
IL_1db0:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1e2c
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1dd6
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1dd6:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1e14
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1dfc
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1dfc:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e14:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e2c:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1e6a
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1e52
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1e52:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e6a:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1e82:
ldarg.s arr1
isinst float32[]
stloc.s V_20
ldloc.s V_20
brfalse.s IL_1efe
ldarg.2
isinst float32[]
stloc.s V_21
ldloc.s V_21
brfalse.s IL_1ea8
ldloc.s V_21
ldloc.s V_20
stloc.s V_23
stloc.s V_22
br IL_0103
IL_1ea8:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1ee6
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1ece
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1ece:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1ee6:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1efe:
ldarg.s arr1
isinst float64[]
stloc.s V_24
ldloc.s V_24
brfalse.s IL_1f3c
ldarg.2
isinst float64[]
stloc.s V_25
ldloc.s V_25
brfalse.s IL_1f24
ldloc.s V_25
ldloc.s V_24
stloc.s V_27
stloc.s V_26
br IL_012f
IL_1f24:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
IL_1f3c:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_28
ldloc.s V_28
brfalse IL_0156
ldloc.s V_28
stloc.s V_29
br IL_014a
}
.method assembly static bool GenericEqualityObjArray(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, object[] x, object[] y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, bool V_2, int32 V_3, bool V_4, bool V_5)
ldarg.2
ldlen
conv.i4
stloc.0
ldarg.3
ldlen
conv.i4
stloc.1
ldloc.0
ldloc.1
ceq
stloc.2
ldloc.2
brtrue.s IL_0013
ldloc.2
ret
IL_0013:
ldc.i4.0
stloc.3
ldc.i4.1
stloc.s V_4
IL_0018:
ldloc.3
ldloc.0
bge.s IL_0046
ldarg.0
ldarg.1
ldarg.2
ldloc.3
ldelem [mscorlib]System.Object
ldarg.3
ldloc.3
ldelem [mscorlib]System.Object
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
stloc.s V_5
ldloc.s V_5
brtrue.s IL_003f
ldc.i4.0
stloc.s V_4
ldloc.0
stloc.3
br.s IL_0018
IL_003f:
ldloc.3
ldc.i4.1
add
stloc.3
br.s IL_0018
IL_0046:
ldloc.s V_4
ret
}
.method assembly static bool GenericEqualityArbArray(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 01 00 00 00 00 00 )
.maxstack 11
.locals init (int64 V_0, int64 V_1, int64 V_2, int64 V_3, bool V_4, class [mscorlib]System.Collections.IEqualityComparer V_5, class [mscorlib]System.Array V_6, class [mscorlib]System.Array V_7, int64 V_8, int64 V_9, int64 V_10, int64 V_11, int64 V_12, int64 V_13, int64 V_14, int64 V_15, int64 V_16, int64 V_17, int32 V_18, int32 V_19, int64[] V_20, class [mscorlib]System.Array V_21, class [mscorlib]System.Array V_22, int32 V_23, int64[] V_24)
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
bne.un.s IL_0016
ldarg.3
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
ceq
br.s IL_0018
IL_0016:
ldc.i4.0
IL_0018:
brfalse.s IL_0071
ldarg.2
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.0
ldarg.3
callvirt instance int64 [mscorlib]System.Array::get_LongLength()
stloc.1
ldloc.0
ldloc.1
bne.un.s IL_006f
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.2
ldarg.3
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.3
ldloc.2
ldloc.3
bne.un.s IL_006d
ldarg.0
stloc.s V_4
ldarg.1
stloc.s V_5
ldarg.2
stloc.s V_6
ldarg.3
stloc.s V_7
ldloc.0
stloc.s V_8
ldloc.2
stloc.s V_9
ldloc.3
stloc.s V_10
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldloc.0
ldloc.2
ldloc.3
ldc.i8 0x0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1588-2'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64)
ret
IL_006d:
ldc.i4.0
ret
IL_006f:
ldc.i4.0
ret
IL_0071:
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
bne.un.s IL_0086
ldarg.3
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.2
ceq
br.s IL_0088
IL_0086:
ldc.i4.0
IL_0088:
brfalse IL_013b
ldarg.2
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.0
ldarg.3
ldc.i4.0
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.1
ldloc.0
ldloc.1
bne.un IL_0139
ldarg.2
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.2
ldarg.3
ldc.i4.1
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
stloc.3
ldloc.2
ldloc.3
bne.un IL_0137
ldarg.2
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_8
ldarg.2
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_9
ldarg.3
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_10
ldarg.3
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
conv.i8
stloc.s V_11
ldloc.s V_8
ldloc.s V_10
bne.un.s IL_00f2
ldloc.s V_9
ldloc.s V_11
ceq
br.s IL_00f4
IL_00f2:
ldc.i4.0
IL_00f4:
brfalse.s IL_0135
ldarg.0
stloc.s V_4
ldarg.1
stloc.s V_5
ldarg.2
stloc.s V_6
ldarg.3
stloc.s V_7
ldloc.0
stloc.s V_12
ldloc.2
stloc.s V_13
ldloc.s V_8
stloc.s V_14
ldloc.s V_9
stloc.s V_15
ldloc.s V_10
stloc.s V_16
ldloc.s V_11
stloc.s V_17
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldloc.0
ldloc.2
ldloc.s V_8
ldloc.s V_9
ldloc.s V_10
ldloc.s V_11
ldc.i8 0x0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check0@1605-1'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
ret
IL_0135:
ldc.i4.0
ret
IL_0137:
ldc.i4.0
ret
IL_0139:
ldc.i4.0
ret
IL_013b:
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldarg.3
callvirt instance int32 [mscorlib]System.Array::get_Rank()
bne.un.s IL_0195
ldarg.2
callvirt instance int32 [mscorlib]System.Array::get_Rank()
stloc.s V_18
ldarg.2
stloc.s V_6
ldarg.3
stloc.s V_7
ldloc.s V_18
stloc.s V_19
ldarg.2
ldarg.3
ldloc.s V_18
ldc.i4.0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'precheck@1613-1'(class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int32)
brfalse.s IL_0193
ldloc.s V_18
newarr [mscorlib]System.Int64
stloc.s V_20
ldarg.0
stloc.s V_4
ldarg.1
stloc.s V_5
ldarg.2
stloc.s V_21
ldarg.3
stloc.s V_22
ldloc.s V_18
stloc.s V_23
ldloc.s V_20
stloc.s V_24
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldloc.s V_18
ldloc.s V_20
ldc.i4.0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1628-3'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
ret
IL_0193:
ldc.i4.0
ret
IL_0195:
ldc.i4.0
ret
}
.method assembly static bool GenericEqualityObj(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, object xobj, object yobj) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00
00 00 00 00 )
.locals init (string V_0, string V_1, string V_2, string V_3, class [mscorlib]System.Array V_4, class [mscorlib]System.Array V_5, class [mscorlib]System.Collections.IStructuralEquatable V_6, class [mscorlib]System.Collections.IStructuralEquatable V_7, float32 V_8, float32 V_9, float64 V_10, float64 V_11)
ldarg.2
brfalse IL_01e7
ldarg.3
brfalse IL_01e5
ldarg.2
isinst [mscorlib]System.String
stloc.0
ldloc.0
brfalse IL_0138
ldarg.3
isinst [mscorlib]System.String
stloc.1
ldloc.1
brfalse.s IL_0030
ldloc.1
stloc.2
ldloc.0
stloc.3
ldloc.3
ldloc.2
call bool [mscorlib]System.String::Equals(string, string)
ret
IL_0030:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_004f
ldloc.s V_4
stloc.s V_5
IL_0040:
ldarg.0
ldarg.1
ldarg.3
ldarg.2
ldloc.s V_5
ldnull
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj$cont@1498(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object, class [mscorlib]System.Array, class Microsoft.FSharp.Core.Unit)
ret
IL_004f:
ldarg.2
isinst [mscorlib]System.Collections.IStructuralEquatable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_006b
ldloc.s V_6
stloc.s V_7
IL_005f:
ldloc.s V_7
ldarg.3
ldarg.1
tail.
callvirt instance bool [mscorlib]System.Collections.IStructuralEquatable::Equals(object, class [mscorlib]System.Collections.IEqualityComparer)
ret
IL_006b:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_00cb
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_0085
IL_007b:
ldarg.2
ldarg.3
tail.
callvirt instance bool [mscorlib]System.Object::Equals(object)
ret
IL_0085:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_008f
br.s IL_007b
IL_008f:
ldarg.3
unbox.any [mscorlib]System.Single
stloc.s V_8
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
IL_009f:
ldarg.0
brfalse.s IL_00ae
ldloc.s V_9
ldloc.s V_9
ceq
ldc.i4.0
ceq
br.s IL_00b0
IL_00ae:
ldc.i4.0
IL_00b0:
brfalse.s IL_00be
ldloc.s V_8
ldloc.s V_8
ceq
ldc.i4.0
ceq
br.s IL_00c0
IL_00be:
ldc.i4.0
IL_00c0:
brfalse.s IL_00c4
ldc.i4.1
ret
IL_00c4:
ldloc.s V_9
ldloc.s V_8
ceq
ret
IL_00cb:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_00fc
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00dd
br.s IL_007b
IL_00dd:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_00ea
br IL_007b
IL_00ea:
ldarg.3
unbox.any [mscorlib]System.Single
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
stloc.s V_8
br.s IL_009f
IL_00fc:
ldarg.3
unbox.any [mscorlib]System.Double
stloc.s V_10
ldarg.2
unbox.any [mscorlib]System.Double
stloc.s V_11
IL_010c:
ldarg.0
brfalse.s IL_011b
ldloc.s V_11
ldloc.s V_11
ceq
ldc.i4.0
ceq
br.s IL_011d
IL_011b:
ldc.i4.0
IL_011d:
brfalse.s IL_012b
ldloc.s V_10
ldloc.s V_10
ceq
ldc.i4.0
ceq
br.s IL_012d
IL_012b:
ldc.i4.0
IL_012d:
brfalse.s IL_0131
ldc.i4.1
ret
IL_0131:
ldloc.s V_11
ldloc.s V_10
ceq
ret
IL_0138:
ldarg.2
isinst [mscorlib]System.Array
stloc.s V_4
ldloc.s V_4
brfalse.s IL_014d
ldloc.s V_4
stloc.s V_5
br IL_0040
IL_014d:
ldarg.2
isinst [mscorlib]System.Collections.IStructuralEquatable
stloc.s V_6
ldloc.s V_6
brfalse.s IL_0162
ldloc.s V_6
stloc.s V_7
br IL_005f
IL_0162:
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_0199
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_0177
br IL_007b
IL_0177:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_0184
br IL_007b
IL_0184:
ldarg.3
unbox.any [mscorlib]System.Single
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
stloc.s V_8
br IL_009f
IL_0199:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float64>(object)
brtrue.s IL_01d0
ldarg.2
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_01ae
br IL_007b
IL_01ae:
ldarg.3
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<float32>(object)
brtrue.s IL_01bb
br IL_007b
IL_01bb:
ldarg.3
unbox.any [mscorlib]System.Single
ldarg.2
unbox.any [mscorlib]System.Single
stloc.s V_9
stloc.s V_8
br IL_009f
IL_01d0:
ldarg.3
unbox.any [mscorlib]System.Double
ldarg.2
unbox.any [mscorlib]System.Double
stloc.s V_11
stloc.s V_10
br IL_010c
IL_01e5:
ldc.i4.0
ret
IL_01e7:
ldarg.3
brfalse.s IL_01ec
ldc.i4.0
ret
IL_01ec:
ldc.i4.1
ret
}
.method assembly static bool 'check@1588-2'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx, int64 basex, int64 basey, int64 i) cil managed
{
.maxstack 9
IL_0001:
ldarg.s i
ldarg.s lenx
blt.s IL_0009
ldc.i4.1
ret
IL_0009:
ldarg.0
ldarg.1
ldarg.2
ldarg.s basex
ldarg.s i
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
ldarg.3
ldarg.s basey
ldarg.s i
add
callvirt instance object [mscorlib]System.Array::GetValue(int64)
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
brfalse.s IL_0050
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx
ldarg.s basex
ldarg.s basey
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey
starg.s basex
starg.s lenx
starg.s y
starg.s x
starg.s iec
starg.s er
br.s IL_0001
IL_0050:
ldc.i4.0
ret
}
.method assembly static bool 'check1@1606-1'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i, int64 j) cil managed
{
.maxstack 12
IL_0001:
ldarg.s j
ldarg.s lenx1
blt.s IL_0009
ldc.i4.1
ret
IL_0009:
ldarg.0
ldarg.1
ldarg.2
ldarg.s basex0
ldarg.s i
add
ldarg.s basex1
ldarg.s j
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
ldarg.3
ldarg.s basey0
ldarg.s i
add
ldarg.s basey1
ldarg.s j
add
callvirt instance object [mscorlib]System.Array::GetValue(int64, int64)
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
brfalse.s IL_0066
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldarg.s j
ldc.i8 0x1
add
starg.s j
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s y
starg.s x
starg.s iec
starg.s er
br.s IL_0001
IL_0066:
ldc.i4.0
ret
}
.method assembly static bool 'check0@1605-1'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int64 lenx0, int64 lenx1, int64 basex0, int64 basex1, int64 basey0, int64 basey1, int64 i) cil managed
{
.maxstack 12
.locals init (bool V_0, class [mscorlib]System.Collections.IEqualityComparer V_1, class [mscorlib]System.Array V_2, class [mscorlib]System.Array V_3, int64 V_4, int64 V_5, int64 V_6, int64 V_7, int64 V_8, int64 V_9)
IL_0001:
ldarg.0
stloc.0
ldarg.1
stloc.1
ldarg.2
stloc.2
ldarg.3
stloc.3
ldarg.s lenx1
stloc.s V_4
ldarg.s basex0
stloc.s V_5
ldarg.s basex1
stloc.s V_6
ldarg.s basey0
stloc.s V_7
ldarg.s basey1
stloc.s V_8
ldarg.s i
stloc.s V_9
ldarg.s i
ldarg.s lenx0
blt.s IL_0029
ldc.i4.1
ret
IL_0029:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x0
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check1@1606-1'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int64, int64, int64, int64, int64, int64, int64)
brfalse.s IL_0080
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s lenx0
ldarg.s lenx1
ldarg.s basex0
ldarg.s basex1
ldarg.s basey0
ldarg.s basey1
ldarg.s i
ldc.i8 0x1
add
starg.s i
starg.s basey1
starg.s basey0
starg.s basex1
starg.s basex0
starg.s lenx1
starg.s lenx0
starg.s y
starg.s x
starg.s iec
starg.s er
br IL_0001
IL_0080:
ldc.i4.0
ret
}
.method assembly static bool 'precheck@1613-1'(class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int32 k) cil managed
{
IL_0001:
ldarg.3
ldarg.2
blt.s IL_0007
ldc.i4.1
ret
IL_0007:
ldarg.0
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
ldarg.1
ldarg.3
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
bne.un.s IL_002a
ldarg.0
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
ldarg.1
ldarg.3
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
ceq
br.s IL_002c
IL_002a:
ldc.i4.0
IL_002c:
brfalse.s IL_003e
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldc.i4.1
add
starg.s k
starg.s ndims
starg.s y
starg.s x
br.s IL_0001
IL_003e:
ldc.i4.0
ret
}
.method assembly static bool 'checkN@1621-1'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k, int64 baseIdx, int64 i, int64 lim) cil managed
{
.maxstack 10
IL_0000:
ldarg.s i
ldarg.s lim
blt.s IL_0008
ldc.i4.1
ret
IL_0008:
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
add
stelem [mscorlib]System.Int64
ldarg.s k
ldarg.s ndims
ldc.i4.1
sub
bne.un.s IL_0039
ldarg.0
ldarg.1
ldarg.2
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
ldarg.3
ldarg.s idxs
callvirt instance object [mscorlib]System.Array::GetValue(int64[])
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
br.s IL_004b
IL_0039:
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s ndims
ldarg.s idxs
ldarg.s k
ldc.i4.1
add
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'check@1628-3'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32)
IL_004b:
brfalse.s IL_0080
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s ndims
ldarg.s idxs
ldarg.s k
ldarg.s baseIdx
ldarg.s i
ldc.i8 0x1
add
ldarg.s lim
starg.s lim
starg.s i
starg.s baseIdx
starg.s k
starg.s idxs
starg.s ndims
starg.s y
starg.s x
starg.s iec
starg.s er
br IL_0000
IL_0080:
ldc.i4.0
ret
}
.method assembly static bool 'check@1628-3'(bool er, class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x, class [mscorlib]System.Array y, int32 ndims, int64[] idxs, int32 k) cil managed
{
.maxstack 11
.locals init (int32 V_0)
ldarg.s k
ldarg.s ndims
blt.s IL_0008
ldc.i4.1
ret
IL_0008:
ldarg.2
ldarg.s k
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.0
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldarg.s ndims
ldarg.s idxs
ldarg.s k
ldloc.0
conv.i8
ldc.i8 0x0
ldarg.2
ldarg.s k
callvirt instance int64 [mscorlib]System.Array::GetLongLength(int32)
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::'checkN@1621-1'(bool, class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array, class [mscorlib]System.Array, int32, int64[], int32, int64, int64, int64)
ret
}
.method assembly specialname static class [mscorlib]System.Collections.IEqualityComparer get_fsEqualityComparerNoHashingPER() cil managed
{
ldsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingPER@1654
ret
}
.method assembly specialname static class [mscorlib]System.Collections.IEqualityComparer get_fsEqualityComparerNoHashingER() cil managed
{
ldsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::fsEqualityComparerNoHashingER@1661
ret
}
.method public static bool GenericEqualityERIntrinsic<T>(!!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
ldc.i4.1
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingER()
ldarg.0
box !!T
ldarg.1
box !!T
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityObj(bool, class [mscorlib]System.Collections.IEqualityComparer, object, object)
ret
}
.method public static bool GenericEqualityWithComparerIntrinsic<T>(class [mscorlib]System.Collections.IEqualityComparer comp, !!T x, !!T y) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 66 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 61 20 70 72 69 6D 69 74 69 76 65 20
6C 69 62 72 61 72 79 20 72 6F 75 74 69 6E 65 20
75 73 65 64 20 62 79 20 6F 70 74 69 6D 69 7A 65
64 20 46 23 20 63 6F 64 65 20 61 6E 64 20 73 68
6F 75 6C 64 20 6E 6F 74 20 62 65 20 75 73 65 64
20 64 69 72 65 63 74 6C 79 B4 04 00 00 01 00 54
02 08 49 73 48 69 64 64 65 6E 01 )
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
ldarg.0
ldarg.1
box !!T
ldarg.2
box !!T
tail.
callvirt instance bool [mscorlib]System.Collections.IEqualityComparer::Equals(object, object)
ret
}
.method assembly static int32 GenericHashObjArray(class [mscorlib]System.Collections.IEqualityComparer iec, object[] x) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.1
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_0042
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldarg.1
ldloc.1
callvirt instance object [mscorlib]System.Array::GetValue(int32)
callvirt instance int32 [mscorlib]System.Collections.IEqualityComparer::GetHashCode(object)
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_0042:
ldloc.2
ret
}
.method assembly static int32 GenericHashByteArray(uint8[] x) cil managed
{
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.0
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_003c
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldloc.1
ldelem [mscorlib]System.Byte
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_003c:
ldloc.2
ret
}
.method assembly static int32 GenericHashInt32Array(int32[] x) cil managed
{
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.0
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_003c
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldloc.1
ldelem [mscorlib]System.Int32
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_003c:
ldloc.2
ret
}
.method assembly static int32 GenericHashInt64Array(int64[] x) cil managed
{
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4)
ldarg.0
ldlen
conv.i4
stloc.0
ldloc.0
ldc.i4.1
sub
stloc.1
ldloc.1
ldc.i4.s 18
ble.s IL_0014
ldc.i4.s 18
stloc.1
br.s IL_0015
IL_0014:
IL_0015:
ldc.i4.0
stloc.2
IL_0017:
ldloc.1
ldc.i4.0
blt.s IL_003d
ldloc.1
stloc.3
ldloc.2
stloc.s V_4
ldloc.s V_4
ldc.i4.1
shl
ldarg.0
ldloc.1
ldelem [mscorlib]System.Int64
conv.i4
add
ldc.i4 0x277
ldloc.3
mul
add
stloc.2
ldloc.1
ldc.i4.1
sub
stloc.1
br.s IL_0017
IL_003d:
ldloc.2
ret
}
.method assembly static int32 GenericHashArbArray(class [mscorlib]System.Collections.IEqualityComparer iec, class [mscorlib]System.Array x) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (int32 V_0, int32 V_1, int32 V_2, int32 V_3, int32 V_4, int32 V_5)
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Rank()
ldc.i4.1
sub
switch (
IL_002c)
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLength(int32)
stloc.0
ldloc.0
ldc.i4.1
shl
ldarg.1
ldc.i4.1
callvirt instance int32 [mscorlib]System.Array::GetLength(int32)
add
ldc.i4 0x18a6
add
ret
IL_002c:
ldarg.1
ldc.i4.0
callvirt instance int32 [mscorlib]System.Array::GetLowerBound(int32)
stloc.0
ldarg.1
callvirt instance int32 [mscorlib]System.Array::get_Length()
stloc.1
ldloc.0
ldloc.1
add
ldc.i4.1
sub
stloc.2
ldloc.2
ldloc.0
ldc.i4.s 18
add
ble.s IL_0050
ldloc.0
ldc.i4.s 18
add
stloc.2
br.s IL_0051
IL_0050:
IL_0051:
ldc.i4.0
stloc.3
IL_0053:
ldloc.2
ldloc.0
blt.s IL_0080
ldloc.2
stloc.s V_4
ldloc.3
stloc.s V_5
ldloc.s V_5
ldc.i4.1
shl
ldarg.0
ldarg.1
ldloc.2
callvirt instance object [mscorlib]System.Array::GetValue(int32)
callvirt instance int32 [mscorlib]System.Collections.IEqualityComparer::GetHashCode(object)
add
ldc.i4 0x277
ldloc.s V_4
mul
add
stloc.3
ldloc.2
ldc.i4.1
sub
stloc.2
br.s IL_0053
IL_0080:
ldloc.3
ret
}
.method assembly static int32 GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer iec, object x) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (class [mscorlib]System.Array V_0, class [mscorlib]System.Array V_1, object[] V_2, object[] V_3, uint8[] V_4, uint8[] V_5, int32[] V_6, int32[] V_7, int64[] V_8, int64[] V_9, class [mscorlib]System.Collections.IStructuralEquatable V_10, class [mscorlib]System.Collections.IStructuralEquatable V_11)
ldarg.1
brfalse IL_009b
ldarg.1
isinst [mscorlib]System.Array
stloc.0
ldloc.0
brfalse.s IL_0077
ldloc.0
stloc.1
ldloc.1
isinst object[]
stloc.2
ldloc.2
brfalse.s IL_0027
ldloc.2
stloc.3
ldarg.0
ldloc.3
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashObjArray(class [mscorlib]System.Collections.IEqualityComparer, object[])
ret
IL_0027:
ldloc.1
isinst uint8[]
stloc.s V_4
ldloc.s V_4
brfalse.s IL_003f
ldloc.s V_4
stloc.s V_5
ldloc.s V_5
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashByteArray(uint8[])
ret
IL_003f:
ldloc.1
isinst int32[]
stloc.s V_6
ldloc.s V_6
brfalse.s IL_0057
ldloc.s V_6
stloc.s V_7
ldloc.s V_7
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashInt32Array(int32[])
ret
IL_0057:
ldloc.1
isinst int64[]
stloc.s V_8
ldloc.s V_8
brfalse.s IL_006f
ldloc.s V_8
stloc.s V_9
ldloc.s V_9
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashInt64Array(int64[])
ret
IL_006f:
ldarg.0
ldloc.1
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashArbArray(class [mscorlib]System.Collections.IEqualityComparer, class [mscorlib]System.Array)
ret
IL_0077:
ldarg.1
isinst [mscorlib]System.Collections.IStructuralEquatable
stloc.s V_10
ldloc.s V_10
brfalse.s IL_0092
ldloc.s V_10
stloc.s V_11
ldloc.s V_11
ldarg.0
tail.
callvirt instance int32 [mscorlib]System.Collections.IStructuralEquatable::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ret
IL_0092:
ldarg.1
tail.
callvirt instance int32 [mscorlib]System.Object::GetHashCode()
ret
IL_009b:
ldc.i4.0
ret
}
.property class [mscorlib]System.Exception
NaNException()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Exception Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_NaNException()
}
.property class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer
fsComparerER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/GenericComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsComparerER()
}
.property class [mscorlib]System.Collections.IEqualityComparer
fsEqualityComparerNoHashingPER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingPER()
}
.property class [mscorlib]System.Collections.IEqualityComparer
fsEqualityComparerNoHashingER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerNoHashingER()
}
.property class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER
fsEqualityComparerUnlimitedHashingER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingER()
}
.property class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER
fsEqualityComparerUnlimitedHashingPER()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class Microsoft.FSharp.Core.LanguagePrimitives/HashCompare/UnlimitedHasherPER Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::get_fsEqualityComparerUnlimitedHashingPER()
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int16Comparer@2302
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int16 x, int16 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int16>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int16IEquality@2224
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int16 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16>::GetHashCode(!0)
ldarg.1
conv.u2
ldarg.1
ldc.i4.s 16
shl
or
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int16 x, int16 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int16>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int32Comparer@2303
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int32 x, int32 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int32>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int32IEquality@2225
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int32 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int32 x, int32 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int32>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int64Comparer@2304
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int64 x, int64 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int64>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname Int64IEquality@2226
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int64 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64>::GetHashCode(!0)
ldarg.1
conv.i4
ldarg.1
ldc.i4.s 32
shr
conv.i4
xor
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int64 x, int64 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int64>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname IntPtrComparer@2305
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<native int>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(native int x, native int y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<native int>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname IntPtrIEquality@2227
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(native int obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int>::GetHashCode(!0)
ldarg.1
conv.u8
conv.i4
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(native int x, native int y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native int>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class abstract auto ansi sealed nested public IntrinsicFunctions
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto ansi serializable nested assembly beforefieldinit TypeInfo`1<T>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field static assembly int32 info
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private specialname rtspecialname static void .cctor() cil managed
{
ldtoken !T
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call int32 Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::getTypeInfo(class [mscorlib]System.Type)
stsfld int32 class Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions/TypeInfo`1<!T>::info
ret
}
}
.method public static bool TypeTestGeneric<T>(object source) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 4C 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 66 6F 72 20 75 73 65 20 62 79 20 63
6F 6D 70 69 6C 65 64 20 46 23 20 63 6F 64 65 20
61 6E 64 20 73 68 6F 75 6C 64 20 6E 6F 74 20 62
65 20 75 73 65 64 20 64 69 72 65 63 74 6C 79 B4
04 00 00 01 00 54 02 08 49 73 48 69 64 64 65 6E
01 )
ldarg.0
isinst !!T
ldnull
cgt.un
brfalse.s IL_000e
ldc.i4.1
ret
IL_000e:
ldarg.0
ldnull
cgt.un
brfalse.s IL_0016
ldc.i4.0
ret
IL_0016:
ldsfld int32 class Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions/TypeInfo`1<!!T>::info
ldc.i4.2
ceq
ret
}
.method assembly static int32 getTypeInfo(class [mscorlib]System.Type ty) cil managed
{
.locals init (object[] V_0, object[] V_1, object V_2, class Microsoft.FSharp.Core.CompilationRepresentationAttribute V_3)
ldarg.0
callvirt instance bool [mscorlib]System.Type::get_IsValueType()
brfalse.s IL_000b
ldc.i4.4
ret
IL_000b:
ldarg.0
ldtoken Microsoft.FSharp.Core.CompilationMappingAttribute
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldc.i4.0
callvirt instance object[] [mscorlib]System.Reflection.MemberInfo::GetCustomAttributes(class [mscorlib]System.Type, bool)
stloc.0
ldloc.0
ldlen
conv.i4
brtrue.s IL_0024
ldc.i4.1
ret
IL_0024:
ldarg.0
ldtoken Microsoft.FSharp.Core.Unit
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
callvirt instance bool [mscorlib]System.Type::Equals(class [mscorlib]System.Type)
brfalse.s IL_0038
ldc.i4.2
ret
IL_0038:
ldtoken [mscorlib]System.Delegate
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldarg.0
callvirt instance bool [mscorlib]System.Type::IsAssignableFrom(class [mscorlib]System.Type)
brfalse.s IL_004c
ldc.i4.1
ret
IL_004c:
ldarg.0
ldtoken Microsoft.FSharp.Core.AllowNullLiteralAttribute
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldc.i4.0
callvirt instance object[] [mscorlib]System.Reflection.MemberInfo::GetCustomAttributes(class [mscorlib]System.Type, bool)
ldlen
conv.i4
ldc.i4.0
ble.s IL_0064
ldc.i4.1
ret
IL_0064:
ldarg.0
ldtoken Microsoft.FSharp.Core.CompilationRepresentationAttribute
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
ldc.i4.0
callvirt instance object[] [mscorlib]System.Reflection.MemberInfo::GetCustomAttributes(class [mscorlib]System.Type, bool)
stloc.1
ldloc.1
ldlen
conv.i4
brtrue.s IL_007d
ldc.i4.3
ret
IL_007d:
ldloc.1
ldc.i4.0
ldelem [mscorlib]System.Object
stloc.2
ldloc.2
unbox.any Microsoft.FSharp.Core.CompilationRepresentationAttribute
stloc.3
ldloc.3
ldfld valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Microsoft.FSharp.Core.CompilationRepresentationAttribute::'flags'
ldc.i4.8
and
brtrue.s IL_0098
ldc.i4.3
ret
IL_0098:
ldc.i4.2
ret
}
.method public static void FailStaticInit() cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 4C 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 66 6F 72 20 75 73 65 20 62 79 20 63
6F 6D 70 69 6C 65 64 20 46 23 20 63 6F 64 65 20
61 6E 64 20 73 68 6F 75 6C 64 20 6E 6F 74 20 62
65 20 75 73 65 64 20 64 69 72 65 63 74 6C 79 B4
04 00 00 01 00 54 02 08 49 73 48 69 64 64 65 6E
01 )
ldstr "checkStaticInit"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname SByteComparer@2301
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<int8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(int8 x, int8 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<int8>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname SByteIEquality@2223
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(int8 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8>::GetHashCode(!0)
ldarg.1
ldc.i4.8
shl
ldarg.1
xor
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(int8 x, int8 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<int8>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname StringComparer@2300
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<string>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(string x, string y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<string>::Compare(!0, !0)
ldarg.1
ldarg.2
call int32 [mscorlib]System.String::CompareOrdinal(string, string)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname StringIEquality@2222
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(string obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string>::GetHashCode(!0)
ldarg.1
brfalse.s IL_000b
ldarg.1
call instance int32 [mscorlib]System.String::GetHashCode()
ret
IL_000b:
ldc.i4.0
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(string x, string y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<string>::Equals(!0, !0)
ldarg.1
ldarg.2
call bool [mscorlib]System.String::Equals(string, string)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt16Comparer@2307
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint16 x, uint16 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint16>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt16IEquality@2229
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint16 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint16 x, uint16 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint16>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt32Comparer@2308
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint32 x, uint32 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint32>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt32IEquality@2230
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint32 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32>::GetHashCode(!0)
ldarg.1
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint32 x, uint32 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint32>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt64Comparer@2309
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<uint64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(uint64 x, uint64 y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<uint64>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UInt64IEquality@2231
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(uint64 obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64>::GetHashCode(!0)
ldarg.1
conv.i4
ldarg.1
ldc.i4.s 32
shr.un
conv.i4
xor
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(uint64 x, uint64 y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<uint64>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UIntPtrComparer@2310
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IComparer`1<native uint>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IComparer`1-Compare'(native uint x, native uint y) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IComparer`1<native uint>::Compare(!0, !0)
ldarg.1
ldarg.2
bge.un.s IL_0007
ldc.i4.m1
ret
IL_0007:
ldarg.1
ldarg.2
cgt.un
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname UIntPtrIEquality@2232
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEqualityComparer`1-GetHashCode'(native uint obj) cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint>::GetHashCode(!0)
ldarg.1
conv.u8
conv.i4
ldc.i4 0x7fffffff
and
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-Generic-IEqualityComparer`1-Equals'(native uint x, native uint y) cil managed
{
.override method instance bool class [mscorlib]System.Collections.Generic.IEqualityComparer`1<native uint>::Equals(!0, !0)
ldarg.1
ldarg.2
ceq
ret
}
}
.method assembly static string anyToStringShowingNull<T>(!!T x) cil managed
{
.locals init (object V_0, class [mscorlib]System.IFormattable V_1, class [mscorlib]System.IFormattable V_2, object V_3)
ldarg.0
box !!T
stloc.0
ldloc.0
brfalse.s IL_0031
ldloc.0
isinst [mscorlib]System.IFormattable
stloc.1
ldloc.1
brfalse.s IL_0026
ldloc.1
stloc.2
ldloc.2
ldnull
call class [mscorlib]System.Globalization.CultureInfo [mscorlib]System.Globalization.CultureInfo::get_InvariantCulture()
tail.
callvirt instance string [mscorlib]System.IFormattable::ToString(string, class [mscorlib]System.IFormatProvider)
ret
IL_0026:
ldloc.0
stloc.3
ldloc.3
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_0031:
ldstr "null"
ret
}
.method public specialname static class [mscorlib]System.Collections.IComparer get_GenericComparer() cil managed
{
ldsfld class [mscorlib]System.Collections.IComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericComparer@2195
ret
}
.method public specialname static class [mscorlib]System.Collections.IEqualityComparer get_GenericEqualityComparer() cil managed
{
ldsfld class [mscorlib]System.Collections.IEqualityComparer '<StartupCode$FSharp-Core>'.'$Prim-types'::GenericEqualityComparer@2196
ret
}
.property class [mscorlib]System.Collections.IComparer
GenericComparer()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
}
.property class [mscorlib]System.Collections.IEqualityComparer
GenericEqualityComparer()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 09 00 00 00 00 00 )
.get class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericEqualityComparer()
}
}
.class public abstract auto ansi serializable beforefieldinit Microsoft.FSharp.Core.FSharpFunc`2<T,TResult>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.AbstractClassAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method public hidebysig abstract virtual instance !TResult Invoke(!T func) cil managed
{
}
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
}
.class private abstract auto ansi sealed Microsoft.FSharp.Collections.Internal
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class abstract auto ansi sealed nested assembly IEnumerator
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname filter@182<T>
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,
[mscorlib]System.IDisposable,
[mscorlib]System.Collections.IEnumerator
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f
.field public class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> e
.field public class Microsoft.FSharp.Core.FSharpRef`1<bool> started
.method public specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f, class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> e, class Microsoft.FSharp.Core.FSharpRef`1<bool> started) cil managed
{
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::f
ldarg.0
ldarg.2
stfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
ldarg.0
ldarg.3
stfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance !T 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
.locals init (bool V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<bool>::contents@
stloc.0
ldloc.0
brtrue.s IL_0019
call !!0 Microsoft.FSharp.Collections.IEnumerator::notStarted<class Microsoft.FSharp.Core.Unit>()
pop
br.s IL_001a
IL_0019:
IL_001a:
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
tail.
callvirt instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
ret
}
.method private hidebysig newslot virtual final instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
.locals init (bool V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<bool>::contents@
stloc.0
ldloc.0
brtrue.s IL_0019
call !!0 Microsoft.FSharp.Collections.IEnumerator::notStarted<class Microsoft.FSharp.Core.Unit>()
pop
br.s IL_001a
IL_0019:
IL_001a:
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
callvirt instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
box !T
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> V_0, class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> V_1, class Microsoft.FSharp.Core.FSharpRef`1<bool> V_2)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::f
stloc.0
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
stloc.1
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
stloc.2
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::f
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<bool> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::started
ldnull
call bool Microsoft.FSharp.Collections.Internal/IEnumerator::next@187<!T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>, class Microsoft.FSharp.Core.FSharpRef`1<bool>, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldstr "resetNotSupported"
newobj instance void [mscorlib]System.NotSupportedException::.ctor(string)
throw
}
.method private hidebysig newslot virtual final instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!T>::e
tail.
callvirt instance void [mscorlib]System.IDisposable::Dispose()
ret
}
}
.method assembly static bool next@187<T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool> f, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> e, class Microsoft.FSharp.Core.FSharpRef`1<bool> started, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
IL_0000:
ldarg.2
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<bool>::contents@
brtrue.s IL_0013
ldarg.2
ldc.i4.1
call instance void class Microsoft.FSharp.Core.FSharpRef`1<bool>::set_contents(!0)
br.s IL_0014
IL_0013:
IL_0014:
ldarg.1
callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
brfalse.s IL_003a
ldarg.0
ldarg.1
callvirt instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T>::get_Current()
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool>::Invoke(!0)
brfalse.s IL_002c
ldc.i4.1
ret
IL_002c:
ldarg.0
ldarg.1
ldarg.2
ldnull
starg.s unitVar0
starg.s started
starg.s e
starg.s f
br.s IL_0000
IL_003a:
ldc.i4.0
ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> 'filter'<T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool> f, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> e) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<bool> V_0)
ldc.i4.0
newobj instance void class Microsoft.FSharp.Core.FSharpRef`1<bool>::.ctor(!0)
stloc.0
ldarg.0
ldarg.1
ldloc.0
newobj instance void class Microsoft.FSharp.Collections.Internal/IEnumerator/filter@182<!!T>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool>,
class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>,
class Microsoft.FSharp.Core.FSharpRef`1<bool>)
ret
}
}
}
.class public abstract auto ansi sealed Microsoft.FSharp.Collections.SeqModule
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationRepresentationAttribute::.ctor(valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags) = ( 01 00 04 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.RequireQualifiedAccessAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto ansi serializable sealed nested assembly beforefieldinit Filter@583<T>
extends class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>>
{
.field public class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f
.method assembly specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!T,bool> f) cil managed
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>>::.ctor()
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.SeqModule/Filter@583<!T>::f
ret
}
.method public strict virtual instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> Invoke(class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> e) cil managed
{
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool> class Microsoft.FSharp.Collections.SeqModule/Filter@583<!T>::f
ldarg.1
call class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0> Microsoft.FSharp.Collections.Internal/IEnumerator::'filter'<!T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!0,bool>, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>)
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit revamp@574<b,a>
extends class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>>
{
.field public class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>> f
.field public class [mscorlib]System.Collections.Generic.IEnumerable`1<!a> ie
.method assembly specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>> f, class [mscorlib]System.Collections.Generic.IEnumerable`1<!a> ie) cil managed
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>>::.ctor()
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!1>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::f
ldarg.0
ldarg.2
stfld class [mscorlib]System.Collections.Generic.IEnumerable`1<!1> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::ie
ret
}
.method public strict virtual instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!b> Invoke(class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!1>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::f
ldarg.0
ldfld class [mscorlib]System.Collections.Generic.IEnumerable`1<!1> class Microsoft.FSharp.Collections.SeqModule/revamp@574<!b,!a>::ie
callvirt instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!a>::GetEnumerator()
tail.
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!b>>::Invoke(!0)
ret
}
}
.method public static class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T> Filter<T>(class Microsoft.FSharp.Core.FSharpFunc`2<!!T,bool> predicate, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T> source) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationSourceNameAttribute::.ctor(string) = ( 01 00 06 66 69 6C 74 65 72 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
ldarg.1
box class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T>
brfalse.s IL_000b
br.s IL_0016
IL_000b:
ldstr "source"
newobj instance void [mscorlib]System.ArgumentNullException::.ctor(string)
throw
IL_0016:
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.SeqModule/Filter@583<!!T>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<!0,bool>)
ldarg.1
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!1> Microsoft.FSharp.Collections.SeqModule::revamp<!!0,!!0>(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!1>>, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)
ret
}
.method public static int32 Length<T>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T> source) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationSourceNameAttribute::.ctor(string) = ( 01 00 06 6C 65 6E 67 74 68 00 00 )
.locals init (!!T[] V_0, !!T[] V_1, class Microsoft.FSharp.Collections.FSharpList`1<!!T> V_2, class Microsoft.FSharp.Collections.FSharpList`1<!!T> V_3, class [mscorlib]System.Collections.Generic.ICollection`1<!!T> V_4, class [mscorlib]System.Collections.Generic.ICollection`1<!!T> V_5, class [mscorlib]System.Collections.Generic.IEnumerator`1<!!T> V_6, int32 V_7, int32 V_8, class [mscorlib]System.IDisposable V_9)
ldarg.0
box class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T>
brfalse.s IL_000b
br.s IL_0016
IL_000b:
ldstr "source"
newobj instance void [mscorlib]System.ArgumentNullException::.ctor(string)
throw
IL_0016:
ldarg.0
isinst !!T[]
stloc.0
ldloc.0
brfalse.s IL_0027
ldloc.0
stloc.1
ldloc.1
ldlen
conv.i4
ret
IL_0027:
ldarg.0
isinst class Microsoft.FSharp.Collections.FSharpList`1<!!T>
stloc.2
ldloc.2
brfalse.s IL_003a
ldloc.2
stloc.3
ldloc.3
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!!T>::get_Length()
ret
IL_003a:
ldarg.0
isinst class [mscorlib]System.Collections.Generic.ICollection`1<!!T>
stloc.s V_4
ldloc.s V_4
brfalse.s IL_0054
ldloc.s V_4
stloc.s V_5
ldloc.s V_5
tail.
callvirt instance int32 class [mscorlib]System.Collections.Generic.ICollection`1<!!T>::get_Count()
ret
IL_0054:
ldarg.0
callvirt instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!!T>::GetEnumerator()
stloc.s V_6
.try
{
ldc.i4.0
stloc.s V_8
IL_005f:
ldloc.s V_6
callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
brfalse.s IL_0071
ldloc.s V_8
ldc.i4.1
add
stloc.s V_8
br.s IL_005f
IL_0071:
ldloc.s V_8
stloc.s V_7
leave.s IL_0091
}
finally
{
IL_0077: ldloc.s V_6
IL_0079: isinst [mscorlib]System.IDisposable
IL_007e: stloc.s V_9
IL_0080: ldloc.s V_9
IL_0082: brfalse.s IL_008e
IL_0084: ldloc.s V_9
IL_0086: callvirt instance void [mscorlib]System.IDisposable::Dispose()
IL_008b: ldnull
IL_008c: pop
IL_008d: endfinally
IL_008e: ldnull
IL_008f: pop
IL_0090: endfinally
}
IL_0091: ldloc.s V_7
IL_0093: ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerable`1<!!b> revamp<a,b>(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!!a>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!b>> f, class [mscorlib]System.Collections.Generic.IEnumerable`1<!!a> ie) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
ldarg.0
ldarg.1
newobj instance void class Microsoft.FSharp.Collections.SeqModule/revamp@574<!!b,!!a>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class [mscorlib]System.Collections.Generic.IEnumerator`1<!1>,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>>,
class [mscorlib]System.Collections.Generic.IEnumerable`1<!1>)
call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> Microsoft.FSharp.Collections.IEnumerator::mkSeq<!!1>(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!0>>)
ret
}
}
.class private abstract auto ansi sealed Microsoft.FSharp.Collections.PrivateListHelpers
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto ansi serializable nested assembly beforefieldinit ListEnumerator`1<T>
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>,
[mscorlib]System.Collections.IEnumerator,
[mscorlib]System.IDisposable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly class Microsoft.FSharp.Collections.FSharpList`1<!T> s
.field assembly class Microsoft.FSharp.Collections.FSharpList`1<!T> curr
.field assembly bool started
.method public specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Collections.FSharpList`1<!T> s) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::s
ldarg.0
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::s
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldarg.0
ldc.i4.0
stfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
ret
}
.method assembly hidebysig instance !T GetCurrent() cil managed
{
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0)
ldarg.0
ldfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
brfalse.s IL_0025
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
stloc.0
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_001f
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
ret
IL_001f:
call !!0 Microsoft.FSharp.Collections.PrivateListHelpers::alreadyFinished<!T>()
ret
IL_0025:
call !!0 Microsoft.FSharp.Collections.PrivateListHelpers::notStarted<!T>()
ret
}
.method private hidebysig newslot specialname virtual instance !T 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<!T>::get_Current()
ldarg.0
callvirt instance !0 class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::GetCurrent()
ret
}
.method private hidebysig newslot virtual instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2)
ldarg.0
ldfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
brfalse.s IL_003c
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
stloc.0
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_003a
ldloc.0
stloc.1
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.2
ldarg.0
ldloc.2
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
ceq
ldc.i4.0
ceq
ret
IL_003a:
ldc.i4.0
ret
IL_003c:
ldarg.0
ldc.i4.1
stfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
ceq
ldc.i4.0
ceq
ret
}
.method private hidebysig newslot specialname virtual instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
ldarg.0
callvirt instance !0 class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::GetCurrent()
box !T
ret
}
.method private hidebysig newslot virtual instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldarg.0
ldc.i4.0
stfld bool class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::started
ldarg.0
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::s
stfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::curr
ret
}
.method private hidebysig newslot virtual instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ret
}
}
.method assembly static !!a notStarted<a>() cil managed
{
ldstr "enumerationNotStarted"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static !!a alreadyFinished<a>() cil managed
{
ldstr "enumerationAlreadyFinished"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static int32 lengthAcc<a>(int32 acc, class Microsoft.FSharp.Collections.FSharpList`1<!!a> xs) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!!a> V_0)
IL_0000:
ldarg.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!!a>::tail
brfalse.s IL_001a
ldarg.1
stloc.0
ldarg.0
ldc.i4.1
add
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!!a>::tail
starg.s xs
starg.s acc
br.s IL_0000
IL_001a:
ldarg.0
ret
}
}
.class public auto autochar serializable sealed beforefieldinit Microsoft.FSharp.Collections.FSharpList`1<T>
extends [mscorlib]System.Object
implements class [mscorlib]System.IEquatable`1<class Microsoft.FSharp.Collections.FSharpList`1<!T>>,
[mscorlib]System.Collections.IStructuralEquatable,
[mscorlib]System.IComparable,
class [mscorlib]System.IComparable`1<class Microsoft.FSharp.Collections.FSharpList`1<!T>>,
class [mscorlib]System.Collections.Generic.IReadOnlyCollection`1<!T>,
[mscorlib]System.Collections.IStructuralComparable,
[mscorlib]System.Collections.IEnumerable,
class [mscorlib]System.Collections.Generic.IEnumerable`1<!T>
{
.custom instance void [mscorlib]System.Reflection.DefaultMemberAttribute::.ctor(string) = ( 01 00 04 49 74 65 6D 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralEqualityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralComparisonAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompiledNameAttribute::.ctor(string) = ( 01 00 0C 46 53 68 61 72 70 4C 69 73 74 60 31 00
00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerTypeProxyAttribute::.ctor(class [mscorlib]System.Type) = ( 01 00 2C 4D 69 63 72 6F 73 6F 66 74 2E 46 53 68
61 72 70 2E 43 6F 6C 6C 65 63 74 69 6F 6E 73 2E
4C 69 73 74 44 65 62 75 67 56 69 65 77 60 31 00
00 )
.custom instance void Microsoft.FSharp.Core.DefaultAugmentationAttribute::.ctor(bool) = ( 01 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 01 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerDisplayAttribute::.ctor(string) = ( 01 00 11 7B 44 65 62 75 67 44 69 73 70 6C 61 79
2C 6E 71 7D 00 00 )
.field assembly !T head
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field assembly class Microsoft.FSharp.Collections.FSharpList`1<!T> tail
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.field static assembly initonly class Microsoft.FSharp.Collections.FSharpList`1<!T> _unique_Empty
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.method private specialname rtspecialname static void .cctor() cil managed
{
newobj instance void class Microsoft.FSharp.Collections.FSharpList`1<!T>::.ctor()
stsfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::_unique_Empty
ret
}
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
.method public hidebysig virtual final instance int32 CompareTo(class Microsoft.FSharp.Collections.FSharpList`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, int32 V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, int32 V_4, class [mscorlib]System.Collections.IComparer V_5, !T V_6, !T V_7, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_8, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_9)
ldarg.0
ldnull
cgt.un
brfalse IL_0096
ldarg.1
ldnull
cgt.un
brfalse IL_0094
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.0
ldarg.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldloc.1
bne.un.s IL_0090
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_008e
ldarg.0
stloc.2
ldarg.1
stloc.3
call class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
stloc.s V_5
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_6
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_7
ldloc.s V_5
ldloc.s V_6
ldloc.s V_7
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
stloc.s V_4
ldloc.s V_4
ldc.i4.0
bge.s IL_0063
ldloc.s V_4
ret
IL_0063:
ldloc.s V_4
ldc.i4.0
ble.s IL_006b
ldloc.s V_4
ret
IL_006b:
call class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
stloc.s V_5
ldloc.2
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_8
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_9
ldloc.s V_8
ldloc.s V_9
ldloc.s V_5
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::CompareTo(object, class [mscorlib]System.Collections.IComparer)
ret
IL_008e:
ldc.i4.0
ret
IL_0090:
ldloc.0
ldloc.1
sub
ret
IL_0094:
ldc.i4.1
ret
IL_0096:
ldarg.1
ldnull
cgt.un
brfalse.s IL_009e
ldc.i4.m1
ret
IL_009e:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::CompareTo(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj, class [mscorlib]System.Collections.IComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, int32 V_1, int32 V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_4, int32 V_5, !T V_6, !T V_7, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_8, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_9)
IL_0000:
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
stloc.0
ldarg.0
ldnull
cgt.un
brfalse IL_009a
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
ldnull
cgt.un
brfalse IL_0098
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.2
ldloc.1
ldloc.2
bne.un.s IL_0094
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0092
ldarg.0
stloc.3
ldloc.0
stloc.s V_4
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_6
ldloc.s V_4
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_7
ldarg.2
ldloc.s V_6
ldloc.s V_7
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
stloc.s V_5
ldloc.s V_5
ldc.i4.0
bge.s IL_0069
ldloc.s V_5
ret
IL_0069:
ldloc.s V_5
ldc.i4.0
ble.s IL_0071
ldloc.s V_5
ret
IL_0071:
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_8
ldloc.s V_4
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_9
ldloc.s V_8
ldloc.s V_9
ldarg.2
starg.s comp
starg.s obj
starg.s 0
br IL_0000
IL_0092:
ldc.i4.0
ret
IL_0094:
ldloc.1
ldloc.2
sub
ret
IL_0098:
ldc.i4.1
ret
IL_009a:
ldarg.1
unbox.any class Microsoft.FSharp.Collections.FSharpList`1<!T>
ldnull
cgt.un
brfalse.s IL_00a7
ldc.i4.m1
ret
IL_00a7:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode(class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_1, !T V_2)
ldarg.0
ldnull
cgt.un
brfalse.s IL_005e
ldc.i4.0
stloc.0
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0054
ldarg.0
stloc.1
ldc.i4.1
stloc.0
ldc.i4 0x9e3779b9
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldarg.1
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ldloc.0
ldc.i4.6
shl
ldloc.0
ldc.i4.2
shr
add
add
add
stloc.0
ldc.i4 0x9e3779b9
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.2
ldarg.1
ldloc.2
box !T
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ldloc.0
ldc.i4.6
shl
ldloc.0
ldc.i4.2
shr
add
add
add
stloc.0
ldloc.0
ret
IL_0054:
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
ret
IL_005e:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericEqualityComparer()
callvirt instance int32 class Microsoft.FSharp.Collections.FSharpList`1<!T>::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ret
}
.method public hidebysig virtual final instance bool Equals(object obj, class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, int32 V_1, int32 V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_4, !T V_5, !T V_6, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_7, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_8)
IL_0001:
ldarg.0
ldnull
cgt.un
brfalse IL_007f
ldarg.1
isinst class Microsoft.FSharp.Collections.FSharpList`1<!T>
stloc.0
ldloc.0
brfalse.s IL_007d
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.2
ldloc.1
ldloc.2
bne.un.s IL_007b
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0079
ldarg.0
stloc.3
ldloc.0
stloc.s V_4
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
ldloc.s V_4
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_6
ldarg.2
ldloc.s V_5
ldloc.s V_6
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IEqualityComparer, !!0, !!0)
brfalse.s IL_0077
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_7
ldloc.s V_4
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.s V_8
ldloc.s V_7
ldloc.s V_8
ldarg.2
starg.s comp
starg.s obj
starg.s 0
br IL_0001
IL_0077:
ldc.i4.0
ret
IL_0079:
ldc.i4.1
ret
IL_007b:
ldc.i4.0
ret
IL_007d:
ldc.i4.0
ret
IL_007f:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(class Microsoft.FSharp.Collections.FSharpList`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, int32 V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_3, !T V_4, !T V_5)
IL_0001:
ldarg.0
ldnull
cgt.un
brfalse.s IL_0066
ldarg.1
ldnull
cgt.un
brfalse.s IL_0064
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.0
ldarg.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldnull
cgt.un
stloc.1
ldloc.0
ldloc.1
bne.un.s IL_0062
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse.s IL_0060
ldarg.0
stloc.2
ldarg.1
stloc.3
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
ldloc.3
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
ldloc.s V_4
ldloc.s V_5
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityERIntrinsic<!T>(!!0, !!0)
brfalse.s IL_005e
ldloc.2
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldloc.3
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
starg.s obj
starg.s 0
br.s IL_0001
IL_005e:
ldc.i4.0
ret
IL_0060:
ldc.i4.1
ret
IL_0062:
ldc.i4.0
ret
IL_0064:
ldc.i4.0
ret
IL_0066:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0)
ldarg.1
isinst class Microsoft.FSharp.Collections.FSharpList`1<!T>
stloc.0
ldloc.0
brfalse.s IL_0013
ldarg.0
ldloc.0
callvirt instance bool class Microsoft.FSharp.Collections.FSharpList`1<!T>::Equals(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
IL_0013:
ldc.i4.0
ret
}
.method public hidebysig specialname instance int32 get_Length() cil managed
{
ldc.i4.0
ldarg.0
call int32 Microsoft.FSharp.Collections.PrivateListHelpers::lengthAcc<!T>(int32, class Microsoft.FSharp.Collections.FSharpList`1<!!0>)
ret
}
.method public hidebysig virtual instance string ToString() cil managed
{
.locals init (class Microsoft.FSharp.Collections.FSharpList`1<!T> V_0, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_1, class Microsoft.FSharp.Collections.FSharpList`1<!T> V_2, !T V_3, !T V_4, !T V_5)
ldarg.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse IL_01ab
ldarg.0
stloc.0
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse IL_0178
ldloc.0
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.1
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brfalse IL_0127
ldloc.1
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
stloc.2
ldloc.2
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
ldfld class Microsoft.FSharp.Collections.FSharpList`1<!0> class Microsoft.FSharp.Collections.FSharpList`1<!T>::tail
brtrue.s IL_00b8
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_5
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_4
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_00b8:
ldloc.2
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_5
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_5
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_4
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; ... ]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_0127:
ldloc.1
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.s V_4
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.s V_4
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "; "
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_0178:
ldloc.0
ldfld !0 class Microsoft.FSharp.Collections.FSharpList`1<!T>::head
stloc.3
newobj instance void [mscorlib]System.Text.StringBuilder::.ctor()
ldstr "["
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldloc.3
call string Microsoft.FSharp.Core.LanguagePrimitives::anyToStringShowingNull<!T>(!!0)
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
ldstr "]"
callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
tail.
callvirt instance string [mscorlib]System.Object::ToString()
ret
IL_01ab:
ldstr "[]"
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!T> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!T>::GetEnumerator()
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::.ctor(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
}
.method private hidebysig newslot virtual instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.PrivateListHelpers/ListEnumerator`1<!T>::.ctor(class Microsoft.FSharp.Collections.FSharpList`1<!0>)
ret
}
.method private hidebysig newslot specialname virtual instance int32 'System-Collections-Generic-IReadOnlyCollection`1-get_Count'() cil managed
{
.override method instance int32 class [mscorlib]System.Collections.Generic.IReadOnlyCollection`1<!T>::get_Count()
ldc.i4.0
ldarg.0
call int32 Microsoft.FSharp.Collections.PrivateListHelpers::lengthAcc<!T>(int32, class Microsoft.FSharp.Collections.FSharpList`1<!!0>)
ret
}
.property instance int32 Length()
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.get instance int32 Microsoft.FSharp.Collections.FSharpList`1::get_Length()
}
}
.class private abstract auto ansi sealed Microsoft.FSharp.Collections.IEnumerator
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname mkSeq@133<TResult>
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerable`1<!TResult>,
[mscorlib]System.Collections.IEnumerable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>> f
.method public specialname rtspecialname instance void .ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>> f) cil managed
{
ldarg.0
ldarg.1
stfld class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!TResult>::f
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<!TResult>::GetEnumerator()
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!TResult>::f
ldnull
tail.
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>>::Invoke(!0)
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>> class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!TResult>::f
ldnull
callvirt instance !1 class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!TResult>>::Invoke(!0)
ret
}
}
.method assembly static !!a notStarted<a>() cil managed
{
ldstr "enumerationNotStarted"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerable`1<!!TResult> mkSeq<TResult>(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!!TResult>> f) cil managed
{
ldarg.0
newobj instance void class Microsoft.FSharp.Collections.IEnumerator/mkSeq@133<!!TResult>::.ctor(class Microsoft.FSharp.Core.FSharpFunc`2<class Microsoft.FSharp.Core.Unit,class [mscorlib]System.Collections.Generic.IEnumerator`1<!0>>)
ret
}
}
.class private auto ansi serializable beforefieldinit Microsoft.FSharp.Collections.ListDebugView`1<T>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.AbstractClassAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.AllowNullLiteralAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly bool 'value'
.method public specialname rtspecialname instance void .ctor(bool 'value') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.AllowNullLiteralAttribute::'value'
ret
}
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
ldc.i4.1
callvirt instance void Microsoft.FSharp.Core.AllowNullLiteralAttribute::.ctor(bool)
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.AutoOpenAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 05 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 01 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly string path
.method public specialname rtspecialname instance void .ctor(string path) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.AutoOpenAttribute::path
ret
}
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
ldstr ""
callvirt instance void Microsoft.FSharp.Core.AutoOpenAttribute::.ctor(string)
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationArgumentCountsAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 40 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.field assembly int32[] counts
.method public specialname rtspecialname instance void .ctor(int32[] counts) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld int32[] Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::counts
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationMappingAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.field assembly int32 variantNumber
.field assembly class [mscorlib]System.Type[] typeDefinitions
.field assembly valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags
.field assembly int32 sequenceNumber
.field assembly string resourceName
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags) cil managed
{
ldarg.0
ldarg.1
ldc.i4.0
ldc.i4.0
callvirt instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags, int32, int32)
ret
}
.method assembly specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags, int32 variantNumber, int32 sequenceNumber, string resourceName, class [mscorlib]System.Type[] typeDefinitions) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld valuetype Microsoft.FSharp.Core.SourceConstructFlags Microsoft.FSharp.Core.CompilationMappingAttribute::sourceConstructFlags
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.CompilationMappingAttribute::variantNumber
ldarg.0
ldarg.3
stfld int32 Microsoft.FSharp.Core.CompilationMappingAttribute::sequenceNumber
ldarg.0
ldarg.s resourceName
stfld string Microsoft.FSharp.Core.CompilationMappingAttribute::resourceName
ldarg.0
ldarg.s typeDefinitions
stfld class [mscorlib]System.Type[] Microsoft.FSharp.Core.CompilationMappingAttribute::typeDefinitions
ret
}
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags, int32 variantNumber, int32 sequenceNumber) cil managed
{
ldarg.0
ldarg.1
ldarg.2
ldarg.3
ldnull
ldnull
callvirt instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags, int32, int32, string, class [mscorlib]System.Type[])
ret
}
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags sourceConstructFlags, int32 sequenceNumber) cil managed
{
ldarg.0
ldarg.1
ldc.i4.0
ldarg.2
callvirt instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags, int32, int32)
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationRepresentationAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.field assembly valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags 'flags'
.method public specialname rtspecialname instance void .ctor(valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags 'flags') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Microsoft.FSharp.Core.CompilationRepresentationAttribute::'flags'
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationRepresentationFlags
extends [mscorlib]System.Enum
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.FlagsAttribute::.ctor() = ( 01 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags None = int32(0x00000000)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Static = int32(0x00000001)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Instance = int32(0x00000002)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags ModuleSuffix = int32(0x00000004)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags UseNullAsTrueValue = int32(0x00000008)
.field public static literal valuetype Microsoft.FSharp.Core.CompilationRepresentationFlags Event = int32(0x00000010)
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilationSourceNameAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.field assembly string sourceName
.method public specialname rtspecialname instance void .ctor(string sourceName) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.CompilationSourceNameAttribute::sourceName
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompiledNameAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 DC 15 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.field assembly string compiledName
.method public specialname rtspecialname instance void .ctor(string compiledName) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.CompiledNameAttribute::compiledName
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.CompilerMessageAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 FF 7F 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly int32 messageNumber
.field assembly string message
.field assembly bool isError
.field assembly bool isHidden
.method public specialname rtspecialname instance void .ctor(string message, int32 messageNumber) cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld string Microsoft.FSharp.Core.CompilerMessageAttribute::message
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.CompilerMessageAttribute::messageNumber
ldarg.0
ldc.i4.0
stfld bool Microsoft.FSharp.Core.CompilerMessageAttribute::isError
ldarg.0
ldc.i4.0
stfld bool Microsoft.FSharp.Core.CompilerMessageAttribute::isHidden
ret
}
.method public hidebysig specialname instance void set_IsHidden(bool v) cil managed
{
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.CompilerMessageAttribute::isHidden
ret
}
.property instance bool IsHidden()
{
.set instance void Microsoft.FSharp.Core.CompilerMessageAttribute::set_IsHidden(bool)
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.DefaultAugmentationAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.field assembly bool 'value'
.method public specialname rtspecialname instance void .ctor(bool 'value') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.DefaultAugmentationAttribute::'value'
ret
}
}
.class public auto ansi serializable sealed beforefieldinit Microsoft.FSharp.Core.FSharpRef`1<T>
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IStructuralComparable,
[mscorlib]System.IComparable,
class [mscorlib]System.IComparable`1<class Microsoft.FSharp.Core.FSharpRef`1<!T>>,
[mscorlib]System.Collections.IStructuralEquatable,
class [mscorlib]System.IEquatable`1<class Microsoft.FSharp.Core.FSharpRef`1<!T>>
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerDisplayAttribute::.ctor(string) = ( 01 00 0A 7B 63 6F 6E 74 65 6E 74 73 7D 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralComparisonAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.StructuralEqualityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompiledNameAttribute::.ctor(string) = ( 01 00 0B 46 53 68 61 72 70 52 65 66 60 31 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 02 00 00 00 00 00 )
.field public !T contents@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method public hidebysig specialname instance void set_contents(!T 'value') cil managed
{
ldarg.0
ldarg.1
stfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
ret
}
.method public specialname rtspecialname instance void .ctor(!T contents) cil managed
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ldarg.0
ldarg.1
stfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
ret
}
.method public hidebysig virtual final instance int32 CompareTo(class Microsoft.FSharp.Core.FSharpRef`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class [mscorlib]System.Collections.IComparer V_0, !T V_1, !T V_2)
ldarg.0
ldnull
cgt.un
brfalse.s IL_002e
ldarg.1
ldnull
cgt.un
brfalse.s IL_002c
call class [mscorlib]System.Collections.IComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericComparer()
stloc.0
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldarg.1
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.2
ldloc.0
ldloc.1
ldloc.2
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
ret
IL_002c:
ldc.i4.1
ret
IL_002e:
ldarg.1
ldnull
cgt.un
brfalse.s IL_0036
ldc.i4.m1
ret
IL_0036:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
tail.
callvirt instance int32 class Microsoft.FSharp.Core.FSharpRef`1<!T>::CompareTo(class Microsoft.FSharp.Core.FSharpRef`1<!0>)
ret
}
.method public hidebysig virtual final instance int32 CompareTo(object obj, class [mscorlib]System.Collections.IComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<!T> V_0, !T V_1, !T V_2)
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
stloc.0
ldarg.0
ldnull
cgt.un
brfalse.s IL_0034
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
ldnull
cgt.un
brfalse.s IL_0032
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldloc.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.2
ldarg.2
ldloc.1
ldloc.2
tail.
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericComparisonWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IComparer, !!0, !!0)
ret
IL_0032:
ldc.i4.1
ret
IL_0034:
ldarg.1
unbox.any class Microsoft.FSharp.Core.FSharpRef`1<!T>
ldnull
cgt.un
brfalse.s IL_0041
ldc.i4.m1
ret
IL_0041:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode(class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (int32 V_0, !T V_1)
ldarg.0
ldnull
cgt.un
brfalse.s IL_002d
ldc.i4.0
stloc.0
ldc.i4 0x9e3779b9
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldarg.1
ldloc.1
box !T
call int32 Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericHashParamObj(class [mscorlib]System.Collections.IEqualityComparer, object)
ldloc.0
ldc.i4.6
shl
ldloc.0
ldc.i4.2
shr
add
add
add
stloc.0
ldloc.0
ret
IL_002d:
ldc.i4.0
ret
}
.method public hidebysig virtual final instance int32 GetHashCode() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
call class [mscorlib]System.Collections.IEqualityComparer Microsoft.FSharp.Core.LanguagePrimitives::get_GenericEqualityComparer()
callvirt instance int32 class Microsoft.FSharp.Core.FSharpRef`1<!T>::GetHashCode(class [mscorlib]System.Collections.IEqualityComparer)
ret
}
.method public hidebysig virtual final instance bool Equals(object obj, class [mscorlib]System.Collections.IEqualityComparer comp) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<!T> V_0, !T V_1, !T V_2)
ldarg.0
ldnull
cgt.un
brfalse.s IL_002c
ldarg.1
isinst class Microsoft.FSharp.Core.FSharpRef`1<!T>
stloc.0
ldloc.0
brfalse.s IL_002a
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldloc.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.2
ldarg.2
ldloc.1
ldloc.2
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityWithComparerIntrinsic<!T>(class [mscorlib]System.Collections.IEqualityComparer, !!0, !!0)
ret
IL_002a:
ldc.i4.0
ret
IL_002c:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(class Microsoft.FSharp.Core.FSharpRef`1<!T> obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (!T V_0, !T V_1)
ldarg.0
ldnull
cgt.un
brfalse.s IL_0027
ldarg.1
ldnull
cgt.un
brfalse.s IL_0025
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.0
ldarg.1
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<!T>::contents@
stloc.1
ldloc.0
ldloc.1
tail.
call bool Microsoft.FSharp.Core.LanguagePrimitives/HashCompare::GenericEqualityERIntrinsic<!T>(!!0, !!0)
ret
IL_0025:
ldc.i4.0
ret
IL_0027:
ldarg.1
ldnull
cgt.un
ldc.i4.0
ceq
ret
}
.method public hidebysig virtual final instance bool Equals(object obj) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<!T> V_0)
ldarg.1
isinst class Microsoft.FSharp.Core.FSharpRef`1<!T>
stloc.0
ldloc.0
brfalse.s IL_0015
ldarg.0
ldloc.0
tail.
callvirt instance bool class Microsoft.FSharp.Core.FSharpRef`1<!T>::Equals(class Microsoft.FSharp.Core.FSharpRef`1<!0>)
ret
IL_0015:
ldc.i4.0
ret
}
.property instance !T contents()
{
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 00 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.FSharpRef`1::set_contents(!T)
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.NoComparisonAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 1C 14 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.NoEqualityAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 1C 14 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public abstract auto ansi sealed Microsoft.FSharp.Core.Operators
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.AutoOpenAttribute::.ctor() = ( 01 00 00 00 )
.class abstract auto ansi sealed nested public OperatorIntrinsics
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 07 00 00 00 00 00 )
.class auto autochar serializable sealed nested assembly beforefieldinit specialname RangeInt32@5421
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>,
[mscorlib]System.Collections.IEnumerator
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.field public int32 step
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.field public int32 m
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> state
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method public specialname rtspecialname instance void .ctor(int32 n, int32 step, int32 m, class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> state) cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldarg.0
ldarg.3
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
ldarg.0
ldarg.s state
stfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>::get_Current()
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldnull
call int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::current@5249(class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldnull
call int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::current@5249(class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>, class Microsoft.FSharp.Core.Unit)
box [mscorlib]System.Int32
ret
}
.method private hidebysig newslot virtual final instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Started(bool)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Complete(bool)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Current(!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Started@
brtrue IL_0086
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.1
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Started(bool)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::n
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Current(!0)
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
ble.s IL_0052
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
cgt
br.s IL_0054
IL_0052:
ldc.i4.0
IL_0054:
brfalse.s IL_005a
ldc.i4.1
br.s IL_007b
IL_005a:
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
bge.s IL_0079
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
clt
br.s IL_007b
IL_0079:
ldc.i4.0
IL_007b:
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Complete(bool)
br IL_011b
IL_0086:
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
add
stloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
ble.s IL_00b3
ldloc.0
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
cgt
br.s IL_00b5
IL_00b3:
ldc.i4.0
IL_00b5:
brfalse.s IL_00c6
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
cgt
ldc.i4.0
ceq
br.s IL_00c8
IL_00c6:
ldc.i4.0
IL_00c8:
brfalse.s IL_00ce
ldc.i4.1
br.s IL_00fd
IL_00ce:
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::step
ldc.i4.0
bge.s IL_00e8
ldloc.0
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
clt
br.s IL_00ea
IL_00e8:
ldc.i4.0
IL_00ea:
brfalse.s IL_00fb
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::m
clt
ldc.i4.0
ceq
br.s IL_00fd
IL_00fb:
ldc.i4.0
IL_00fd:
brfalse.s IL_010e
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldloc.0
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Current(!0)
br.s IL_011b
IL_010e:
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldc.i4.1
call instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::set_Complete(bool)
IL_011b:
ldarg.0
ldfld class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::state
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Complete@
ldc.i4.0
ceq
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname 'RangeInt32@5421-1'
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>,
[mscorlib]System.Collections.IEnumerable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.field public int32 step
.field public int32 m
.method public specialname rtspecialname instance void .ctor(int32 n, int32 step, int32 m) cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::step
ldarg.0
ldarg.3
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::m
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>::GetEnumerator()
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::step
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::variableStepRangeEnumerator@5242(int32, int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::step
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::variableStepRangeEnumerator@5242(int32, int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname 'RangeInt32@5421-2'
extends [mscorlib]System.Object
implements [mscorlib]System.Collections.IEnumerator,
class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.field public int32 m
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field public class Microsoft.FSharp.Core.FSharpRef`1<int32> 'value'
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerNonUserCodeAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor(int32 n, int32 m, class Microsoft.FSharp.Core.FSharpRef`1<int32> 'value') cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
ldarg.0
ldarg.3
stfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance void 'System-IDisposable-Dispose'() cil managed
{
.override [mscorlib]System.IDisposable::Dispose
ret
}
.method private hidebysig newslot virtual final instance int32 'System-Collections-Generic-IEnumerator`1-get_Current'() cil managed
{
.override method instance !0 class [mscorlib]System.Collections.Generic.IEnumerator`1<int32>::get_Current()
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<int32>::contents@
stloc.0
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
bge.s IL_001c
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::notStarted<int32>()
ret
IL_001c:
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
ble.s IL_002b
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::alreadyFinished<int32>()
ret
IL_002b:
ldloc.0
ret
}
.method private hidebysig newslot virtual final instance object 'System-Collections-IEnumerator-get_Current'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::get_Current
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<int32>::contents@
stloc.0
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
bge.s IL_001e
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::notStarted<int32>()
br.s IL_0031
IL_001e:
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
ble.s IL_002f
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::alreadyFinished<int32>()
br.s IL_0031
IL_002f:
ldloc.0
IL_0031:
box [mscorlib]System.Int32
ret
}
.method private hidebysig newslot virtual final instance void 'System-Collections-IEnumerator-Reset'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::Reset
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::n
ldc.i4.1
sub
call instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::set_contents(!0)
ret
}
.method private hidebysig newslot virtual final instance bool 'System-Collections-IEnumerator-MoveNext'() cil managed
{
.override [mscorlib]System.Collections.IEnumerator::MoveNext
.locals init (int32 V_0)
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldfld !0 class Microsoft.FSharp.Core.FSharpRef`1<int32>::contents@
stloc.0
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
bge.s IL_0026
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldloc.0
ldc.i4.1
add
call instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::set_contents(!0)
ldc.i4.1
ret
IL_0026:
ldloc.0
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::m
bne.un.s IL_003f
ldarg.0
ldfld class Microsoft.FSharp.Core.FSharpRef`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::'value'
ldloc.0
ldc.i4.1
add
call instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::set_contents(!0)
ldc.i4.0
ret
IL_003f:
ldc.i4.0
ret
}
}
.class auto autochar serializable sealed nested assembly beforefieldinit specialname 'RangeInt32@5421-3'
extends [mscorlib]System.Object
implements class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>,
[mscorlib]System.Collections.IEnumerable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 06 00 00 00 00 00 )
.field public int32 n
.field public int32 m
.method public specialname rtspecialname instance void .ctor(int32 n, int32 m) cil managed
{
ldarg.0
ldarg.1
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::n
ldarg.0
ldarg.2
stfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::m
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> 'System-Collections-Generic-IEnumerable`1-GetEnumerator'() cil managed
{
.override method instance class [mscorlib]System.Collections.Generic.IEnumerator`1<!0> class [mscorlib]System.Collections.Generic.IEnumerable`1<int32>::GetEnumerator()
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::singleStepRangeEnumerator@5303(int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
.method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator 'System-Collections-IEnumerable-GetEnumerator'() cil managed
{
.override [mscorlib]System.Collections.IEnumerable::GetEnumerator
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::n
ldarg.0
ldfld int32 Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::m
ldnull
call class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> Microsoft.FSharp.Core.Operators/OperatorIntrinsics::singleStepRangeEnumerator@5303(int32, int32, class Microsoft.FSharp.Core.Unit)
ret
}
}
.class auto ansi serializable sealed nested assembly beforefieldinit VariableStepIntegralRangeState`1<T>
extends [mscorlib]System.Object
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 22 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.NoEqualityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void Microsoft.FSharp.Core.NoComparisonAttribute::.ctor() = ( 01 00 00 00 )
.field assembly bool Started@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field assembly bool Complete@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.field assembly !T Current@
.custom instance void [mscorlib]System.Diagnostics.DebuggerBrowsableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggerBrowsableState) = ( 01 00 00 00 00 00 00 00 )
.method assembly hidebysig specialname instance void set_Started(bool 'value') cil managed
{
ldarg.0
ldarg.1
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Started@
ret
}
.method assembly hidebysig specialname instance void set_Complete(bool 'value') cil managed
{
ldarg.0
ldarg.1
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Complete@
ret
}
.method assembly hidebysig specialname instance void set_Current(!T 'value') cil managed
{
ldarg.0
ldarg.1
stfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Current@
ret
}
.method assembly specialname rtspecialname instance void .ctor(bool started, bool complete, !T current) cil managed
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ldarg.0
ldarg.1
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Started@
ldarg.0
ldarg.2
stfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Complete@
ldarg.0
ldarg.3
stfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<!T>::Current@
ret
}
.property instance bool Started()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 00 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1::set_Started(bool)
}
.property instance bool Complete()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 01 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1::set_Complete(bool)
}
.property instance !T Current()
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags,
int32) = ( 01 00 04 00 00 00 02 00 00 00 00 00 )
.set instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1::set_Current(!T)
}
}
.method public static class [mscorlib]System.Collections.Generic.IEnumerable`1<int32> RangeInt32(int32 start, int32 step, int32 stop) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilerMessageAttribute::.ctor(string,
int32) = ( 01 00 4C 54 68 69 73 20 66 75 6E 63 74 69 6F 6E
20 69 73 20 66 6F 72 20 75 73 65 20 62 79 20 63
6F 6D 70 69 6C 65 64 20 46 23 20 63 6F 64 65 20
61 6E 64 20 73 68 6F 75 6C 64 20 6E 6F 74 20 62
65 20 75 73 65 64 20 64 69 72 65 63 74 6C 79 B4
04 00 00 01 00 54 02 08 49 73 48 69 64 64 65 6E
01 )
.custom instance void Microsoft.FSharp.Core.CompilationArgumentCountsAttribute::.ctor(int32[]) = ( 01 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00
00 00 00 00 )
.locals init (string V_0)
ldarg.1
ldc.i4.1
beq.s IL_0009
ldc.i4.1
br.s IL_000e
IL_0009:
ldarg.0
ldarg.2
cgt
IL_000e:
brfalse.s IL_0014
ldc.i4.1
br.s IL_001d
IL_0014:
ldarg.0
ldc.i4 0x80000000
ceq
IL_001d:
brfalse.s IL_0023
ldc.i4.1
br.s IL_002c
IL_0023:
ldarg.2
ldc.i4 0x7fffffff
ceq
IL_002c:
brfalse.s IL_004d
ldarg.1
brtrue.s IL_0043
ldstr "stepCannotBeZero"
stloc.0
ldloc.0
ldstr "step"
newobj instance void [mscorlib]System.ArgumentException::.ctor(string,
string)
throw
IL_0043:
ldarg.0
ldarg.1
ldarg.2
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-1'::.ctor(int32,
int32,
int32)
ret
IL_004d:
ldarg.0
ldarg.2
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-3'::.ctor(int32,
int32)
ret
}
.method assembly static !!a notStarted<a>() cil managed
{
ldstr "enumerationNotStarted"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static !!a alreadyFinished<a>() cil managed
{
ldstr "enumerationAlreadyFinished"
newobj instance void [mscorlib]System.InvalidOperationException::.ctor(string)
throw
}
.method assembly static int32 current@5249(class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> state, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
ldarg.0
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Started@
brtrue.s IL_000f
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::notStarted<int32>()
ret
IL_000f:
ldarg.0
ldfld bool class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Complete@
brfalse.s IL_001d
call !!0 Microsoft.FSharp.Core.Operators/OperatorIntrinsics::alreadyFinished<int32>()
ret
IL_001d:
ldarg.0
ldfld !0 class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::Current@
ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> variableStepRangeEnumerator@5242(int32 n, int32 step, int32 m, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32> V_0)
ldc.i4.0
ldc.i4.0
ldc.i4.0
newobj instance void class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>::.ctor(bool, bool, !0)
stloc.0
ldarg.0
ldarg.1
ldarg.2
ldloc.0
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/RangeInt32@5421::.ctor(int32,
int32,
int32,
class Microsoft.FSharp.Core.Operators/OperatorIntrinsics/VariableStepIntegralRangeState`1<int32>)
ret
}
.method assembly static class [mscorlib]System.Collections.Generic.IEnumerator`1<int32> singleStepRangeEnumerator@5303(int32 n, int32 m, class Microsoft.FSharp.Core.Unit unitVar0) cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor() = ( 01 00 00 00 )
.locals init (class Microsoft.FSharp.Core.FSharpRef`1<int32> V_0)
ldarg.0
ldc.i4.1
sub
newobj instance void class Microsoft.FSharp.Core.FSharpRef`1<int32>::.ctor(!0)
stloc.0
ldarg.0
ldarg.1
ldloc.0
newobj instance void Microsoft.FSharp.Core.Operators/OperatorIntrinsics/'RangeInt32@5421-2'::.ctor(int32,
int32,
class Microsoft.FSharp.Core.FSharpRef`1<int32>)
ret
}
}
.method public static !!T Exit<T>(int32 exitcode) cil managed
{
.custom instance void Microsoft.FSharp.Core.CompilationSourceNameAttribute::.ctor(string) = ( 01 00 04 65 78 69 74 00 00 )
ldarg.0
call void [mscorlib]System.Environment::Exit(int32)
ldstr "System.Environment.Exit did not exit!"
newobj instance void [mscorlib]System.Exception::.ctor(string)
throw
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.RequireQualifiedAccessAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.SealedAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field assembly bool 'value'
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
ldc.i4.1
callvirt instance void Microsoft.FSharp.Core.SealedAttribute::.ctor(bool)
ret
}
.method public specialname rtspecialname instance void .ctor(bool 'value') cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ldarg.0
ldarg.1
stfld bool Microsoft.FSharp.Core.SealedAttribute::'value'
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.SourceConstructFlags
extends [mscorlib]System.Enum
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags None = int32(0x00000000)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags SumType = int32(0x00000001)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags RecordType = int32(0x00000002)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags ObjectType = int32(0x00000003)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Field = int32(0x00000004)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Exception = int32(0x00000005)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Closure = int32(0x00000006)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Module = int32(0x00000007)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags UnionCase = int32(0x00000008)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags Value = int32(0x00000009)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags KindMask = int32(0x0000001F)
.field public static literal valuetype Microsoft.FSharp.Core.SourceConstructFlags NonPublicRepresentation = int32(0x00000020)
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.StructuralComparisonAttribute
extends [mscorlib]System.Attribute
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.StructuralEqualityAttribute
extends [mscorlib]System.Attribute
{
.custom instance void [mscorlib]System.AttributeUsageAttribute::.ctor(valuetype [mscorlib]System.AttributeTargets) = ( 01 00 04 00 00 00 01 00 54 02 0D 41 6C 6C 6F 77
4D 75 6C 74 69 70 6C 65 00 )
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.custom instance void Microsoft.FSharp.Core.SealedAttribute::.ctor() = ( 01 00 00 00 )
.method public specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Attribute::.ctor()
ldarg.0
pop
ret
}
}
.class public auto ansi serializable sealed Microsoft.FSharp.Core.Unit
extends [mscorlib]System.Object
implements [mscorlib]System.IComparable
{
.custom instance void Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 )
.method assembly specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
callvirt instance void [mscorlib]System.Object::.ctor()
ldarg.0
pop
ret
}
.method public hidebysig virtual instance int32 GetHashCode() cil managed
{
ldc.i4.0
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed
{
ldarg.1
brfalse.s IL_0010
ldarg.1
call bool Microsoft.FSharp.Core.LanguagePrimitives/IntrinsicFunctions::TypeTestGeneric<class Microsoft.FSharp.Core.Unit>(object)
brtrue.s IL_000e
ldc.i4.0
ret
IL_000e:
ldc.i4.1
ret
IL_0010:
ldc.i4.1
ret
}
.method private hidebysig newslot virtual instance int32 'System-IComparable-CompareTo'(object _obj) cil managed
{
.override [mscorlib]System.IComparable::CompareTo
ldc.i4.0
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest791/Generated791.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated791 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1263`1<T0>
extends class G2_C314`2<class BaseClass1,!T0>
implements class IBase2`2<class BaseClass0,class BaseClass1>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1263::Method7.15188<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3901() cil managed noinlining {
ldstr "G3_C1263::ClassMethod3901.15189()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3902<M0>() cil managed noinlining {
ldstr "G3_C1263::ClassMethod3902.15190<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G2_C314<class BaseClass1,T0>.ClassMethod1959'() cil managed noinlining {
.override method instance string class G2_C314`2<class BaseClass1,!T0>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C314<class BaseClass1,T0>.ClassMethod1961'<M0>() cil managed noinlining {
.override method instance string class G2_C314`2<class BaseClass1,!T0>::ClassMethod1961<[1]>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C314`2<class BaseClass1,!T0>::.ctor()
ret
}
}
.class public G2_C314`2<T0, T1>
extends class G1_C6`2<!T1,class BaseClass0>
implements IBase0, class IBase2`2<class BaseClass1,!T1>
{
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "G2_C314::Method0.7676()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining {
.override method instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ret
}
.method public hidebysig newslot virtual instance string Method1() cil managed noinlining {
ldstr "G2_C314::Method1.7678()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method1'() cil managed noinlining {
.override method instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ret
}
.method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining {
ldstr "G2_C314::Method2.7680<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining {
.override method instance string IBase0::Method2<[1]>()
ldstr "G2_C314::Method2.MI.7681<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method3<M0>() cil managed noinlining {
ldstr "G2_C314::Method3.7682<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining {
.override method instance string IBase0::Method3<[1]>()
ldstr "G2_C314::Method3.MI.7683<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C314::Method7.7684<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,!T1>::Method7<[1]>()
ldstr "G2_C314::Method7.MI.7685<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1959() cil managed noinlining {
ldstr "G2_C314::ClassMethod1959.7686()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1960<M0>() cil managed noinlining {
ldstr "G2_C314::ClassMethod1960.7687<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1961<M0>() cil managed noinlining {
ldstr "G2_C314::ClassMethod1961.7688<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C6<T1,class BaseClass0>.ClassMethod1326'() cil managed noinlining {
.override method instance string class G1_C6`2<!T1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C6<T1,class BaseClass0>.ClassMethod1327'<M0>() cil managed noinlining {
.override method instance string class G1_C6`2<!T1,class BaseClass0>::ClassMethod1327<[1]>()
ldstr "G2_C314::ClassMethod1327.MI.7690<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C6`2<!T1,class BaseClass0>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public G1_C6`2<T0, T1>
implements class IBase2`2<class BaseClass1,!T0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C6::Method7.4808<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1326() cil managed noinlining {
ldstr "G1_C6::ClassMethod1326.4809()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1327<M0>() cil managed noinlining {
ldstr "G1_C6::ClassMethod1327.4810<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated791 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1263.T<T0,(class G3_C1263`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1263.T<T0,(class G3_C1263`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod3901()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod3902<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1263.A<(class G3_C1263`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1263.A<(class G3_C1263`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3901()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3902<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1263.B<(class G3_C1263`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1263.B<(class G3_C1263`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3901()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3902<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.T.T<T0,T1,(class G2_C314`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.T.T<T0,T1,(class G2_C314`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.A.T<T1,(class G2_C314`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.A.T<T1,(class G2_C314`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.A.A<(class G2_C314`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.A.A<(class G2_C314`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.A.B<(class G2_C314`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.A.B<(class G2_C314`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.B.T<T1,(class G2_C314`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.B.T<T1,(class G2_C314`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.B.A<(class G2_C314`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.B.A<(class G2_C314`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.B.B<(class G2_C314`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.B.B<(class G2_C314`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.T.T<T0,T1,(class G1_C6`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.T.T<T0,T1,(class G1_C6`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<!!T0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<!!T0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.A.T<T1,(class G1_C6`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.A.T<T1,(class G1_C6`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.A.A<(class G1_C6`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.A.A<(class G1_C6`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.A.B<(class G1_C6`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.A.B<(class G1_C6`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.B.T<T1,(class G1_C6`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.B.T<T1,(class G1_C6`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.B.A<(class G1_C6`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.B.A<(class G1_C6`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.B.B<(class G1_C6`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.B.B<(class G1_C6`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1263`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3902<object>()
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3901()
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1263`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3902<object>()
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3901()
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1263`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1263`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.B<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.B<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.B<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G1_C6`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.B<class G1_C6`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1263`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod3902<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod3901()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method1()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method0()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1263`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod3902<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod3901()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method1()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method0()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated791::MethodCallingTest()
call void Generated791::ConstrainedCallsTest()
call void Generated791::StructConstrainedInterfaceCallsTest()
call void Generated791::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated791 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1263`1<T0>
extends class G2_C314`2<class BaseClass1,!T0>
implements class IBase2`2<class BaseClass0,class BaseClass1>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1263::Method7.15188<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3901() cil managed noinlining {
ldstr "G3_C1263::ClassMethod3901.15189()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3902<M0>() cil managed noinlining {
ldstr "G3_C1263::ClassMethod3902.15190<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G2_C314<class BaseClass1,T0>.ClassMethod1959'() cil managed noinlining {
.override method instance string class G2_C314`2<class BaseClass1,!T0>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C314<class BaseClass1,T0>.ClassMethod1961'<M0>() cil managed noinlining {
.override method instance string class G2_C314`2<class BaseClass1,!T0>::ClassMethod1961<[1]>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C314`2<class BaseClass1,!T0>::.ctor()
ret
}
}
.class public G2_C314`2<T0, T1>
extends class G1_C6`2<!T1,class BaseClass0>
implements IBase0, class IBase2`2<class BaseClass1,!T1>
{
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "G2_C314::Method0.7676()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining {
.override method instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ret
}
.method public hidebysig newslot virtual instance string Method1() cil managed noinlining {
ldstr "G2_C314::Method1.7678()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method1'() cil managed noinlining {
.override method instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ret
}
.method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining {
ldstr "G2_C314::Method2.7680<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining {
.override method instance string IBase0::Method2<[1]>()
ldstr "G2_C314::Method2.MI.7681<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method3<M0>() cil managed noinlining {
ldstr "G2_C314::Method3.7682<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining {
.override method instance string IBase0::Method3<[1]>()
ldstr "G2_C314::Method3.MI.7683<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C314::Method7.7684<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,!T1>::Method7<[1]>()
ldstr "G2_C314::Method7.MI.7685<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1959() cil managed noinlining {
ldstr "G2_C314::ClassMethod1959.7686()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1960<M0>() cil managed noinlining {
ldstr "G2_C314::ClassMethod1960.7687<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1961<M0>() cil managed noinlining {
ldstr "G2_C314::ClassMethod1961.7688<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C6<T1,class BaseClass0>.ClassMethod1326'() cil managed noinlining {
.override method instance string class G1_C6`2<!T1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C6<T1,class BaseClass0>.ClassMethod1327'<M0>() cil managed noinlining {
.override method instance string class G1_C6`2<!T1,class BaseClass0>::ClassMethod1327<[1]>()
ldstr "G2_C314::ClassMethod1327.MI.7690<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C6`2<!T1,class BaseClass0>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public G1_C6`2<T0, T1>
implements class IBase2`2<class BaseClass1,!T0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C6::Method7.4808<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1326() cil managed noinlining {
ldstr "G1_C6::ClassMethod1326.4809()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1327<M0>() cil managed noinlining {
ldstr "G1_C6::ClassMethod1327.4810<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated791 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1263.T<T0,(class G3_C1263`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1263.T<T0,(class G3_C1263`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod3901()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::ClassMethod3902<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1263.A<(class G3_C1263`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1263.A<(class G3_C1263`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3901()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3902<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1263.B<(class G3_C1263`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1263.B<(class G3_C1263`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3901()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3902<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1263`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.T.T<T0,T1,(class G2_C314`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.T.T<T0,T1,(class G2_C314`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.A.T<T1,(class G2_C314`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.A.T<T1,(class G2_C314`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.A.A<(class G2_C314`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.A.A<(class G2_C314`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.A.B<(class G2_C314`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.A.B<(class G2_C314`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.B.T<T1,(class G2_C314`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.B.T<T1,(class G2_C314`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.B.A<(class G2_C314`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.B.A<(class G2_C314`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C314.B.B<(class G2_C314`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C314.B.B<(class G2_C314`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.T.T<T0,T1,(class G1_C6`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.T.T<T0,T1,(class G1_C6`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<!!T0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<!!T0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.A.T<T1,(class G1_C6`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.A.T<T1,(class G1_C6`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.A.A<(class G1_C6`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.A.A<(class G1_C6`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.A.B<(class G1_C6`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.A.B<(class G1_C6`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.B.T<T1,(class G1_C6`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.B.T<T1,(class G1_C6`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,!!T1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,!!T1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.B.A<(class G1_C6`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.B.A<(class G1_C6`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C6.B.B<(class G1_C6`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C6.B.B<(class G1_C6`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1263`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3902<object>()
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod3901()
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass0>
callvirt instance string class G3_C1263`1<class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1263`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3902<object>()
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod3901()
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1961<object>()
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1959()
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1263`1<class BaseClass1>
callvirt instance string class G3_C1263`1<class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C6`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1263`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G3_C1263`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.T<class BaseClass0,class G3_C1263`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.A<class G3_C1263`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1263`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G2_C314.B.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G3_C1263`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.T<class BaseClass1,class G3_C1263`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G3_C1263::ClassMethod1959.MI.15191()#G2_C314::ClassMethod1960.7687<System.Object>()#G3_C1263::ClassMethod1961.MI.15192<System.Object>()#G3_C1263::ClassMethod3901.15189()#G3_C1263::ClassMethod3902.15190<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G3_C1263::Method7.15188<System.Object>()#"
call void Generated791::M.G3_C1263.B<class G3_C1263`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.A<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.T<class BaseClass1,class G2_C314`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.A.B<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.A<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::Method7.MI.7685<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.T.T<class BaseClass1,class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.T<class BaseClass1,class G2_C314`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C314::ClassMethod1326.MI.7689()#G2_C314::ClassMethod1327.MI.7690<System.Object>()#G2_C314::ClassMethod1959.7686()#G2_C314::ClassMethod1960.7687<System.Object>()#G2_C314::ClassMethod1961.7688<System.Object>()#G2_C314::Method0.7676()#G2_C314::Method1.7678()#G2_C314::Method2.7680<System.Object>()#G2_C314::Method3.7682<System.Object>()#G2_C314::Method7.7684<System.Object>()#"
call void Generated791::M.G2_C314.B.B<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C314::Method0.MI.7677()#G2_C314::Method1.MI.7679()#G2_C314::Method2.MI.7681<System.Object>()#G2_C314::Method3.MI.7683<System.Object>()#"
call void Generated791::M.IBase0<class G2_C314`2<class BaseClass1,class BaseClass1>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.A<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.A.B<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.A<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass0,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.A<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass0,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass0,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.A<class G1_C6`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::ClassMethod1326.4809()#G1_C6::ClassMethod1327.4810<System.Object>()#G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.G1_C6.B.B<class G1_C6`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.B.B<class G1_C6`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.T<class BaseClass1,class G1_C6`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C6::Method7.4808<System.Object>()#"
call void Generated791::M.IBase2.A.B<class G1_C6`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1263`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod3902<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod3901()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method1()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::Method0()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass0> on type class G3_C1263`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1263`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod3902<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod3902.15190<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod3901()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod3901.15189()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::Method7.15188<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1961<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1961.MI.15192<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1960<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1959()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G3_C1263::ClassMethod1959.MI.15191()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method3<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method2<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method1()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::Method0()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1327<object>()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1263`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1263`1<class BaseClass1>::ClassMethod1326()
calli default string(class G3_C1263`1<class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G3_C1263`1<class BaseClass1> on type class G3_C1263`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C314`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method7.MI.7685<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1961<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1961.7688<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1960<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1960.7687<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1959()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1959.7686()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method7.7684<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method3.7682<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method2.7680<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method1.7678()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method0.7676()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1327.MI.7690<System.Object>()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C314`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C314`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::ClassMethod1326.MI.7689()"
ldstr "class G2_C314`2<class BaseClass1,class BaseClass1> on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method0.MI.7677()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method1.MI.7679()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method2.MI.7681<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C314`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C314::Method3.MI.7683<System.Object>()"
ldstr "IBase0 on type class G2_C314`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass1>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass0> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C6`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1327<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::ClassMethod1327.4810<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass1>::ClassMethod1326()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::ClassMethod1326.4809()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C6`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C6`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class G1_C6`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C6`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C6::Method7.4808<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C6`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated791::MethodCallingTest()
call void Generated791::ConstrainedCallsTest()
call void Generated791::StructConstrainedInterfaceCallsTest()
call void Generated791::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1177/Generated1177.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated1177 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1649`1<T0>
extends class G2_C650`2<class BaseClass0,!T0>
implements IBase0
{
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "G3_C1649::Method0.17251()"
ret
}
.method public hidebysig newslot virtual instance string Method1() cil managed noinlining {
ldstr "G3_C1649::Method1.17252()"
ret
}
.method public hidebysig virtual instance string Method2<M0>() cil managed noinlining {
ldstr "G3_C1649::Method2.17253<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining {
.override method instance string IBase0::Method2<[1]>()
ldstr "G3_C1649::Method2.MI.17254<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining {
ldstr "G3_C1649::Method3.17255<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4689<M0>() cil managed noinlining {
ldstr "G3_C1649::ClassMethod4689.17256<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4690<M0>() cil managed noinlining {
ldstr "G3_C1649::ClassMethod4690.17257<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G2_C650<class BaseClass0,T0>.ClassMethod2659'() cil managed noinlining {
.override method instance string class G2_C650`2<class BaseClass0,!T0>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C650<class BaseClass0,T0>.ClassMethod2660'() cil managed noinlining {
.override method instance string class G2_C650`2<class BaseClass0,!T0>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C650`2<class BaseClass0,!T0>::.ctor()
ret
}
}
.class public abstract G2_C650`2<T0, T1>
extends class G1_C12`2<class BaseClass1,class BaseClass1>
implements class IBase1`1<!T1>, class IBase2`2<!T1,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C650::Method4.10987()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T1>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<!T1>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G2_C650::Method5.10989()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C650::Method6.10990<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C650::Method7.10991<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T1,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T1,class BaseClass1>::Method7<[1]>()
ldstr "G2_C650::Method7.MI.10992<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2659() cil managed noinlining {
ldstr "G2_C650::ClassMethod2659.10993()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2660() cil managed noinlining {
ldstr "G2_C650::ClassMethod2660.10994()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass1,class BaseClass1>.ClassMethod1346'<M0>() cil managed noinlining {
.override method instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<[1]>()
ldstr "G2_C650::ClassMethod1346.MI.10995<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass1,class BaseClass1>.ClassMethod1347'<M0>() cil managed noinlining {
.override method instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<[1]>()
ldstr "G2_C650::ClassMethod1347.MI.10996<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
ret
}
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public G1_C12`2<T0, T1>
implements class IBase2`2<!T0,!T1>, class IBase1`1<class BaseClass0>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C12::Method7.4863<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>()
ldstr "G1_C12::Method7.MI.4864<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G1_C12::Method4.4865()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G1_C12::Method5.4866()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C12::Method6.4867<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G1_C12::Method6.MI.4868<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1346<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1346.4869<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1347<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1347.4870<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated1177 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1649.T<T0,(class G3_C1649`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 19
.locals init (string[] actualResults)
ldc.i4.s 14
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1649.T<T0,(class G3_C1649`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 14
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod4689<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod4690<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1649.A<(class G3_C1649`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 19
.locals init (string[] actualResults)
ldc.i4.s 14
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1649.A<(class G3_C1649`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 14
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4689<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4690<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1649.B<(class G3_C1649`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 19
.locals init (string[] actualResults)
ldc.i4.s 14
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1649.B<(class G3_C1649`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 14
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4689<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4690<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.T.T<T0,T1,(class G2_C650`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.T.T<T0,T1,(class G2_C650`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.A.T<T1,(class G2_C650`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.A.T<T1,(class G2_C650`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.A.A<(class G2_C650`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.A.A<(class G2_C650`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.A.B<(class G2_C650`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.A.B<(class G2_C650`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.B.T<T1,(class G2_C650`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.B.T<T1,(class G2_C650`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.B.A<(class G2_C650`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.B.A<(class G2_C650`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.B.B<(class G2_C650`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.B.B<(class G2_C650`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1649`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4690<object>()
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4689<object>()
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method2<object>()
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1649`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4690<object>()
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4689<object>()
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method2<object>()
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1649`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.B<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.A<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.T.T<class BaseClass0,class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.T<class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.A<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.T<class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.A<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.MI.17254<System.Object>()#G3_C1649::Method3.17255<System.Object>()#"
call void Generated1177::M.IBase0<class G3_C1649`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1649`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.A<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.T.T<class BaseClass0,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.MI.17254<System.Object>()#G3_C1649::Method3.17255<System.Object>()#"
call void Generated1177::M.IBase0<class G3_C1649`1<class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1649`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod4690<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod4689<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method1()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method0()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1649`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod4690<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod4689<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method1()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method0()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated1177::MethodCallingTest()
call void Generated1177::ConstrainedCallsTest()
call void Generated1177::StructConstrainedInterfaceCallsTest()
call void Generated1177::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated1177 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1649`1<T0>
extends class G2_C650`2<class BaseClass0,!T0>
implements IBase0
{
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "G3_C1649::Method0.17251()"
ret
}
.method public hidebysig newslot virtual instance string Method1() cil managed noinlining {
ldstr "G3_C1649::Method1.17252()"
ret
}
.method public hidebysig virtual instance string Method2<M0>() cil managed noinlining {
ldstr "G3_C1649::Method2.17253<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining {
.override method instance string IBase0::Method2<[1]>()
ldstr "G3_C1649::Method2.MI.17254<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining {
ldstr "G3_C1649::Method3.17255<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4689<M0>() cil managed noinlining {
ldstr "G3_C1649::ClassMethod4689.17256<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4690<M0>() cil managed noinlining {
ldstr "G3_C1649::ClassMethod4690.17257<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G2_C650<class BaseClass0,T0>.ClassMethod2659'() cil managed noinlining {
.override method instance string class G2_C650`2<class BaseClass0,!T0>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C650<class BaseClass0,T0>.ClassMethod2660'() cil managed noinlining {
.override method instance string class G2_C650`2<class BaseClass0,!T0>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C650`2<class BaseClass0,!T0>::.ctor()
ret
}
}
.class public abstract G2_C650`2<T0, T1>
extends class G1_C12`2<class BaseClass1,class BaseClass1>
implements class IBase1`1<!T1>, class IBase2`2<!T1,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C650::Method4.10987()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T1>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<!T1>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G2_C650::Method5.10989()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C650::Method6.10990<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C650::Method7.10991<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T1,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T1,class BaseClass1>::Method7<[1]>()
ldstr "G2_C650::Method7.MI.10992<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2659() cil managed noinlining {
ldstr "G2_C650::ClassMethod2659.10993()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2660() cil managed noinlining {
ldstr "G2_C650::ClassMethod2660.10994()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass1,class BaseClass1>.ClassMethod1346'<M0>() cil managed noinlining {
.override method instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<[1]>()
ldstr "G2_C650::ClassMethod1346.MI.10995<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass1,class BaseClass1>.ClassMethod1347'<M0>() cil managed noinlining {
.override method instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<[1]>()
ldstr "G2_C650::ClassMethod1347.MI.10996<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
ret
}
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public G1_C12`2<T0, T1>
implements class IBase2`2<!T0,!T1>, class IBase1`1<class BaseClass0>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C12::Method7.4863<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>()
ldstr "G1_C12::Method7.MI.4864<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G1_C12::Method4.4865()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G1_C12::Method5.4866()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C12::Method6.4867<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G1_C12::Method6.MI.4868<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1346<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1346.4869<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1347<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1347.4870<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated1177 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1649.T<T0,(class G3_C1649`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 19
.locals init (string[] actualResults)
ldc.i4.s 14
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1649.T<T0,(class G3_C1649`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 14
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod4689<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::ClassMethod4690<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1649.A<(class G3_C1649`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 19
.locals init (string[] actualResults)
ldc.i4.s 14
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1649.A<(class G3_C1649`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 14
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4689<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4690<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1649.B<(class G3_C1649`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 19
.locals init (string[] actualResults)
ldc.i4.s 14
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1649.B<(class G3_C1649`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 14
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4689<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4690<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1649`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.T.T<T0,T1,(class G2_C650`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.T.T<T0,T1,(class G2_C650`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.A.T<T1,(class G2_C650`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.A.T<T1,(class G2_C650`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.A.A<(class G2_C650`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.A.A<(class G2_C650`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.A.B<(class G2_C650`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.A.B<(class G2_C650`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.B.T<T1,(class G2_C650`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.B.T<T1,(class G2_C650`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.B.A<(class G2_C650`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.B.A<(class G2_C650`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C650.B.B<(class G2_C650`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C650.B.B<(class G2_C650`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod2659()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::ClassMethod2660()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C650`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1649`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4690<object>()
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod4689<object>()
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method2<object>()
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass0>
callvirt instance string class G3_C1649`1<class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1649`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4690<object>()
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod4689<object>()
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method2<object>()
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2660()
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod2659()
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method7<object>()
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method6<object>()
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method5()
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::Method4()
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1347<object>()
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1649`1<class BaseClass1>
callvirt instance string class G3_C1649`1<class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1649`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.B<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.A<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.T.T<class BaseClass0,class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.T<class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.A<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.T<class BaseClass0,class G3_C1649`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.A<class G3_C1649`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.MI.17254<System.Object>()#G3_C1649::Method3.17255<System.Object>()#"
call void Generated1177::M.IBase0<class G3_C1649`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1649`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G1_C12::Method4.4865()#G2_C650::Method5.10989()#G1_C12::Method6.4867<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G1_C12.B.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.A<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method7.MI.10992<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.T.T<class BaseClass0,class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G2_C650.A.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::Method4.MI.10988()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#"
call void Generated1177::M.IBase1.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.T<class BaseClass1,class G3_C1649`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()#G2_C650::ClassMethod1347.MI.10996<System.Object>()#G3_C1649::ClassMethod2659.MI.17258()#G3_C1649::ClassMethod2660.MI.17259()#G3_C1649::ClassMethod4689.17256<System.Object>()#G3_C1649::ClassMethod4690.17257<System.Object>()#G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.17253<System.Object>()#G3_C1649::Method3.17255<System.Object>()#G2_C650::Method4.10987()#G2_C650::Method5.10989()#G2_C650::Method6.10990<System.Object>()#G2_C650::Method7.10991<System.Object>()#"
call void Generated1177::M.G3_C1649.B<class G3_C1649`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1649::Method0.17251()#G3_C1649::Method1.17252()#G3_C1649::Method2.MI.17254<System.Object>()#G3_C1649::Method3.17255<System.Object>()#"
call void Generated1177::M.IBase0<class G3_C1649`1<class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1177::M.G1_C12.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1177::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1177::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1649`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod4690<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod4689<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method1()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method0()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass0> on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass0>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1649`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.MI.10992<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C650`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C650`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G2_C650`2<class BaseClass0,class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.MI.10988()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod4690<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod4690.17257<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod4689<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod4689.17256<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method2.17253<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method1()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method1.17252()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method0()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method0.17251()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod2660()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2660.MI.17259()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod2659()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::ClassMethod2659.MI.17258()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method7.10991<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method6.10990<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method5()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method5.10989()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::Method4()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::Method4.10987()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1347.MI.10996<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1649`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1649`1<class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G2_C650::ClassMethod1346.MI.10995<System.Object>()"
ldstr "class G3_C1649`1<class BaseClass1> on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method0.17251()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method1.17252()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method2.MI.17254<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1649`1<class BaseClass1>)
ldstr "G3_C1649::Method3.17255<System.Object>()"
ldstr "IBase0 on type class G3_C1649`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated1177::MethodCallingTest()
call void Generated1177::ConstrainedCallsTest()
call void Generated1177::StructConstrainedInterfaceCallsTest()
call void Generated1177::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/JitBlue/GitHub_25027/GitHub_25027.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
// GitHub 25027: Tail call stress shouldn't cause asserts
// in the presence of invalid IL
.assembly extern System.Runtime { auto }
.assembly extern mscorlib { auto }
.assembly GitHub_25027 {}
.assembly extern xunit.core {}
.class private auto ansi beforefieldinit X
extends [System.Runtime]System.Object
{
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.locals init ([0] int32 result)
ldc.i4.m1
stloc.0
.try
{
call int32 X::F()
stloc.0
leave.s join
}
catch [System.Runtime]System.InvalidProgramException
{
pop
ldc.i4.s 100
stloc.0
leave.s join
}
join:
ldloc.0
ret
}
// F is intentionally made big enough so that it doesn't get inlined into
// Main without needing to be marked "noinlining"
.method private hidebysig static int32
F() cil managed
{
.locals init ([0] int32 r,
[1] int32 i)
ldc.i4.0
stloc.0
ldc.i4.0
stloc.1
br.s test
loop:
ldloc.0
ldloc.1
ldloc.1
mul
add
stloc.0
ldloc.1
ldc.i4.1
add
stloc.1
test:
ldloc.1
ldc.i4.s 10
ble.s loop
ldloc.0
// invalid IL and invalid tail call site
dup
dup
call void X::G(int32)
ret
}
.method private hidebysig static void
G(int32 x) cil managed
{
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
// GitHub 25027: Tail call stress shouldn't cause asserts
// in the presence of invalid IL
.assembly extern System.Runtime { auto }
.assembly extern mscorlib { auto }
.assembly GitHub_25027 {}
.assembly extern xunit.core {}
.class private auto ansi beforefieldinit X
extends [System.Runtime]System.Object
{
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.locals init ([0] int32 result)
ldc.i4.m1
stloc.0
.try
{
call int32 X::F()
stloc.0
leave.s join
}
catch [System.Runtime]System.InvalidProgramException
{
pop
ldc.i4.s 100
stloc.0
leave.s join
}
join:
ldloc.0
ret
}
// F is intentionally made big enough so that it doesn't get inlined into
// Main without needing to be marked "noinlining"
.method private hidebysig static int32
F() cil managed
{
.locals init ([0] int32 r,
[1] int32 i)
ldc.i4.0
stloc.0
ldc.i4.0
stloc.1
br.s test
loop:
ldloc.0
ldloc.1
ldloc.1
mul
add
stloc.0
ldloc.1
ldc.i4.1
add
stloc.1
test:
ldloc.1
ldc.i4.s 10
ble.s loop
ldloc.0
// invalid IL and invalid tail call site
dup
dup
call void X::G(int32)
ret
}
.method private hidebysig static void
G(int32 x) cil managed
{
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/objectmodel/seh_tests.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern legacy library mscorlib {}
.assembly seh_tests{}
.class public seh {
.method public static int32 main(string[]) {
.entrypoint
.locals(int32)
.maxstack 5
ldc.i4 0x0
stloc 0
try_start:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
leave FAIL
try_end:
aFilter:
isinst [mscorlib]System.Exception
brfalse CONTINUE
ldc.i4 0x00000001
br END_FILTER
CONTINUE:
ldc.i4 0x00000000
END_FILTER:
endfilter
aHandler:
isinst [mscorlib]System.Security.SecurityException
brtrue bad
leave aHandler_end
bad:
leave FAIL
aHandler_end:
ldc.i4 100
stloc 0
ldstr "Testcase successful"
br END
FAIL:
ldstr "Testcase failed"
END:
call void [System.Console]System.Console::WriteLine(string)
ldloc 0
ret
.try try_start to try_end filter aFilter handler aHandler to aHandler_end
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern legacy library mscorlib {}
.assembly seh_tests{}
.class public seh {
.method public static int32 main(string[]) {
.entrypoint
.locals(int32)
.maxstack 5
ldc.i4 0x0
stloc 0
try_start:
newobj instance void [mscorlib]System.Exception::.ctor()
throw
leave FAIL
try_end:
aFilter:
isinst [mscorlib]System.Exception
brfalse CONTINUE
ldc.i4 0x00000001
br END_FILTER
CONTINUE:
ldc.i4 0x00000000
END_FILTER:
endfilter
aHandler:
isinst [mscorlib]System.Security.SecurityException
brtrue bad
leave aHandler_end
bad:
leave FAIL
aHandler_end:
ldc.i4 100
stloc 0
ldstr "Testcase successful"
br END
FAIL:
ldstr "Testcase failed"
END:
call void [System.Console]System.Console::WriteLine(string)
ldloc 0
ret
.try try_start to try_end filter aFilter handler aHandler to aHandler_end
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest626/Generated626.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated626 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1098`1<T0>
extends class G2_C89`1<class BaseClass0>
implements class IBase2`2<class BaseClass0,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1098::Method7.14295<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3589() cil managed noinlining {
ldstr "G3_C1098::ClassMethod3589.14296()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3590() cil managed noinlining {
ldstr "G3_C1098::ClassMethod3590.14297()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C89<class BaseClass0>.ClassMethod1494'() cil managed noinlining {
.override method instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C89<class BaseClass0>.ClassMethod1495'<M0>() cil managed noinlining {
.override method instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<[1]>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C89`1<class BaseClass0>::.ctor()
ret
}
}
.class public G2_C89`1<T0>
extends class G1_C7`2<!T0,!T0>
implements class IBase1`1<!T0>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C89::Method4.5573()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G2_C89::Method5.5574()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C89::Method6.5576<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method6<[1]>()
ldstr "G2_C89::Method6.MI.5577<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1494() cil managed noinlining {
ldstr "G2_C89::ClassMethod1494.5578()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1495<M0>() cil managed noinlining {
ldstr "G2_C89::ClassMethod1495.5579<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C7<T0,T0>.ClassMethod1328'() cil managed noinlining {
.override method instance string class G1_C7`2<!T0,!T0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C7`2<!T0,!T0>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public abstract G1_C7`2<T0, T1>
implements class IBase1`1<!T0>, class IBase2`2<class BaseClass1,!T0>
{
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G1_C7::Method4.4811()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G1_C7::Method5.4812()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C7::Method6.4813<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method6<[1]>()
ldstr "G1_C7::Method6.MI.4814<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C7::Method7.4815<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,!T0>::Method7<[1]>()
ldstr "G1_C7::Method7.MI.4816<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1328() cil managed noinlining {
ldstr "G1_C7::ClassMethod1328.4817()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1329() cil managed noinlining {
ldstr "G1_C7::ClassMethod1329.4818()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1330<M0>() cil managed noinlining {
ldstr "G1_C7::ClassMethod1330.4819<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1331<M0>() cil managed noinlining {
ldstr "G1_C7::ClassMethod1331.4820<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated626 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1098.T<T0,(class G3_C1098`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1098.T<T0,(class G3_C1098`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod3589()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod3590()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1098.A<(class G3_C1098`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1098.A<(class G3_C1098`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3589()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3590()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1098.B<(class G3_C1098`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1098.B<(class G3_C1098`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3589()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3590()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C89.T<T0,(class G2_C89`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C89.T<T0,(class G2_C89`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C89.A<(class G2_C89`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C89.A<(class G2_C89`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C89.B<(class G2_C89`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C89.B<(class G2_C89`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1098`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3590()
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3589()
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1098`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3590()
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3589()
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C89`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C89`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1495<object>()
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1494()
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1098`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1098`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.T<class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.B<class G3_C1098`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C89`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass0,class BaseClass0,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.A<class G2_C89`1<class BaseClass0>>(!!0,string)
newobj instance void class G2_C89`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass1,class BaseClass1,class G2_C89`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.B.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.B.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C89`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C89`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1098`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod3590()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod3589()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1098`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod3590()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod3589()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C89`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C89`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1495<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1494()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated626::MethodCallingTest()
call void Generated626::ConstrainedCallsTest()
call void Generated626::StructConstrainedInterfaceCallsTest()
call void Generated626::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated626 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1098`1<T0>
extends class G2_C89`1<class BaseClass0>
implements class IBase2`2<class BaseClass0,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1098::Method7.14295<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3589() cil managed noinlining {
ldstr "G3_C1098::ClassMethod3589.14296()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3590() cil managed noinlining {
ldstr "G3_C1098::ClassMethod3590.14297()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C89<class BaseClass0>.ClassMethod1494'() cil managed noinlining {
.override method instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C89<class BaseClass0>.ClassMethod1495'<M0>() cil managed noinlining {
.override method instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<[1]>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C89`1<class BaseClass0>::.ctor()
ret
}
}
.class public G2_C89`1<T0>
extends class G1_C7`2<!T0,!T0>
implements class IBase1`1<!T0>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C89::Method4.5573()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G2_C89::Method5.5574()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C89::Method6.5576<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method6<[1]>()
ldstr "G2_C89::Method6.MI.5577<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1494() cil managed noinlining {
ldstr "G2_C89::ClassMethod1494.5578()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1495<M0>() cil managed noinlining {
ldstr "G2_C89::ClassMethod1495.5579<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C7<T0,T0>.ClassMethod1328'() cil managed noinlining {
.override method instance string class G1_C7`2<!T0,!T0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C7`2<!T0,!T0>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public abstract G1_C7`2<T0, T1>
implements class IBase1`1<!T0>, class IBase2`2<class BaseClass1,!T0>
{
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G1_C7::Method4.4811()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G1_C7::Method5.4812()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C7::Method6.4813<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method6<[1]>()
ldstr "G1_C7::Method6.MI.4814<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C7::Method7.4815<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,!T0>::Method7<[1]>()
ldstr "G1_C7::Method7.MI.4816<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1328() cil managed noinlining {
ldstr "G1_C7::ClassMethod1328.4817()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1329() cil managed noinlining {
ldstr "G1_C7::ClassMethod1329.4818()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1330<M0>() cil managed noinlining {
ldstr "G1_C7::ClassMethod1330.4819<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1331<M0>() cil managed noinlining {
ldstr "G1_C7::ClassMethod1331.4820<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated626 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1098.T<T0,(class G3_C1098`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1098.T<T0,(class G3_C1098`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod3589()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::ClassMethod3590()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1098.A<(class G3_C1098`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1098.A<(class G3_C1098`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3589()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3590()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1098.B<(class G3_C1098`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 17
.locals init (string[] actualResults)
ldc.i4.s 12
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1098.B<(class G3_C1098`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 12
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3589()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3590()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1098`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C89.T<T0,(class G2_C89`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C89.T<T0,(class G2_C89`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C89.A<(class G2_C89`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C89.A<(class G2_C89`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C89.B<(class G2_C89`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C89.B<(class G2_C89`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1494()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1495<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C89`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1098`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3590()
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod3589()
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass0>
callvirt instance string class G3_C1098`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1098`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3590()
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod3589()
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1495<object>()
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1494()
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1098`1<class BaseClass1>
callvirt instance string class G3_C1098`1<class BaseClass1>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C89`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass0>
callvirt instance string class G2_C89`1<class BaseClass0>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C89`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1495<object>()
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1494()
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method6<object>()
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method5()
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method4()
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1331<object>()
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1330<object>()
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1329()
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::ClassMethod1328()
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C89`1<class BaseClass1>
callvirt instance string class G2_C89`1<class BaseClass1>::Method7<object>()
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1098`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.T<class BaseClass0,class G3_C1098`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.A<class G3_C1098`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1098`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass0,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.A<class G3_C1098`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.T<class BaseClass1,class G3_C1098`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G3_C1098::ClassMethod1494.MI.14298()#G3_C1098::ClassMethod1495.MI.14299<System.Object>()#G3_C1098::ClassMethod3589.14296()#G3_C1098::ClassMethod3590.14297()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G3_C1098::Method7.14295<System.Object>()#"
call void Generated626::M.G3_C1098.B<class G3_C1098`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C89`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass0,class BaseClass0,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.A.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.A<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C89`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G2_C89`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass0,class G2_C89`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.A<class G2_C89`1<class BaseClass0>>(!!0,string)
newobj instance void class G2_C89`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.T.T<class BaseClass1,class BaseClass1,class G2_C89`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.B.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G1_C7::Method4.4811()#G1_C7::Method5.4812()#G1_C7::Method6.4813<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G1_C7.B.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C89`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.B.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.T<class BaseClass0,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::Method4.5573()#G2_C89::Method5.MI.5575()#G2_C89::Method6.MI.5577<System.Object>()#"
call void Generated626::M.IBase1.A<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C89`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C7::Method7.MI.4816<System.Object>()#"
call void Generated626::M.IBase2.A.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.T<class BaseClass1,class G2_C89`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C89::ClassMethod1328.MI.5580()#G1_C7::ClassMethod1329.4818()#G1_C7::ClassMethod1330.4819<System.Object>()#G1_C7::ClassMethod1331.4820<System.Object>()#G2_C89::ClassMethod1494.5578()#G2_C89::ClassMethod1495.5579<System.Object>()#G2_C89::Method4.5573()#G2_C89::Method5.5574()#G2_C89::Method6.5576<System.Object>()#G1_C7::Method7.4815<System.Object>()#"
call void Generated626::M.G2_C89.B<class G2_C89`1<class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1098`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod3590()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod3589()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass0> on type class G3_C1098`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1098`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod3590()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod3590.14297()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod3589()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod3589.14296()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::Method7.14295<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1495<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1495.MI.14299<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1494()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G3_C1098::ClassMethod1494.MI.14298()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method5()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::Method4()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1331<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1330<object>()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1329()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1098`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1098`1<class BaseClass1>::ClassMethod1328()
calli default string(class G3_C1098`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G3_C1098`1<class BaseClass1> on type class G3_C1098`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C89`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1495<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1494()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass0>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass0> on type class G2_C89`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C89`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method6.4813<System.Object>()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method5.4812()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C7`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method4.4811()"
ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method5.MI.5575()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method6.MI.5577<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.MI.4816<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1495<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1495.5579<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1494()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1494.5578()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method6.5576<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method5()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method5.5574()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method4()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::Method4.5573()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1331<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1331.4820<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1330<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1330.4819<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1329()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::ClassMethod1329.4818()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::ClassMethod1328()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G2_C89::ClassMethod1328.MI.5580()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C89`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C89`1<class BaseClass1>::Method7<object>()
calli default string(class G2_C89`1<class BaseClass1>)
ldstr "G1_C7::Method7.4815<System.Object>()"
ldstr "class G2_C89`1<class BaseClass1> on type class G2_C89`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated626::MethodCallingTest()
call void Generated626::ConstrainedCallsTest()
call void Generated626::StructConstrainedInterfaceCallsTest()
call void Generated626::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest464/Generated464.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated464 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct514`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<class BaseClass1,!T0>, class IBase2`2<class BaseClass0,!T0>
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct514::Method7.3981<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,T0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass0,!T0>::Method7<[1]>()
ldstr "MyStruct514::Method7.MI.3983<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1018<M0>() cil managed noinlining {
ldstr "MyStruct514::ClassMethod1018.3984<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated464 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.T.T<T0,T1,(valuetype MyStruct514`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.T.T<T0,T1,(valuetype MyStruct514`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<!!T0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<!!T0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.A.T<T1,(valuetype MyStruct514`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.A.T<T1,(valuetype MyStruct514`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.A.A<(valuetype MyStruct514`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.A.A<(valuetype MyStruct514`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.A.B<(valuetype MyStruct514`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.A.B<(valuetype MyStruct514`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.B.T<T1,(valuetype MyStruct514`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.B.T<T1,(valuetype MyStruct514`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.B.A<(valuetype MyStruct514`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.B.A<(valuetype MyStruct514`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.B.B<(valuetype MyStruct514`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.B.B<(valuetype MyStruct514`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloca V_3
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ToString() pop
pop
ldloc V_3
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_4)
ldloca V_4
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloca V_4
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ToString() pop
pop
ldloc V_4
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_6
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_6
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_6
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV21
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV22
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV23
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
.try { ldloc V_7
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24:
.try { ldloc V_7
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25:
.try { ldloc V_7
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26:
.try { ldloc V_7
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV27
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27:
.try { ldloc V_7
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV28
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28:
.try { ldloc V_7
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV29
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_8)
ldloca V_8
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
.try { ldloc V_8
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV30
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV30} LV30:
.try { ldloc V_8
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV31
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV31} LV31:
.try { ldloc V_8
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV32
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV32} LV32:
.try { ldloc V_8
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV33
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV33} LV33:
.try { ldloc V_8
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV34
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV34} LV34:
.try { ldloc V_8
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV35
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV35} LV35:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_11)
ldloca V_11
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
.try { ldloc V_11
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_11
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_11
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.A<valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_12)
ldloca V_12
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
.try { ldloc V_12
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_12
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_12
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_15)
ldloca V_15
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0> ldnull
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_16)
ldloca V_16
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1> ldnull
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated464::MethodCallingTest()
call void Generated464::ConstrainedCallsTest()
call void Generated464::StructConstrainedInterfaceCallsTest()
call void Generated464::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated464 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct514`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<class BaseClass1,!T0>, class IBase2`2<class BaseClass0,!T0>
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct514::Method7.3981<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,T0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass0,!T0>::Method7<[1]>()
ldstr "MyStruct514::Method7.MI.3983<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1018<M0>() cil managed noinlining {
ldstr "MyStruct514::ClassMethod1018.3984<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated464 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.T.T<T0,T1,(valuetype MyStruct514`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.T.T<T0,T1,(valuetype MyStruct514`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<!!T0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<!!T0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.A.T<T1,(valuetype MyStruct514`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.A.T<T1,(valuetype MyStruct514`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.A.A<(valuetype MyStruct514`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.A.A<(valuetype MyStruct514`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.A.B<(valuetype MyStruct514`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.A.B<(valuetype MyStruct514`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.B.T<T1,(valuetype MyStruct514`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.B.T<T1,(valuetype MyStruct514`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.B.A<(valuetype MyStruct514`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.B.A<(valuetype MyStruct514`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct514.B.B<(valuetype MyStruct514`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct514.B.B<(valuetype MyStruct514`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloca V_3
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ToString() pop
pop
ldloc V_3
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_4)
ldloca V_4
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloca V_4
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ClassMethod1018<object>()
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type MyStruct514"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ToString() pop
pop
ldloc V_4
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_4
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_5
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_6
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_6
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_6
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV21
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV22
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22:
.try { ldloc V_6
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV23
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
.try { ldloc V_7
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24:
.try { ldloc V_7
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25:
.try { ldloc V_7
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26:
.try { ldloc V_7
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV27
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27:
.try { ldloc V_7
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV28
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28:
.try { ldloc V_7
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV29
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_8)
ldloca V_8
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
.try { ldloc V_8
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV30
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV30} LV30:
.try { ldloc V_8
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV31
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV31} LV31:
.try { ldloc V_8
ldstr "MyStruct514::Method7.3981<System.Object>()#"
call void Generated464::M.IBase2.B.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV32
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV32} LV32:
.try { ldloc V_8
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV33
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV33} LV33:
.try { ldloc V_8
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV34
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV34} LV34:
.try { ldloc V_8
ldstr "MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.IBase2.A.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV35
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV35} LV35:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.A<valuetype MyStruct514`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.A.B<valuetype MyStruct514`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_11)
ldloca V_11
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
.try { ldloc V_11
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_11
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.T<class BaseClass0,valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_11
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.A<valuetype MyStruct514`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_12)
ldloca V_12
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
.try { ldloc V_12
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_12
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.T<class BaseClass1,valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_12
ldstr "MyStruct514::Method7.3981<System.Object>()#" +
"MyStruct514::Method7.MI.3983<System.Object>()#"
call void Generated464::M.MyStruct514.B.B<valuetype MyStruct514`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct514`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct514`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct514`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass0> V_15)
ldloca V_15
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0> ldnull
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct514`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct514`2<class BaseClass1,class BaseClass1> V_16)
ldloca V_16
initobj valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ClassMethod1018<object>()
calli default string(object)
ldstr "MyStruct514::ClassMethod1018.3984<System.Object>()"
ldstr "valuetype MyStruct514`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1> ldnull
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16 box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string valuetype MyStruct514`2<class BaseClass1,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.3981<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldloc V_16
box valuetype MyStruct514`2<class BaseClass1,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct514::Method7.MI.3983<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct514`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated464::MethodCallingTest()
call void Generated464::ConstrainedCallsTest()
call void Generated464::StructConstrainedInterfaceCallsTest()
call void Generated464::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Base/br.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly 'br'{}
.class public _br {
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 10
br PASS
FAIL:
ldc.i4 0x0
ret
PASS:
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly 'br'{}
.class public _br {
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 10
br PASS
FAIL:
ldc.i4 0x0
ret
PASS:
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/dim-protected-accessibility2.il |
// Microsoft (R) .NET Framework IL Disassembler. Version 4.6.1055.0
// Copyright (c) Microsoft Corporation. All rights reserved.
// Metadata version: v4.0.30319
.assembly extern mscorlib
{
.ver 4:0:0:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
}
.assembly 'ProtectedAccessibility_07'
{
.custom instance void class [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::'.ctor'(int32) = (01 00 08 00 00 00 00 00 ) // ........
.custom instance void class [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::'.ctor'() = (
01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78 // ....T..WrapNonEx
63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 ) // ceptionThrows.
.custom instance void class [mscorlib]System.Diagnostics.DebuggableAttribute::'.ctor'(valuetype [mscorlib]System.Diagnostics.DebuggableAttribute/DebuggingModes) = (01 00 07 01 00 00 00 00 ) // ........
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module ProtectedAccessibility_07.exe // GUID = {4DA4F172-A1C5-4ACE-B38C-B0705C3B61F5}
.class interface private auto ansi abstract I1`1<T>
{
// method line 1
.method family static hidebysig
default void M1 () cil managed
{
// Method begins at RVA 0x2050
// Code size 13 (0xd)
.maxstack 8
IL_0000: nop
IL_0001: ldstr "M1"
IL_0006: call void class [mscorlib]System.Console::WriteLine(string)
IL_000b: nop
IL_000c: ret
} // end of method I1`1::M1
} // end of class I1`1
.class private auto ansi beforefieldinit I3`1<T>
extends [mscorlib]System.Object
implements class I1`1<!0> {
// method line 2
.method public hidebysig specialname rtspecialname
instance default void '.ctor' () cil managed
{
// Method begins at RVA 0x205e
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::'.ctor'()
IL_0006: nop
IL_0007: ret
} // end of method I3`1::.ctor
} // end of class I3`1
.class private auto ansi beforefieldinit I2`1<T>
extends class I3`1<!0>
{
// method line 3
.method public static hidebysig
default void Test () cil managed
{
// Method begins at RVA 0x2067
// Code size 8 (0x8)
.maxstack 8
IL_0000: nop
IL_0001: call void class I1`1<int32>::M1()
IL_0006: nop
IL_0007: ret
} // end of method I2`1::Test
// method line 4
.method public hidebysig specialname rtspecialname
instance default void '.ctor' () cil managed
{
// Method begins at RVA 0x2070
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void class I3`1<!T>::'.ctor'()
IL_0006: nop
IL_0007: ret
} // end of method I2`1::.ctor
} // end of class I2`1
.class private auto ansi beforefieldinit A
extends [mscorlib]System.Object
{
// method line 5
.method private static hidebysig
default void Main () cil managed
{
// Method begins at RVA 0x2079
.entrypoint
// Code size 8 (0x8)
.maxstack 8
IL_0000: nop
IL_0001: call void class I2`1<unsigned int8>::Test()
IL_0006: nop
IL_0007: ret
} // end of method A::Main
// method line 6
.method public hidebysig specialname rtspecialname
instance default void '.ctor' () cil managed
{
// Method begins at RVA 0x205e
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::'.ctor'()
IL_0006: nop
IL_0007: ret
} // end of method A::.ctor
} // end of class A
|
// Microsoft (R) .NET Framework IL Disassembler. Version 4.6.1055.0
// Copyright (c) Microsoft Corporation. All rights reserved.
// Metadata version: v4.0.30319
.assembly extern mscorlib
{
.ver 4:0:0:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
}
.assembly 'ProtectedAccessibility_07'
{
.custom instance void class [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::'.ctor'(int32) = (01 00 08 00 00 00 00 00 ) // ........
.custom instance void class [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::'.ctor'() = (
01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78 // ....T..WrapNonEx
63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 ) // ceptionThrows.
.custom instance void class [mscorlib]System.Diagnostics.DebuggableAttribute::'.ctor'(valuetype [mscorlib]System.Diagnostics.DebuggableAttribute/DebuggingModes) = (01 00 07 01 00 00 00 00 ) // ........
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module ProtectedAccessibility_07.exe // GUID = {4DA4F172-A1C5-4ACE-B38C-B0705C3B61F5}
.class interface private auto ansi abstract I1`1<T>
{
// method line 1
.method family static hidebysig
default void M1 () cil managed
{
// Method begins at RVA 0x2050
// Code size 13 (0xd)
.maxstack 8
IL_0000: nop
IL_0001: ldstr "M1"
IL_0006: call void class [mscorlib]System.Console::WriteLine(string)
IL_000b: nop
IL_000c: ret
} // end of method I1`1::M1
} // end of class I1`1
.class private auto ansi beforefieldinit I3`1<T>
extends [mscorlib]System.Object
implements class I1`1<!0> {
// method line 2
.method public hidebysig specialname rtspecialname
instance default void '.ctor' () cil managed
{
// Method begins at RVA 0x205e
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::'.ctor'()
IL_0006: nop
IL_0007: ret
} // end of method I3`1::.ctor
} // end of class I3`1
.class private auto ansi beforefieldinit I2`1<T>
extends class I3`1<!0>
{
// method line 3
.method public static hidebysig
default void Test () cil managed
{
// Method begins at RVA 0x2067
// Code size 8 (0x8)
.maxstack 8
IL_0000: nop
IL_0001: call void class I1`1<int32>::M1()
IL_0006: nop
IL_0007: ret
} // end of method I2`1::Test
// method line 4
.method public hidebysig specialname rtspecialname
instance default void '.ctor' () cil managed
{
// Method begins at RVA 0x2070
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void class I3`1<!T>::'.ctor'()
IL_0006: nop
IL_0007: ret
} // end of method I2`1::.ctor
} // end of class I2`1
.class private auto ansi beforefieldinit A
extends [mscorlib]System.Object
{
// method line 5
.method private static hidebysig
default void Main () cil managed
{
// Method begins at RVA 0x2079
.entrypoint
// Code size 8 (0x8)
.maxstack 8
IL_0000: nop
IL_0001: call void class I2`1<unsigned int8>::Test()
IL_0006: nop
IL_0007: ret
} // end of method A::Main
// method line 6
.method public hidebysig specialname rtspecialname
instance default void '.ctor' () cil managed
{
// Method begins at RVA 0x205e
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::'.ctor'()
IL_0006: nop
IL_0007: ret
} // end of method A::.ctor
} // end of class A
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/opt/JitMinOpts/Regression/GitHub_42719.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly GitHub_42719 {}
.module GitHub_42719.exe
.method public static int32 Main() cil managed
{
.entrypoint
.maxstack 5
// "0 u> -1" shouldn't be optimized into "-1 >> 31"
ldc.i4.s 100
ldc.i4.0
ldc.i4.m1
cgt.un
add
ret
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly GitHub_42719 {}
.module GitHub_42719.exe
.method public static int32 Main() cil managed
{
.entrypoint
.maxstack 5
// "0 u> -1" shouldn't be optimized into "-1 >> 31"
ldc.i4.s 100
ldc.i4.0
ldc.i4.m1
cgt.un
add
ret
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/JitBlue/DevDiv_278369/DevDiv_278369.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// This test checks that value numbering does not incorrectly propagate the value number for an operand to its
// consuming operator unless the type of the operand and the operator agree.
//
// In particular, in the body of method N, the optimizer will fold the two `ceq` conditions together using a logical
// or of type int32. Value numbering will then determine that one operand to the logical or is a constant `0` (namely,
// the result of `ldloc.0` and attempt to propagate the value number of the logical or's other operand to the logical
// or itself. This should not succeed, as the type of the logical or is int32 and the type of its non-zero operand is
// `ref`.
.assembly extern mscorlib {}
.assembly 'DevDiv_278369' {}
.assembly extern xunit.core {}
.class private auto ansi beforefieldinit C extends [mscorlib]System.Object
{
.method private hidebysig static int32 N(object o) cil managed noinlining
{
.locals (int32)
ldc.i4.0
stloc.0
ldarg.0
isinst C
ldnull
ceq
brfalse.s label
ldloc.0
ldc.i4.0
ceq
brfalse.s label
ldc.i4.s 0
ret
label:
ldc.i4 100
ret
}
.method private hidebysig static int32 Main(string[] args) cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
newobj instance void C::.ctor()
call int32 C::N(object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// This test checks that value numbering does not incorrectly propagate the value number for an operand to its
// consuming operator unless the type of the operand and the operator agree.
//
// In particular, in the body of method N, the optimizer will fold the two `ceq` conditions together using a logical
// or of type int32. Value numbering will then determine that one operand to the logical or is a constant `0` (namely,
// the result of `ldloc.0` and attempt to propagate the value number of the logical or's other operand to the logical
// or itself. This should not succeed, as the type of the logical or is int32 and the type of its non-zero operand is
// `ref`.
.assembly extern mscorlib {}
.assembly 'DevDiv_278369' {}
.assembly extern xunit.core {}
.class private auto ansi beforefieldinit C extends [mscorlib]System.Object
{
.method private hidebysig static int32 N(object o) cil managed noinlining
{
.locals (int32)
ldc.i4.0
stloc.0
ldarg.0
isinst C
ldnull
ceq
brfalse.s label
ldloc.0
ldc.i4.0
ceq
brfalse.s label
ldc.i4.s 0
ret
label:
ldc.i4 100
ret
}
.method private hidebysig static int32 Main(string[] args) cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
newobj instance void C::.ctor()
call int32 C::N(object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b31289/b31289.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'b31289' {}
.assembly extern xunit.core {}
.class ILGEN_0x59e058c0 {
.field static unsigned int16 field_0x0
.method static int32 Method_0x2dd7(unsigned int64 Arg_0x3) {
.maxstack 17
.locals (int64[] local_0x0,unsigned int8 local_0x1,unsigned int8[] local_0x2)
ldc.i4 255
newarr [mscorlib]System.Int64
stloc local_0x0
ldc.i4 0x76c72543
stloc local_0x1
ldc.i4 255
newarr [mscorlib]System.Byte
stloc local_0x2
ldc.i4 0xf087595
stsfld unsigned int16 ILGEN_0x59e058c0::field_0x0
Start_Orphan_0:
ldsflda unsigned int16 ILGEN_0x59e058c0::field_0x0
ldc.r4 float32(0x279a2607)
conv.u1
stind.i2
End_Orphan_0:
Start_Orphan_1:
ldarg Arg_0x3
conv.ovf.i1
conv.u1
newarr [mscorlib]System.Int64
pop
End_Orphan_1:
Start_Orphan_a:
ldloc local_0x0
ldc.i4.2
ldelema [mscorlib]System.Int64
ldarg Arg_0x3
stind.i8
End_Orphan_a:
ldc.i8 3
ldloc local_0x0
ldc.i4.6
ldelem.i8
neg
conv.i8
or
conv.u1
ret
}
.method static int32 Main() {
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 20
.try {
ldc.i8 0x65d25f3b4fa63daa
call int32 ILGEN_0x59e058c0::Method_0x2dd7(unsigned int64 Arg_0x3)
pop
leave stop
} catch [mscorlib]System.OverflowException {
pop
leave stop
}
stop:
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'b31289' {}
.assembly extern xunit.core {}
.class ILGEN_0x59e058c0 {
.field static unsigned int16 field_0x0
.method static int32 Method_0x2dd7(unsigned int64 Arg_0x3) {
.maxstack 17
.locals (int64[] local_0x0,unsigned int8 local_0x1,unsigned int8[] local_0x2)
ldc.i4 255
newarr [mscorlib]System.Int64
stloc local_0x0
ldc.i4 0x76c72543
stloc local_0x1
ldc.i4 255
newarr [mscorlib]System.Byte
stloc local_0x2
ldc.i4 0xf087595
stsfld unsigned int16 ILGEN_0x59e058c0::field_0x0
Start_Orphan_0:
ldsflda unsigned int16 ILGEN_0x59e058c0::field_0x0
ldc.r4 float32(0x279a2607)
conv.u1
stind.i2
End_Orphan_0:
Start_Orphan_1:
ldarg Arg_0x3
conv.ovf.i1
conv.u1
newarr [mscorlib]System.Int64
pop
End_Orphan_1:
Start_Orphan_a:
ldloc local_0x0
ldc.i4.2
ldelema [mscorlib]System.Int64
ldarg Arg_0x3
stind.i8
End_Orphan_a:
ldc.i8 3
ldloc local_0x0
ldc.i4.6
ldelem.i8
neg
conv.i8
or
conv.u1
ret
}
.method static int32 Main() {
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 20
.try {
ldc.i8 0x65d25f3b4fa63daa
call int32 ILGEN_0x59e058c0::Method_0x2dd7(unsigned int64 Arg_0x3)
pop
leave stop
} catch [mscorlib]System.OverflowException {
pop
leave stop
}
stop:
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/jit64/localloc/ehverify/eh07_large.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern xunit.core {}
.assembly extern mscorlib{}
.assembly extern localloc_common{}
.assembly 'eh07_large'{}
.class private auto ansi beforefieldinit LocallocTest
extends [mscorlib]System.Object
{
.method private hidebysig static void func() cil managed
{
.maxstack 2
.locals init (int32* intArray2)
.try{
IL_000a: ldstr "Test Exception"
IL_000f: newobj instance void [mscorlib]System.Exception::.ctor(string)
IL_0014: throw
}
filter
{
pop
IL_0000: ldc.i4.4
IL_0001: ldc.i4 0x1000
IL_0006: mul
IL_0007: localloc
IL_0009: stloc.0
pop
ldc.i4.1
IL_0015: endfilter
}
{ // Handler
pop
leave.s L_END
}
L_END: ret
} // end of method LocallocTest::func
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 1
.locals init (int32 retValue)
.try
{
IL_0000: call void LocallocTest::func()
IL_0005: leave.s IL_002d
} // end .try
catch [mscorlib]System.InvalidProgramException
{
IL_0007: pop
IL_0008: ldstr "InvalidProgramException was caught."
IL_000d: call void [System.Console]System.Console::WriteLine(string)
IL_0012: leave.s IL_003b
} // end handler
catch [mscorlib]System.Security.VerificationException
{
IL_0014: pop
IL_0015: ldstr "Security.VerificationException was caught."
IL_001a: call void [System.Console]System.Console::WriteLine(string)
IL_001f: leave.s IL_003b
} // end handler
catch [mscorlib]System.Exception
{
IL_0021: callvirt instance string [mscorlib]System.Exception::ToString()
IL_0026: call void [System.Console]System.Console::WriteLine(string)
IL_002b: leave.s IL_002d
} // end handler
IL_002d: ldstr "Failed"
IL_0032: call void [System.Console]System.Console::WriteLine(string)
IL_0037: ldc.i4.1
IL_0038: stloc.0
IL_0039: br.s IL_004a
IL_003b: ldstr "Passed"
IL_0040: call void [System.Console]System.Console::WriteLine(string)
IL_0045: ldc.i4.s 100
IL_0047: stloc.0
IL_0048: br.s IL_004a
IL_004a: ldloc.0
IL_004b: ret
} // end of method LocallocTest::Main
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method LocallocTest::.ctor
} // end of class LocallocTest
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern xunit.core {}
.assembly extern mscorlib{}
.assembly extern localloc_common{}
.assembly 'eh07_large'{}
.class private auto ansi beforefieldinit LocallocTest
extends [mscorlib]System.Object
{
.method private hidebysig static void func() cil managed
{
.maxstack 2
.locals init (int32* intArray2)
.try{
IL_000a: ldstr "Test Exception"
IL_000f: newobj instance void [mscorlib]System.Exception::.ctor(string)
IL_0014: throw
}
filter
{
pop
IL_0000: ldc.i4.4
IL_0001: ldc.i4 0x1000
IL_0006: mul
IL_0007: localloc
IL_0009: stloc.0
pop
ldc.i4.1
IL_0015: endfilter
}
{ // Handler
pop
leave.s L_END
}
L_END: ret
} // end of method LocallocTest::func
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 1
.locals init (int32 retValue)
.try
{
IL_0000: call void LocallocTest::func()
IL_0005: leave.s IL_002d
} // end .try
catch [mscorlib]System.InvalidProgramException
{
IL_0007: pop
IL_0008: ldstr "InvalidProgramException was caught."
IL_000d: call void [System.Console]System.Console::WriteLine(string)
IL_0012: leave.s IL_003b
} // end handler
catch [mscorlib]System.Security.VerificationException
{
IL_0014: pop
IL_0015: ldstr "Security.VerificationException was caught."
IL_001a: call void [System.Console]System.Console::WriteLine(string)
IL_001f: leave.s IL_003b
} // end handler
catch [mscorlib]System.Exception
{
IL_0021: callvirt instance string [mscorlib]System.Exception::ToString()
IL_0026: call void [System.Console]System.Console::WriteLine(string)
IL_002b: leave.s IL_002d
} // end handler
IL_002d: ldstr "Failed"
IL_0032: call void [System.Console]System.Console::WriteLine(string)
IL_0037: ldc.i4.1
IL_0038: stloc.0
IL_0039: br.s IL_004a
IL_003b: ldstr "Passed"
IL_0040: call void [System.Console]System.Console::WriteLine(string)
IL_0045: ldc.i4.s 100
IL_0047: stloc.0
IL_0048: br.s IL_004a
IL_004a: ldloc.0
IL_004b: ret
} // end of method LocallocTest::Main
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method LocallocTest::.ctor
} // end of class LocallocTest
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest516/Generated516.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated516 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct566`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<!T0,class BaseClass1>, class IBase2`2<!T0,!T0>
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct566::Method7.4264<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,class BaseClass1>::Method7<[1]>()
ldstr "MyStruct566::Method7.MI.4265<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T0>::Method7<[1]>()
ldstr "MyStruct566::Method7.MI.4267<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1129<M0>() cil managed noinlining {
ldstr "MyStruct566::ClassMethod1129.4268<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1130<M0>() cil managed noinlining {
ldstr "MyStruct566::ClassMethod1130.4269<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated516 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.T.T<T0,T1,(valuetype MyStruct566`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.T.T<T0,T1,(valuetype MyStruct566`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T0,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.A.T<T1,(valuetype MyStruct566`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.A.T<T1,(valuetype MyStruct566`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.A.A<(valuetype MyStruct566`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.A.A<(valuetype MyStruct566`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.A.B<(valuetype MyStruct566`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.A.B<(valuetype MyStruct566`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1129<object>()
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1130<object>()
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1129<object>()
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1130<object>()
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.B<valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.A<valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.B<valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.A<valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.T<class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.A<valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.T<class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.B<valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1129<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1130<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1129<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1130<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated516::MethodCallingTest()
call void Generated516::ConstrainedCallsTest()
call void Generated516::StructConstrainedInterfaceCallsTest()
call void Generated516::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated516 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct566`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<!T0,class BaseClass1>, class IBase2`2<!T0,!T0>
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct566::Method7.4264<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,class BaseClass1>::Method7<[1]>()
ldstr "MyStruct566::Method7.MI.4265<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T0>::Method7<[1]>()
ldstr "MyStruct566::Method7.MI.4267<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1129<M0>() cil managed noinlining {
ldstr "MyStruct566::ClassMethod1129.4268<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1130<M0>() cil managed noinlining {
ldstr "MyStruct566::ClassMethod1130.4269<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated516 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.T.T<T0,T1,(valuetype MyStruct566`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.T.T<T0,T1,(valuetype MyStruct566`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T0,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.A.T<T1,(valuetype MyStruct566`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.A.T<T1,(valuetype MyStruct566`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.A.A<(valuetype MyStruct566`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.A.A<(valuetype MyStruct566`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct566.A.B<(valuetype MyStruct566`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct566.A.B<(valuetype MyStruct566`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1129<object>()
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1130<object>()
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1129<object>()
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1130<object>()
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type MyStruct566"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.B<valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.A<valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#"
call void Generated516::M.IBase2.A.B<valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.T<class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_6
ldstr "MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.IBase2.A.A<valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.T<class BaseClass0,valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.A<valuetype MyStruct566`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.T<class BaseClass1,valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct566::Method7.MI.4265<System.Object>()#" +
"MyStruct566::Method7.MI.4267<System.Object>()#"
call void Generated516::M.MyStruct566.A.B<valuetype MyStruct566`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1129<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ClassMethod1130<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct566`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct566`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.4264<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1129<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1129.4268<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ClassMethod1130<object>()
calli default string(object)
ldstr "MyStruct566::ClassMethod1130.4269<System.Object>()"
ldstr "valuetype MyStruct566`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct566`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4265<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct566`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct566::Method7.MI.4267<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct566`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated516::MethodCallingTest()
call void Generated516::ConstrainedCallsTest()
call void Generated516::StructConstrainedInterfaceCallsTest()
call void Generated516::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M09.5-PDC/b28596/b28596.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly ILGEN_0x393f432b {}
.class ILGEN_0x393f432b {
.field static float32 field_0x3
.method static int32 main() {
.entrypoint
.maxstack 11
.locals (unsigned int8[] local_0x2,int64[] local_0x7,unsigned int8 local_0x8)
.try {
ldc.i4 255
newarr [mscorlib]System.Byte
stloc local_0x2
ldc.i4 255
newarr [mscorlib]System.Int64
stloc local_0x7
ldc.i4 0x2f2917c
stloc local_0x8
ldc.r4 float32(0x3b902473)
stsfld float32 ILGEN_0x393f432b::field_0x3
Start_Orphan_0:
ldloc local_0x7
ldc.i4 55
Start_Orphan_1:
ldloca local_0x8
ldc.i4 0x73ef294b
stind.i1
End_Orphan_1:
ldloc local_0x7
ldc.i4 0x5909163b
ldelema [mscorlib]System.Int64
ldind.i8
ldc.i8 1
mul
stelem.i8
End_Orphan_0:
ldsflda float32 ILGEN_0x393f432b::field_0x3
ldind.r4
Start_Orphan_a:
ldloc local_0x2
ldc.i4 1
ldc.i4 59
stelem.i1
End_Orphan_a:
conv.u2
pop
leave exit
} catch [mscorlib]System.IndexOutOfRangeException
{
pop
leave exit
}
exit:
ldc.i4.0
ldc.i4 100
add
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly ILGEN_0x393f432b {}
.class ILGEN_0x393f432b {
.field static float32 field_0x3
.method static int32 main() {
.entrypoint
.maxstack 11
.locals (unsigned int8[] local_0x2,int64[] local_0x7,unsigned int8 local_0x8)
.try {
ldc.i4 255
newarr [mscorlib]System.Byte
stloc local_0x2
ldc.i4 255
newarr [mscorlib]System.Int64
stloc local_0x7
ldc.i4 0x2f2917c
stloc local_0x8
ldc.r4 float32(0x3b902473)
stsfld float32 ILGEN_0x393f432b::field_0x3
Start_Orphan_0:
ldloc local_0x7
ldc.i4 55
Start_Orphan_1:
ldloca local_0x8
ldc.i4 0x73ef294b
stind.i1
End_Orphan_1:
ldloc local_0x7
ldc.i4 0x5909163b
ldelema [mscorlib]System.Int64
ldind.i8
ldc.i8 1
mul
stelem.i8
End_Orphan_0:
ldsflda float32 ILGEN_0x393f432b::field_0x3
ldind.r4
Start_Orphan_a:
ldloc local_0x2
ldc.i4 1
ldc.i4 59
stelem.i1
End_Orphan_a:
conv.u2
pop
leave exit
} catch [mscorlib]System.IndexOutOfRangeException
{
pop
leave exit
}
exit:
ldc.i4.0
ldc.i4 100
add
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Conformance_Base/ldc_conv_ovf_r8_i4.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
//
//======================================
//---- CLASS ----------------
.class public conv_ovf_i4 {
//---- GLOBAL DATA ----------
//---- METHODS --------------
.method public static int32 conv_0(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_0(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_1(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_1(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_2(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_2(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_3(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_3(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_4(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_4(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_5(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_5(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_6(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_6(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_7(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_7(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_8(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_8(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_9(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_9(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_10(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_10(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_11(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_11(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_12(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_12(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_13(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_13(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_14(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_14(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_15(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_15(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_16(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_16(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_17(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_17(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_18(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_18(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_19(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_19(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_20(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_20(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_21(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_21(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_22(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_22(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_23(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_23(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_24(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_24(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_25(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_25(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
//---- CONSTRUCTOR ----------
.method public void conv_ovf_i4() {
.maxstack 1
ret
}
//---- MAIN -----------------
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 5
//====== begin testing ======
//-- -inf r8 --
ldc.r8 float64(0xFFF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_0(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -min r8 --
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_1(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -1 r8 --
ldc.r8 float64(0xBFF0000000000000)
ldc.i4 0xFFFFFFFF
call int32 conv_ovf_i4::conv_2(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -0 r8 --
ldc.r8 float64(0x8000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_3(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +0 r8 --
ldc.r8 float64(0x0000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_4(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +1 r8 --
ldc.r8 float64(0x3FF0000000000000)
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_5(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +max r8 --
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_6(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- +inf r8 --
ldc.r8 float64(0x7FF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_7(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- NaN r8 --
ldc.r8 float64(0x7FF8000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_8(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- 1.5 r8 --
ldc.r8 1.5
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_9(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- 999.99 r8 --
ldc.r8 99.99
ldc.i4 0x00000063
call int32 conv_ovf_i4::conv_10(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -min i4 --
ldc.r8 float64(0xC1E0000000000000)
ldc.i4 0x80000000
call int32 conv_ovf_i4::conv_11(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +max i4 --
ldc.r8 float64(0x41DFFFFFFFC00000)
ldc.i4 0x7FFFFFFF
call int32 conv_ovf_i4::conv_12(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//====== conv_u testing ======
//-- -inf r8 --
/* ldc.r8 float64(0xFFF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_13(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -min r8 --
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_14(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -1 r8 --
ldc.r8 float64(0xBFF0000000000000)
ldc.i4 0xFFFFFFFF
call int32 conv_ovf_i4::conv_u_15(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -0 r8 --
ldc.r8 float64(0x8000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_16(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
*///-- +0 r8 --
ldc.r8 float64(0x0000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_17(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +1 r8 --
ldc.r8 float64(0x3FF0000000000000)
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_u_18(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +max r8 --
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_19(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- +inf r8 --
ldc.r8 float64(0x7FF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_20(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- NaN r8 --
ldc.r8 float64(0x7FF8000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_21(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- 1.5 r8 --
ldc.r8 1.5
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_u_22(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- 999.99 r8 --
ldc.r8 99.99
ldc.i4 0x00000063
call int32 conv_ovf_i4::conv_u_23(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -min i4 --
/* ldc.r8 float64(0xC1E0000000000000)
ldc.i4 0x80000000
call int32 conv_ovf_i4::conv_u_24(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
*///-- +max i4 --
ldc.r8 float64(0x41DFFFFFFFC00000)
ldc.i4 0x7FFFFFFF
call int32 conv_ovf_i4::conv_u_25(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//====== end testing ========
//---- branch here on pass --
PASS:
ldc.i4 100
br END
//---- branch here on fail --
FAIL:
ldc.i4 101
//---- return the result ----
END:
ret
//---- END OF METHOD --------
}
//---- EOF ------------------
}
.assembly ldc_conv_ovf_r8_i4{}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
//
//======================================
//---- CLASS ----------------
.class public conv_ovf_i4 {
//---- GLOBAL DATA ----------
//---- METHODS --------------
.method public static int32 conv_0(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_0(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_1(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_1(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_2(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_2(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_3(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_3(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_4(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_4(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_5(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_5(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_6(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_6(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_7(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_7(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_8(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_8(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_9(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_9(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_10(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_10(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_11(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_11(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_12(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_12(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_13(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_13(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_14(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_14(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_15(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_15(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_16(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_16(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_17(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_17(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_18(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_18(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_19(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_19(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_20(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_20(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_21(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_21(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_22(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_22(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_23(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_23(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_24(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_24(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
.method public static int32 conv_25(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start:
ldarg 0
conv.ovf.i4
//- No exception
ldarg 1
ceq
stloc.1
leave.s try_end
try_end:
ldloc.1
brfalse FAIL
ldc.i4 0x11111111
br END
aHandler:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd
HEnd:
ldloc 0
brfalse FAIL
ldc.i4 0xEEEEEEEE
br END
FAIL:
ldc.i4 0x00000000
br END
END:
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd
}
.method public static int32 conv_u_25(float64,int32) {
.locals (class [mscorlib]System.OverflowException, int32)
.maxstack 2
try_start2:
ldarg 0
conv.ovf.i4.un
stloc.1
leave.s try_end2
try_end2:
//- No exception
ldloc.1
ldarg 1
ceq
brfalse FAIL2
ldc.i4 0x11111111
br END2
aHandler2:
//- Got an OverflowException
isinst [mscorlib]System.OverflowException
stloc 0
leave HEnd2
HEnd2:
ldloc 0
brfalse FAIL2
ldc.i4 0xEEEEEEEE
br END2
FAIL2:
ldc.i4 0x00000000
br END2
END2:
ret
.try try_start2 to try_end2 catch [mscorlib]System.OverflowException handler aHandler2 to HEnd2
}
//---- CONSTRUCTOR ----------
.method public void conv_ovf_i4() {
.maxstack 1
ret
}
//---- MAIN -----------------
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 5
//====== begin testing ======
//-- -inf r8 --
ldc.r8 float64(0xFFF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_0(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -min r8 --
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_1(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -1 r8 --
ldc.r8 float64(0xBFF0000000000000)
ldc.i4 0xFFFFFFFF
call int32 conv_ovf_i4::conv_2(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -0 r8 --
ldc.r8 float64(0x8000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_3(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +0 r8 --
ldc.r8 float64(0x0000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_4(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +1 r8 --
ldc.r8 float64(0x3FF0000000000000)
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_5(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +max r8 --
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_6(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- +inf r8 --
ldc.r8 float64(0x7FF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_7(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- NaN r8 --
ldc.r8 float64(0x7FF8000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_8(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- 1.5 r8 --
ldc.r8 1.5
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_9(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- 999.99 r8 --
ldc.r8 99.99
ldc.i4 0x00000063
call int32 conv_ovf_i4::conv_10(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -min i4 --
ldc.r8 float64(0xC1E0000000000000)
ldc.i4 0x80000000
call int32 conv_ovf_i4::conv_11(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +max i4 --
ldc.r8 float64(0x41DFFFFFFFC00000)
ldc.i4 0x7FFFFFFF
call int32 conv_ovf_i4::conv_12(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//====== conv_u testing ======
//-- -inf r8 --
/* ldc.r8 float64(0xFFF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_13(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -min r8 --
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_14(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- -1 r8 --
ldc.r8 float64(0xBFF0000000000000)
ldc.i4 0xFFFFFFFF
call int32 conv_ovf_i4::conv_u_15(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -0 r8 --
ldc.r8 float64(0x8000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_16(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
*///-- +0 r8 --
ldc.r8 float64(0x0000000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_17(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +1 r8 --
ldc.r8 float64(0x3FF0000000000000)
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_u_18(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- +max r8 --
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_19(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- +inf r8 --
ldc.r8 float64(0x7FF0000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_20(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- NaN r8 --
ldc.r8 float64(0x7FF8000000000000)
ldc.i4 0x00000000
call int32 conv_ovf_i4::conv_u_21(float64,int32)
ldc.i4 0xEEEEEEEE
ceq
brfalse FAIL
//-- 1.5 r8 --
ldc.r8 1.5
ldc.i4 0x00000001
call int32 conv_ovf_i4::conv_u_22(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- 999.99 r8 --
ldc.r8 99.99
ldc.i4 0x00000063
call int32 conv_ovf_i4::conv_u_23(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//-- -min i4 --
/* ldc.r8 float64(0xC1E0000000000000)
ldc.i4 0x80000000
call int32 conv_ovf_i4::conv_u_24(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
*///-- +max i4 --
ldc.r8 float64(0x41DFFFFFFFC00000)
ldc.i4 0x7FFFFFFF
call int32 conv_ovf_i4::conv_u_25(float64,int32)
ldc.i4 0x11111111
ceq
brfalse FAIL
//====== end testing ========
//---- branch here on pass --
PASS:
ldc.i4 100
br END
//---- branch here on fail --
FAIL:
ldc.i4 101
//---- return the result ----
END:
ret
//---- END OF METHOD --------
}
//---- EOF ------------------
}
.assembly ldc_conv_ovf_r8_i4{}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest939/Generated939.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated939 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1411`1<T0>
extends class G2_C435`2<!T0,class BaseClass1>
implements class IBase2`2<class BaseClass1,class BaseClass0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1411::Method7.16033<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,class BaseClass0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<[1]>()
ldstr "G3_C1411::Method7.MI.16034<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4217<M0>() cil managed noinlining {
ldstr "G3_C1411::ClassMethod4217.16035<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4218<M0>() cil managed noinlining {
ldstr "G3_C1411::ClassMethod4218.16036<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G2_C435<T0,class BaseClass1>.ClassMethod2233'() cil managed noinlining {
.override method instance string class G2_C435`2<!T0,class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C435`2<!T0,class BaseClass1>::.ctor()
ret
}
}
.class public G2_C435`2<T0, T1>
extends class G1_C8`2<class BaseClass1,!T1>
implements class IBase1`1<class BaseClass0>, class IBase2`2<class BaseClass0,!T1>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C435::Method4.8921()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G2_C435::Method5.8922()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C435::Method6.8923<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G2_C435::Method6.MI.8924<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C435::Method7.8925<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2233() cil managed noinlining {
ldstr "G2_C435::ClassMethod2233.8926()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2234<M0>() cil managed noinlining {
ldstr "G2_C435::ClassMethod2234.8927<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2235<M0>() cil managed noinlining {
ldstr "G2_C435::ClassMethod2235.8928<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass1,T1>.ClassMethod1332'() cil managed noinlining {
.override method instance string class G1_C8`2<class BaseClass1,!T1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass1,T1>.ClassMethod1334'<M0>() cil managed noinlining {
.override method instance string class G1_C8`2<class BaseClass1,!T1>::ClassMethod1334<[1]>()
ldstr "G2_C435::ClassMethod1334.MI.8930<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C8`2<class BaseClass1,!T1>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public G1_C8`2<T0, T1>
implements class IBase2`2<!T0,!T1>, IBase0
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C8::Method7.4821<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>()
ldstr "G1_C8::Method7.MI.4822<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "G1_C8::Method0.4823()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining {
.override method instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ret
}
.method public hidebysig virtual instance string Method1() cil managed noinlining {
ldstr "G1_C8::Method1.4825()"
ret
}
.method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining {
ldstr "G1_C8::Method2.4826<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining {
.override method instance string IBase0::Method2<[1]>()
ldstr "G1_C8::Method2.MI.4827<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining {
ldstr "G1_C8::Method3.4828<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1332() cil managed noinlining {
ldstr "G1_C8::ClassMethod1332.4829()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1333() cil managed noinlining {
ldstr "G1_C8::ClassMethod1333.4830()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1334<M0>() cil managed noinlining {
ldstr "G1_C8::ClassMethod1334.4831<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1335<M0>() cil managed noinlining {
ldstr "G1_C8::ClassMethod1335.4832<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated939 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1411.T<T0,(class G3_C1411`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 22
.locals init (string[] actualResults)
ldc.i4.s 17
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1411.T<T0,(class G3_C1411`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 17
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod4217<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod4218<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 15
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 16
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1411.A<(class G3_C1411`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 22
.locals init (string[] actualResults)
ldc.i4.s 17
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1411.A<(class G3_C1411`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 17
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4217<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4218<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 15
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 16
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1411.B<(class G3_C1411`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 22
.locals init (string[] actualResults)
ldc.i4.s 17
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1411.B<(class G3_C1411`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 17
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4217<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4218<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 15
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 16
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.T.T<T0,T1,(class G2_C435`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.T.T<T0,T1,(class G2_C435`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.A.T<T1,(class G2_C435`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.A.T<T1,(class G2_C435`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.A.A<(class G2_C435`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.A.A<(class G2_C435`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.A.B<(class G2_C435`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.A.B<(class G2_C435`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.B.T<T1,(class G2_C435`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.B.T<T1,(class G2_C435`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.B.A<(class G2_C435`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.B.A<(class G2_C435`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.B.B<(class G2_C435`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.B.B<(class G2_C435`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1411`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4218<object>()
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4217<object>()
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1411`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4218<object>()
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4217<object>()
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1411`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass0,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1411`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G3_C1411`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass0,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1411`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod4218<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod4217<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method5()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method4()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1411`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod4218<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod4217<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method5()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method4()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated939::MethodCallingTest()
call void Generated939::ConstrainedCallsTest()
call void Generated939::StructConstrainedInterfaceCallsTest()
call void Generated939::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated939 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1411`1<T0>
extends class G2_C435`2<!T0,class BaseClass1>
implements class IBase2`2<class BaseClass1,class BaseClass0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1411::Method7.16033<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,class BaseClass0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<[1]>()
ldstr "G3_C1411::Method7.MI.16034<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4217<M0>() cil managed noinlining {
ldstr "G3_C1411::ClassMethod4217.16035<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4218<M0>() cil managed noinlining {
ldstr "G3_C1411::ClassMethod4218.16036<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G2_C435<T0,class BaseClass1>.ClassMethod2233'() cil managed noinlining {
.override method instance string class G2_C435`2<!T0,class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C435`2<!T0,class BaseClass1>::.ctor()
ret
}
}
.class public G2_C435`2<T0, T1>
extends class G1_C8`2<class BaseClass1,!T1>
implements class IBase1`1<class BaseClass0>, class IBase2`2<class BaseClass0,!T1>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C435::Method4.8921()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G2_C435::Method5.8922()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C435::Method6.8923<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G2_C435::Method6.MI.8924<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C435::Method7.8925<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2233() cil managed noinlining {
ldstr "G2_C435::ClassMethod2233.8926()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2234<M0>() cil managed noinlining {
ldstr "G2_C435::ClassMethod2234.8927<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2235<M0>() cil managed noinlining {
ldstr "G2_C435::ClassMethod2235.8928<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass1,T1>.ClassMethod1332'() cil managed noinlining {
.override method instance string class G1_C8`2<class BaseClass1,!T1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass1,T1>.ClassMethod1334'<M0>() cil managed noinlining {
.override method instance string class G1_C8`2<class BaseClass1,!T1>::ClassMethod1334<[1]>()
ldstr "G2_C435::ClassMethod1334.MI.8930<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C8`2<class BaseClass1,!T1>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public G1_C8`2<T0, T1>
implements class IBase2`2<!T0,!T1>, IBase0
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C8::Method7.4821<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>()
ldstr "G1_C8::Method7.MI.4822<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method0() cil managed noinlining {
ldstr "G1_C8::Method0.4823()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining {
.override method instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ret
}
.method public hidebysig virtual instance string Method1() cil managed noinlining {
ldstr "G1_C8::Method1.4825()"
ret
}
.method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining {
ldstr "G1_C8::Method2.4826<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining {
.override method instance string IBase0::Method2<[1]>()
ldstr "G1_C8::Method2.MI.4827<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining {
ldstr "G1_C8::Method3.4828<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1332() cil managed noinlining {
ldstr "G1_C8::ClassMethod1332.4829()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1333() cil managed noinlining {
ldstr "G1_C8::ClassMethod1333.4830()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1334<M0>() cil managed noinlining {
ldstr "G1_C8::ClassMethod1334.4831<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1335<M0>() cil managed noinlining {
ldstr "G1_C8::ClassMethod1335.4832<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class interface public abstract IBase0
{
.method public hidebysig newslot abstract virtual instance string Method0() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method1() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated939 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1411.T<T0,(class G3_C1411`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 22
.locals init (string[] actualResults)
ldc.i4.s 17
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1411.T<T0,(class G3_C1411`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 17
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod4217<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::ClassMethod4218<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 15
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 16
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1411.A<(class G3_C1411`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 22
.locals init (string[] actualResults)
ldc.i4.s 17
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1411.A<(class G3_C1411`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 17
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4217<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4218<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 15
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 16
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1411.B<(class G3_C1411`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 22
.locals init (string[] actualResults)
ldc.i4.s 17
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1411.B<(class G3_C1411`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 17
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4217<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4218<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 15
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 16
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1411`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.T.T<T0,T1,(class G2_C435`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.T.T<T0,T1,(class G2_C435`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.A.T<T1,(class G2_C435`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.A.T<T1,(class G2_C435`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.A.A<(class G2_C435`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.A.A<(class G2_C435`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.A.B<(class G2_C435`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.A.B<(class G2_C435`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.B.T<T1,(class G2_C435`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.B.T<T1,(class G2_C435`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.B.A<(class G2_C435`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.B.A<(class G2_C435`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C435.B.B<(class G2_C435`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 20
.locals init (string[] actualResults)
ldc.i4.s 15
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C435.B.B<(class G2_C435`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 15
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 11
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 12
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 13
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 14
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method0()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method1()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method2<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string IBase0::Method3<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1411`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4218<object>()
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod4217<object>()
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass0>
callvirt instance string class G3_C1411`1<class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1411`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4218<object>()
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod4217<object>()
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod2233()
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1411`1<class BaseClass1>
callvirt instance string class G3_C1411`1<class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string IBase0::Method0()
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method1()
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method2<object>()
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string IBase0::Method3<object>()
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1411`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass0,class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.T<class BaseClass1,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.B<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G3_C1411`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G3_C1411`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1411`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass1,class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.T<class BaseClass1,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G3_C1411::ClassMethod2233.MI.16037()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G3_C1411::ClassMethod4217.16035<System.Object>()#G3_C1411::ClassMethod4218.16036<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G3_C1411::Method7.16033<System.Object>()#"
call void Generated939::M.G3_C1411.B<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G3_C1411`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G3_C1411`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1411::Method7.MI.16034<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G3_C1411`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass0,class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.T<class BaseClass1,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.A.B<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass1,class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.T.T<class BaseClass1,class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.T<class BaseClass1,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::ClassMethod1332.MI.8929()#G1_C8::ClassMethod1333.4830()#G2_C435::ClassMethod1334.MI.8930<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G2_C435::ClassMethod2233.8926()#G2_C435::ClassMethod2234.8927<System.Object>()#G2_C435::ClassMethod2235.8928<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.8923<System.Object>()#G2_C435::Method7.8925<System.Object>()#"
call void Generated939::M.G2_C435.B.B<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.T<class BaseClass0,class G2_C435`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C435::Method4.8921()#G2_C435::Method5.8922()#G2_C435::Method6.MI.8924<System.Object>()#"
call void Generated939::M.IBase1.A<class G2_C435`2<class BaseClass1,class BaseClass1>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#"
call void Generated939::M.G1_C8.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#"
call void Generated939::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C8::Method7.MI.4822<System.Object>()#"
call void Generated939::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1411`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod4218<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod4217<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method5()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method4()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method1()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass0>::Method0()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass0>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1411`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod4218<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod4218.16036<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod4217<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod4217.16035<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.16033<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod2235<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod2234<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod2233()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::ClassMethod2233.MI.16037()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method5()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method4()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1335<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1334<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1333()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::ClassMethod1332()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method3<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method2<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method1()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1411`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1411`1<class BaseClass1>::Method0()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G3_C1411`1<class BaseClass1> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1411`1<class BaseClass1>)
ldstr "G3_C1411::Method7.MI.16034<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1411`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C435`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2235<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod2235.8928<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2234<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod2234.8927<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod2233()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod2233.8926()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method7.8925<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method6.8923<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1334.MI.8930<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::ClassMethod1332.MI.8929()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C435`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C435`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G2_C435`2<class BaseClass1,class BaseClass1> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method4.8921()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method5.8922()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C435`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C435::Method6.MI.8924<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C435`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1335.4832<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1334.4831<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1333.4830()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::ClassMethod1332.4829()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.4826<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.4823()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C8`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.4821<System.Object>()"
ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method0()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method0.MI.4824()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method1()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method1.4825()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method2<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method2.MI.4827<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string IBase0::Method3<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method3.4828<System.Object>()"
ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C8::Method7.MI.4822<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated939::MethodCallingTest()
call void Generated939::ConstrainedCallsTest()
call void Generated939::StructConstrainedInterfaceCallsTest()
call void Generated939::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/switch/switch8.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// goto statements in switch
.assembly extern System.Runtime.Extensions { auto }
.assembly extern legacy library mscorlib { auto }
.assembly 'switch8'
{
}
.assembly extern xunit.core {}
.class public auto ansi Test_switch8
extends ['mscorlib']System.Object
{
.field private static int32 s_exitCode;
.method private hidebysig static void DoSwitch(int32 'value') il managed
{
.maxstack 2
.locals (int32 V_0)
IL_0000: ldarg.0
IL_0001: stloc.0
IL_0002: ldloc.0
IL_0003: ldc.i4.1
IL_0004: sub
IL_0005: switch (
IL_0014,
IL_0016)
IL_0012: br.s IL_0018
IL_0014: br.s IL_002d
IL_0016: br.s IL_001a
IL_0018: br.s IL_002d
IL_001a: ldc.i4.s 100
IL_001c: stsfld int32 Test_switch8::s_exitCode
IL_0021: ldstr "Test passed"
IL_0026: call void ['mscorlib']System.Console::WriteLine(class System.String)
IL_002b: br.s IL_003d
IL_002d: ldc.i4.1
IL_002e: stsfld int32 Test_switch8::s_exitCode
IL_0033: ldstr "Test failed"
IL_0038: call void ['mscorlib']System.Console::WriteLine(class System.String)
IL_003d: ret
}
.method public hidebysig static int32 Main() il managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 8
IL_0000: ldc.i4.2
IL_0001: call void Test_switch8::DoSwitch(int32)
ldsfld int32 Test_switch8::s_exitCode
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// goto statements in switch
.assembly extern System.Runtime.Extensions { auto }
.assembly extern legacy library mscorlib { auto }
.assembly 'switch8'
{
}
.assembly extern xunit.core {}
.class public auto ansi Test_switch8
extends ['mscorlib']System.Object
{
.field private static int32 s_exitCode;
.method private hidebysig static void DoSwitch(int32 'value') il managed
{
.maxstack 2
.locals (int32 V_0)
IL_0000: ldarg.0
IL_0001: stloc.0
IL_0002: ldloc.0
IL_0003: ldc.i4.1
IL_0004: sub
IL_0005: switch (
IL_0014,
IL_0016)
IL_0012: br.s IL_0018
IL_0014: br.s IL_002d
IL_0016: br.s IL_001a
IL_0018: br.s IL_002d
IL_001a: ldc.i4.s 100
IL_001c: stsfld int32 Test_switch8::s_exitCode
IL_0021: ldstr "Test passed"
IL_0026: call void ['mscorlib']System.Console::WriteLine(class System.String)
IL_002b: br.s IL_003d
IL_002d: ldc.i4.1
IL_002e: stsfld int32 Test_switch8::s_exitCode
IL_0033: ldstr "Test failed"
IL_0038: call void ['mscorlib']System.Console::WriteLine(class System.String)
IL_003d: ret
}
.method public hidebysig static int32 Main() il managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 8
IL_0000: ldc.i4.2
IL_0001: call void Test_switch8::DoSwitch(int32)
ldsfld int32 Test_switch8::s_exitCode
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/bug-324535-il.il | .assembly extern mscorlib
{
.ver 1:0:5000:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
}
.assembly 'bug-324535-il'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module 'bug-324535-il.dll' // GUID = {60452EB2-5BE7-4A6D-A5BB-CCC19EA7F8EF}
.class public auto ansi beforefieldinit Generator
extends [mscorlib]System.Object
{
.field private static int32[] fld
// method line 1
.method public hidebysig specialname rtspecialname
instance default void .ctor () cil managed
{
// Method begins at RVA 0x20ec
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::.ctor()
IL_0006: ret
} // end of method Generator::.ctor
// method line 2
.method public static hidebysig
default object fieldOverflow () cil managed
{
// Method begins at RVA 0x20f4
// Code size 20 (0x14)
.maxstack 4
.locals init (
int32[] V_0)
IL_0000: ldc.i4.5
IL_0001: newarr [mscorlib]System.Int32
IL_0006: dup
IL_0007: ldtoken field valuetype '<PrivateImplementationDetails>'/$ArrayType$16 '<PrivateImplementationDetails>'::'$$field-0'
IL_000c: call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
IL_0011: stloc.0
IL_0012: ldloc.0
IL_0013: ret
} // end of method Generator::fieldOverflow
// method line 3
.method public static hidebysig
default object referenceArray () cil managed
{
// Method begins at RVA 0x2114
// Code size 2 (0x2)
.maxstack 8
IL_0016: ldc.i4.2
IL_0017: newarr [mscorlib]System.Object
dup
ldtoken field valuetype '<PrivateImplementationDetails>'/$ArrayType$16 '<PrivateImplementationDetails>'::'$$field-0'
call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
IL_0001: ret
} // end of method Generator::referenceArray
// method line 4
.method public static hidebysig
default object nonRVAField () cil managed
{
// Method begins at RVA 0x2118
// Code size 2 (0x2)
.maxstack 8
IL_0000: ldc.i4.1
IL_0001: newarr [mscorlib]System.Int32
IL_0006: dup
IL_0007: ldtoken field int32[] Generator::fld
IL_000c: call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
IL_0013: ret
} // end of method Generator::nonRVAField
} // end of class Generator
.class private auto ansi '<PrivateImplementationDetails>'
extends [mscorlib]System.Object
{
.field assembly static valuetype '<PrivateImplementationDetails>'/$ArrayType$16 '$$field-0' at D_0000211c
// method line 5
.method public specialname rtspecialname
instance default void .ctor () cil managed
{
// Method begins at RVA 0x212c
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::.ctor()
IL_0006: ret
} // end of method <PrivateImplementationDetails>::.ctor
.class nested private explicit ansi sealed $ArrayType$16
extends [mscorlib]System.ValueType
{
.pack 1
.size 16
} // end of class $ArrayType$16
} // end of class <PrivateImplementationDetails>
.data D_0000211c = bytearray (
01 00 00 00 02 00 00 00 03 00 00 00 04 00 00 00) // size: 16
| .assembly extern mscorlib
{
.ver 1:0:5000:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
}
.assembly 'bug-324535-il'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module 'bug-324535-il.dll' // GUID = {60452EB2-5BE7-4A6D-A5BB-CCC19EA7F8EF}
.class public auto ansi beforefieldinit Generator
extends [mscorlib]System.Object
{
.field private static int32[] fld
// method line 1
.method public hidebysig specialname rtspecialname
instance default void .ctor () cil managed
{
// Method begins at RVA 0x20ec
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::.ctor()
IL_0006: ret
} // end of method Generator::.ctor
// method line 2
.method public static hidebysig
default object fieldOverflow () cil managed
{
// Method begins at RVA 0x20f4
// Code size 20 (0x14)
.maxstack 4
.locals init (
int32[] V_0)
IL_0000: ldc.i4.5
IL_0001: newarr [mscorlib]System.Int32
IL_0006: dup
IL_0007: ldtoken field valuetype '<PrivateImplementationDetails>'/$ArrayType$16 '<PrivateImplementationDetails>'::'$$field-0'
IL_000c: call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
IL_0011: stloc.0
IL_0012: ldloc.0
IL_0013: ret
} // end of method Generator::fieldOverflow
// method line 3
.method public static hidebysig
default object referenceArray () cil managed
{
// Method begins at RVA 0x2114
// Code size 2 (0x2)
.maxstack 8
IL_0016: ldc.i4.2
IL_0017: newarr [mscorlib]System.Object
dup
ldtoken field valuetype '<PrivateImplementationDetails>'/$ArrayType$16 '<PrivateImplementationDetails>'::'$$field-0'
call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
IL_0001: ret
} // end of method Generator::referenceArray
// method line 4
.method public static hidebysig
default object nonRVAField () cil managed
{
// Method begins at RVA 0x2118
// Code size 2 (0x2)
.maxstack 8
IL_0000: ldc.i4.1
IL_0001: newarr [mscorlib]System.Int32
IL_0006: dup
IL_0007: ldtoken field int32[] Generator::fld
IL_000c: call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
IL_0013: ret
} // end of method Generator::nonRVAField
} // end of class Generator
.class private auto ansi '<PrivateImplementationDetails>'
extends [mscorlib]System.Object
{
.field assembly static valuetype '<PrivateImplementationDetails>'/$ArrayType$16 '$$field-0' at D_0000211c
// method line 5
.method public specialname rtspecialname
instance default void .ctor () cil managed
{
// Method begins at RVA 0x212c
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void object::.ctor()
IL_0006: ret
} // end of method <PrivateImplementationDetails>::.ctor
.class nested private explicit ansi sealed $ArrayType$16
extends [mscorlib]System.ValueType
{
.pack 1
.size 16
} // end of class $ArrayType$16
} // end of class <PrivateImplementationDetails>
.data D_0000211c = bytearray (
01 00 00 00 02 00 00 00 03 00 00 00 04 00 00 00) // size: 16
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest102/Generated102.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated102 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct152`1<T0>
extends [mscorlib]System.ValueType
implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase2`2<class BaseClass1,!T0>
{
.pack 0
.size 1
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct152::Method7.1305<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod301() cil managed noinlining {
ldstr "MyStruct152::ClassMethod301.1307()"
ret
}
.method public hidebysig newslot instance string ClassMethod302() cil managed noinlining {
ldstr "MyStruct152::ClassMethod302.1308()"
ret
}
.method public hidebysig newslot instance string ClassMethod303<M0>() cil managed noinlining {
ldstr "MyStruct152::ClassMethod303.1309<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated102 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct152.T<T0,(valuetype MyStruct152`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct152.T<T0,(valuetype MyStruct152`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct152`1<!!T0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct152`1<!!T0>
callvirt instance string class IBase2`2<class BaseClass1,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct152.A<(valuetype MyStruct152`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct152.A<(valuetype MyStruct152`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct152.B<(valuetype MyStruct152`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct152.B<(valuetype MyStruct152`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct152`1<class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod301()
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod302()
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod303<object>()
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct152`1<class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct152`1<class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct152`1<class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct152`1<class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct152`1<class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod301()
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod302()
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod303<object>()
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct152`1<class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct152`1<class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct152`1<class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct152`1<class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct152`1<class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct152`1<class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct152`1<class BaseClass0>
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.A<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.A<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.B<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.B<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.locals init (valuetype MyStruct152`1<class BaseClass1> V_4)
ldloca V_4
initobj valuetype MyStruct152`1<class BaseClass1>
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct152`1<class BaseClass1>>(!!2,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.A<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!2,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.B<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!2,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.B<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct152`1<class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.A<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.locals init (valuetype MyStruct152`1<class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct152`1<class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_6
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.B<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod301()
calli default string(object)
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod302()
calli default string(object)
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod303<object>()
calli default string(object)
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0> ldnull
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance bool valuetype MyStruct152`1<class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct152`1<class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ToString() calli default string(object) pop
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct152`1<class BaseClass1> V_8)
ldloca V_8
initobj valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod301()
calli default string(object)
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod302()
calli default string(object)
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod303<object>()
calli default string(object)
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1> ldnull
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance bool valuetype MyStruct152`1<class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct152`1<class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ToString() calli default string(object) pop
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated102::MethodCallingTest()
call void Generated102::ConstrainedCallsTest()
call void Generated102::StructConstrainedInterfaceCallsTest()
call void Generated102::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated102 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct152`1<T0>
extends [mscorlib]System.ValueType
implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase2`2<class BaseClass1,!T0>
{
.pack 0
.size 1
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct152::Method7.1305<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod301() cil managed noinlining {
ldstr "MyStruct152::ClassMethod301.1307()"
ret
}
.method public hidebysig newslot instance string ClassMethod302() cil managed noinlining {
ldstr "MyStruct152::ClassMethod302.1308()"
ret
}
.method public hidebysig newslot instance string ClassMethod303<M0>() cil managed noinlining {
ldstr "MyStruct152::ClassMethod303.1309<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated102 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct152.T<T0,(valuetype MyStruct152`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct152.T<T0,(valuetype MyStruct152`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct152`1<!!T0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct152`1<!!T0>
callvirt instance string class IBase2`2<class BaseClass1,!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct152.A<(valuetype MyStruct152`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct152.A<(valuetype MyStruct152`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct152.B<(valuetype MyStruct152`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct152.B<(valuetype MyStruct152`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct152`1<class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct152`1<class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod301()
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod302()
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod303<object>()
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct152`1<class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct152`1<class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct152`1<class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct152`1<class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct152`1<class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct152`1<class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod301()
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod302()
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod303<object>()
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type MyStruct152"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct152`1<class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct152`1<class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct152`1<class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct152`1<class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct152`1<class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct152`1<class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct152`1<class BaseClass0>
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.A<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.A<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.B<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_3
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.B<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.locals init (valuetype MyStruct152`1<class BaseClass1> V_4)
ldloca V_4
initobj valuetype MyStruct152`1<class BaseClass1>
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct152`1<class BaseClass1>>(!!2,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.A<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!2,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.B.B<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!2,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.try { ldloc V_4
ldstr "MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.IBase2.A.B<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct152`1<class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.T<class BaseClass0,valuetype MyStruct152`1<class BaseClass0>>(!!1,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.A<valuetype MyStruct152`1<class BaseClass0>>(!!0,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.locals init (valuetype MyStruct152`1<class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct152`1<class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.T<class BaseClass1,valuetype MyStruct152`1<class BaseClass1>>(!!1,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_6
ldstr "MyStruct152::Method7.1305<System.Object>()#" +
"MyStruct152::Method7.1305<System.Object>()#"
call void Generated102::M.MyStruct152.B<valuetype MyStruct152`1<class BaseClass1>>(!!0,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct152`1<class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod301()
calli default string(object)
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod302()
calli default string(object)
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ClassMethod303<object>()
calli default string(object)
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0> ldnull
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance bool valuetype MyStruct152`1<class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct152`1<class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7 box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass0>::ToString() calli default string(object) pop
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldloc V_7
box valuetype MyStruct152`1<class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct152`1<class BaseClass1> V_8)
ldloca V_8
initobj valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod301()
calli default string(object)
ldstr "MyStruct152::ClassMethod301.1307()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod302()
calli default string(object)
ldstr "MyStruct152::ClassMethod302.1308()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ClassMethod303<object>()
calli default string(object)
ldstr "MyStruct152::ClassMethod303.1309<System.Object>()"
ldstr "valuetype MyStruct152`1<class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1> ldnull
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance bool valuetype MyStruct152`1<class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct152`1<class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8 box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string valuetype MyStruct152`1<class BaseClass1>::ToString() calli default string(object) pop
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldloc V_8
box valuetype MyStruct152`1<class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct152::Method7.1305<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct152`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated102::MethodCallingTest()
call void Generated102::ConstrainedCallsTest()
call void Generated102::StructConstrainedInterfaceCallsTest()
call void Generated102::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Conformance_Base/and_u8.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.class public _and {
.field public static int64 ALL
.field public static int64 NONE
.field public static int64 ODD
.field public static int64 EVEN
.field public static int64 HIGH
.field public static int64 LOW
.field public static int64 RW
.method public static void initialize() {
.maxstack 20
ldc.i8 0xFFFFFFFFFFFFFFFF
stsfld int64 _and::ALL
ldc.i8 0x0000000000000000
stsfld int64 _and::NONE
ldc.i8 0x5555555555555555
stsfld int64 _and::ODD
ldc.i8 0xAAAAAAAAAAAAAAAA
stsfld int64 _and::EVEN
ldc.i8 0x8000000000000001
stsfld int64 _and::HIGH
ldc.i8 0x0000000000000001
stsfld int64 _and::LOW
ldc.i8 0xF155E54AF155E54A
stsfld int64 _and::RW
ret
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 20
call void _and::initialize()
ldsfld int64 _and::ALL
ldsfld int64 _and::ALL
and
ldc.i8 0xFFFFFFFFFFFFFFFF
ceq
brfalse FAIL
ldsfld int64 _and::ALL
ldsfld int64 _and::NONE
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::NONE
ldsfld int64 _and::ALL
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::NONE
ldsfld int64 _and::NONE
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::EVEN
ldsfld int64 _and::EVEN
and
ldc.i8 0xAAAAAAAAAAAAAAAA
ceq
brfalse FAIL
ldsfld int64 _and::EVEN
ldsfld int64 _and::ODD
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::HIGH
ldsfld int64 _and::LOW
and
ldc.i8 0x0000000000000001
ceq
brfalse FAIL
ldsfld int64 _and::LOW
ldsfld int64 _and::HIGH
and
ldc.i8 0x0000000000000001
ceq
brfalse FAIL
ldsfld int64 _and::RW
ldc.i8 0xA4710EDCA4710EDC
and
ldc.i8 0xA0510448A0510448
ceq
brfalse FAIL
ldc.i4 100
ret
FAIL:
ldc.i4 0x0
ret
}
}
.assembly and_u8{}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.class public _and {
.field public static int64 ALL
.field public static int64 NONE
.field public static int64 ODD
.field public static int64 EVEN
.field public static int64 HIGH
.field public static int64 LOW
.field public static int64 RW
.method public static void initialize() {
.maxstack 20
ldc.i8 0xFFFFFFFFFFFFFFFF
stsfld int64 _and::ALL
ldc.i8 0x0000000000000000
stsfld int64 _and::NONE
ldc.i8 0x5555555555555555
stsfld int64 _and::ODD
ldc.i8 0xAAAAAAAAAAAAAAAA
stsfld int64 _and::EVEN
ldc.i8 0x8000000000000001
stsfld int64 _and::HIGH
ldc.i8 0x0000000000000001
stsfld int64 _and::LOW
ldc.i8 0xF155E54AF155E54A
stsfld int64 _and::RW
ret
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 20
call void _and::initialize()
ldsfld int64 _and::ALL
ldsfld int64 _and::ALL
and
ldc.i8 0xFFFFFFFFFFFFFFFF
ceq
brfalse FAIL
ldsfld int64 _and::ALL
ldsfld int64 _and::NONE
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::NONE
ldsfld int64 _and::ALL
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::NONE
ldsfld int64 _and::NONE
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::EVEN
ldsfld int64 _and::EVEN
and
ldc.i8 0xAAAAAAAAAAAAAAAA
ceq
brfalse FAIL
ldsfld int64 _and::EVEN
ldsfld int64 _and::ODD
and
ldc.i8 0x0000000000000000
ceq
brfalse FAIL
ldsfld int64 _and::HIGH
ldsfld int64 _and::LOW
and
ldc.i8 0x0000000000000001
ceq
brfalse FAIL
ldsfld int64 _and::LOW
ldsfld int64 _and::HIGH
and
ldc.i8 0x0000000000000001
ceq
brfalse FAIL
ldsfld int64 _and::RW
ldc.i8 0xA4710EDCA4710EDC
and
ldc.i8 0xA0510448A0510448
ceq
brfalse FAIL
ldc.i4 100
ret
FAIL:
ldc.i4 0x0
ret
}
}
.assembly and_u8{}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/verifier/unverifiable_fallout_of_try_block.il | .assembly 'invalid_fallout_of_try_block'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.method public static int32 Main() cil managed
{
.entrypoint
.maxstack 8
.locals init (int32 V0)
BB_00:
ldloc.0
brfalse PART_0
newobj instance void class [mscorlib]System.Exception::.ctor()
throw
PART_0:
nop
nop
BB_01:
BB_02:
pop
leave END
BB_03:
END:
ldc.i4.0
ret
.try BB_00 to BB_01 catch [mscorlib]System.Exception handler BB_02 to BB_03
}
| .assembly 'invalid_fallout_of_try_block'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.method public static int32 Main() cil managed
{
.entrypoint
.maxstack 8
.locals init (int32 V0)
BB_00:
ldloc.0
brfalse PART_0
newobj instance void class [mscorlib]System.Exception::.ctor()
throw
PART_0:
nop
nop
BB_01:
BB_02:
pop
leave END
BB_03:
END:
ldc.i4.0
ret
.try BB_00 to BB_01 catch [mscorlib]System.Exception handler BB_02 to BB_03
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/bug-528055.il | .assembly extern mscorlib
{
.ver 2:0:0:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 )
}
.assembly 'simple_assembly'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module simple_assembly.exe
.class sealed public auto ansi beforefieldinit Generic`1<T>
{
.method public hidebysig specialname rtspecialname instance default void '.ctor' ()
{
.maxstack 8
ldarg.0
call instance void object::'.ctor'()
ret
}
.field public !T a
.field public int32 a
}
.class sealed public auto ansi beforefieldinit Regular
{
.method public hidebysig specialname rtspecialname instance default void '.ctor' ()
{
.maxstack 8
ldarg.0
call instance void object::'.ctor'()
ret
}
.field public float32 a
.field public int32 a
}
.class public auto ansi beforefieldinit Program
{
.method public static int32 Main () cil managed
{
.entrypoint
.maxstack 8
.locals init (class Generic`1<float32> V_0, class Regular V_1)
newobj instance void class Generic`1<float32>::'.ctor'()
stloc.0
ldloc.0
ldc.r4 2.
stfld !0 class Generic`1<float32>::a
ldloc.0
ldc.i4.s 0x0a
stfld int32 class Generic`1<float32>::a
ldloc.0
ldfld !0 class Generic`1<float32>::a
ldc.r4 2.
beq TEST_2
ldc.i4.1
ret
TEST_2:
ldloc.0
ldfld int32 class Generic`1<float32>::a
ldc.i4.s 0x0a
beq TEST_3
ldc.i4.2
ret
TEST_3:
newobj instance void class Regular::'.ctor'()
stloc.1
ldloc.1
ldc.r4 2.
stfld float32 Regular::a
ldloc.1
ldc.i4.s 0x0a
stfld int32 Regular::a
ldloc.1
ldfld float32 Regular::a
ldc.r4 2.
beq TEST_4
ldc.i4.3
ret
TEST_4:
ldloc.1
ldfld int32 Regular::a
ldc.i4.s 0x0a
beq GOOD
ldc.i4.4
ret
GOOD:
ldc.i4.0
ret
}
}
| .assembly extern mscorlib
{
.ver 2:0:0:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 )
}
.assembly 'simple_assembly'
{
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module simple_assembly.exe
.class sealed public auto ansi beforefieldinit Generic`1<T>
{
.method public hidebysig specialname rtspecialname instance default void '.ctor' ()
{
.maxstack 8
ldarg.0
call instance void object::'.ctor'()
ret
}
.field public !T a
.field public int32 a
}
.class sealed public auto ansi beforefieldinit Regular
{
.method public hidebysig specialname rtspecialname instance default void '.ctor' ()
{
.maxstack 8
ldarg.0
call instance void object::'.ctor'()
ret
}
.field public float32 a
.field public int32 a
}
.class public auto ansi beforefieldinit Program
{
.method public static int32 Main () cil managed
{
.entrypoint
.maxstack 8
.locals init (class Generic`1<float32> V_0, class Regular V_1)
newobj instance void class Generic`1<float32>::'.ctor'()
stloc.0
ldloc.0
ldc.r4 2.
stfld !0 class Generic`1<float32>::a
ldloc.0
ldc.i4.s 0x0a
stfld int32 class Generic`1<float32>::a
ldloc.0
ldfld !0 class Generic`1<float32>::a
ldc.r4 2.
beq TEST_2
ldc.i4.1
ret
TEST_2:
ldloc.0
ldfld int32 class Generic`1<float32>::a
ldc.i4.s 0x0a
beq TEST_3
ldc.i4.2
ret
TEST_3:
newobj instance void class Regular::'.ctor'()
stloc.1
ldloc.1
ldc.r4 2.
stfld float32 Regular::a
ldloc.1
ldc.i4.s 0x0a
stfld int32 Regular::a
ldloc.1
ldfld float32 Regular::a
ldc.r4 2.
beq TEST_4
ldc.i4.3
ret
TEST_4:
ldloc.1
ldfld int32 Regular::a
ldc.i4.s 0x0a
beq GOOD
ldc.i4.4
ret
GOOD:
ldc.i4.0
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Conformance_Base/blt_un_r4.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
#define NEG_INF "float32(0xFF800000)"
#define MIN "float32(0xFF7FFFFF)"
#define MINUS_ONE "float32(0xBF800000)"
#define MINUS_ZERO "float32(0x80000000)"
#define ZERO "float32(0x00000000)"
#define ONE "float32(0x3F800000)"
#define MAX "float32(0x7F7FFFFF)"
#define POS_INF "float32(0x7F800000)"
#define NAN "float32(0x7FC00000)"
.class public _blt_un {
.field public static float32 neg_inf
.field public static float32 min
.field public static float32 minus_one
.field public static float32 minus_zero
.field public static float32 zero
.field public static float32 one
.field public static float32 max
.field public static float32 pos_inf
.field public static float32 NaN
.method public static void initialize() {
.maxstack 10
ldc.r4 NEG_INF
stsfld float32 _blt_un::neg_inf
ldc.r4 MIN
stsfld float32 _blt_un::min
ldc.r4 MINUS_ONE
stsfld float32 _blt_un::minus_one
ldc.r4 MINUS_ZERO
stsfld float32 _blt_un::minus_zero
ldc.r4 ZERO
stsfld float32 _blt_un::zero
ldc.r4 ONE
stsfld float32 _blt_un::one
ldc.r4 MAX
stsfld float32 _blt_un::max
ldc.r4 POS_INF
stsfld float32 _blt_un::pos_inf
ldc.r4 NAN
stsfld float32 _blt_un::NaN
ret
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 10
call void _blt_un::initialize()
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
A:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::min
blt.un B
br FAIL
B:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::minus_one
blt.un C
br FAIL
C:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::minus_zero
blt.un D
br FAIL
D:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::zero
blt.un E
br FAIL
E:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::one
blt.un F
br FAIL
F:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::max
blt.un G
br FAIL
G:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::pos_inf
blt.un H
br FAIL
H:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::NaN
blt.un K
br FAIL
K:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::min
blt.un FAIL
L:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::minus_one
blt.un M
br FAIL
M:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::minus_zero
blt.un N
br FAIL
N:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::zero
blt.un O
br FAIL
O:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::one
blt.un P
br FAIL
P:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::max
blt.un Q
br FAIL
Q:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::pos_inf
blt.un R
br FAIL
R:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::NaN
blt.un S
br FAIL
S:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::minus_one
blt.un FAIL
T:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::minus_zero
blt.un U
br FAIL
U:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::zero
blt.un V
br FAIL
V:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::one
blt.un W
br FAIL
W:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::max
blt.un X
br FAIL
X:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::pos_inf
blt.un Y
br FAIL
Y:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::NaN
blt.un Z
br FAIL
Z:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
AA:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::zero
blt.un FAIL
BB:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::one
blt.un CC
br FAIL
CC:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::max
blt.un DD
br FAIL
DD:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::pos_inf
blt.un EE
br FAIL
EE:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::NaN
blt.un FF
br FAIL
FF:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
GG:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::zero
blt.un FAIL
HH:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::one
blt.un II
br FAIL
II:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::max
blt.un JJ
br FAIL
JJ:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::pos_inf
blt.un KK
br FAIL
KK:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::NaN
blt.un LL
br FAIL
LL:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::zero
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::one
blt.un FAIL
MM:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::max
blt.un NN
br FAIL
NN:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::pos_inf
blt.un OO
br FAIL
OO:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::NaN
blt.un PP
br FAIL
PP:
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::zero
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::one
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::max
blt.un FAIL
QQ:
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::pos_inf
blt.un RR
br FAIL
RR:
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::NaN
blt.un SS
br FAIL
SS:
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::zero
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::one
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::max
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::pos_inf
blt.un FAIL
TT:
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::NaN
blt.un UU
br FAIL
UU:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::neg_inf
blt.un VV
br FAIL
VV:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::min
blt.un WW
br FAIL
WW:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::minus_one
blt.un XX
br FAIL
XX:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::minus_zero
blt.un YY
br FAIL
YY:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::zero
blt.un ZZ
br FAIL
ZZ:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::one
blt.un AAA
br FAIL
AAA:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::max
blt.un BBB
br FAIL
BBB:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::pos_inf
blt.un CCC
br FAIL
CCC:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::NaN
blt.un L0
br FAIL
// Testing early folding logic
L0:
ldc.r4 NEG_INF
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 NEG_INF
ldc.r4 MIN
blt.un L1
br FAIL
L1:
ldc.r4 NEG_INF
ldc.r4 MINUS_ONE
blt.un L2
br FAIL
L2:
ldc.r4 NEG_INF
ldc.r4 MINUS_ZERO
blt.un L3
br FAIL
L3:
ldc.r4 NEG_INF
ldc.r4 ZERO
blt.un L4
br FAIL
L4:
ldc.r4 NEG_INF
ldc.r4 ONE
blt.un L5
br FAIL
L5:
ldc.r4 NEG_INF
ldc.r4 MAX
blt.un L6
br FAIL
L6:
ldc.r4 NEG_INF
ldc.r4 POS_INF
blt.un L7
br FAIL
L7:
ldc.r4 NEG_INF
ldc.r4 NAN
blt.un L8
br FAIL
L8:
ldc.r4 MIN
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MIN
ldc.r4 MIN
blt.un FAIL
ldc.r4 MIN
ldc.r4 MINUS_ONE
blt.un L9
br FAIL
L9:
ldc.r4 MIN
ldc.r4 MINUS_ZERO
blt.un L10
br FAIL
L10:
ldc.r4 MIN
ldc.r4 ZERO
blt.un L11
br FAIL
L11:
ldc.r4 MIN
ldc.r4 ONE
blt.un L12
br FAIL
L12:
ldc.r4 MIN
ldc.r4 MAX
blt.un L13
br FAIL
L13:
ldc.r4 MIN
ldc.r4 POS_INF
blt.un L14
br FAIL
L14:
ldc.r4 MIN
ldc.r4 NAN
blt.un L15
br FAIL
L15:
ldc.r4 MINUS_ONE
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MINUS_ONE
ldc.r4 MIN
blt.un FAIL
ldc.r4 MINUS_ONE
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 MINUS_ONE
ldc.r4 MINUS_ZERO
blt.un L16
br FAIL
L16:
ldc.r4 MINUS_ONE
ldc.r4 ZERO
blt.un L17
br FAIL
L17:
ldc.r4 MINUS_ONE
ldc.r4 ONE
blt.un L18
br FAIL
L18:
ldc.r4 MINUS_ONE
ldc.r4 MAX
blt.un L19
br FAIL
L19:
ldc.r4 MINUS_ONE
ldc.r4 POS_INF
blt.un L20
br FAIL
L20:
ldc.r4 MINUS_ONE
ldc.r4 NAN
blt.un L21
br FAIL
L21:
ldc.r4 MINUS_ZERO
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 MIN
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 ZERO
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 ONE
blt.un L22
br FAIL
L22:
ldc.r4 MINUS_ZERO
ldc.r4 MAX
blt.un L23
br FAIL
L23:
ldc.r4 MINUS_ZERO
ldc.r4 POS_INF
blt.un L24
br FAIL
L24:
ldc.r4 MINUS_ZERO
ldc.r4 NAN
blt.un L25
br FAIL
L25:
ldc.r4 ZERO
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 ZERO
ldc.r4 MIN
blt.un FAIL
ldc.r4 ZERO
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 ZERO
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 ZERO
ldc.r4 ZERO
blt.un FAIL
ldc.r4 ZERO
ldc.r4 ONE
blt.un L26
br FAIL
L26:
ldc.r4 ZERO
ldc.r4 MAX
blt.un L27
br FAIL
L27:
ldc.r4 ZERO
ldc.r4 POS_INF
blt.un L28
br FAIL
L28:
ldc.r4 ZERO
ldc.r4 NAN
blt.un L29
br FAIL
L29:
ldc.r4 ONE
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 ONE
ldc.r4 MIN
blt.un FAIL
ldc.r4 ONE
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 ONE
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 ONE
ldc.r4 ZERO
blt.un FAIL
ldc.r4 ONE
ldc.r4 ONE
blt.un FAIL
ldc.r4 ONE
ldc.r4 MAX
blt.un L30
br FAIL
L30:
ldc.r4 ONE
ldc.r4 POS_INF
blt.un L31
br FAIL
L31:
ldc.r4 ONE
ldc.r4 NAN
blt.un L32
br FAIL
L32:
ldc.r4 MAX
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MAX
ldc.r4 MIN
blt.un FAIL
ldc.r4 MAX
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 MAX
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 MAX
ldc.r4 ZERO
blt.un FAIL
ldc.r4 MAX
ldc.r4 ONE
blt.un FAIL
ldc.r4 MAX
ldc.r4 MAX
blt.un FAIL
ldc.r4 MAX
ldc.r4 POS_INF
blt.un L33
br FAIL
L33:
ldc.r4 MAX
ldc.r4 NAN
blt.un L34
br FAIL
L34:
ldc.r4 POS_INF
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MIN
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 ZERO
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 ONE
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MAX
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 POS_INF
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 NAN
blt.un L35
br FAIL
L35:
ldc.r4 NAN
ldc.r4 NEG_INF
blt.un L36
br FAIL
L36:
ldc.r4 NAN
ldc.r4 MIN
blt.un L37
br FAIL
L37:
ldc.r4 NAN
ldc.r4 MINUS_ONE
blt.un L38
br FAIL
L38:
ldc.r4 NAN
ldc.r4 MINUS_ZERO
blt.un L39
br FAIL
L39:
ldc.r4 NAN
ldc.r4 ZERO
blt.un L40
br FAIL
L40:
ldc.r4 NAN
ldc.r4 ONE
blt.un L41
br FAIL
L41:
ldc.r4 NAN
ldc.r4 MAX
blt.un L42
br FAIL
L42:
ldc.r4 NAN
ldc.r4 POS_INF
blt.un L43
br FAIL
L43:
ldc.r4 NAN
ldc.r4 NAN
blt.un BACKCHECK
br FAIL
TOPASS:
br PASS
BACKCHECK:
ldc.r4 0x0
ldc.r4 0x1
blt.un TOPASS
br FAIL
PASS:
ldc.i4 100
ret
FAIL:
ldc.i4 0x0
ret
}
}
.assembly blt_un_r4{}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
#define NEG_INF "float32(0xFF800000)"
#define MIN "float32(0xFF7FFFFF)"
#define MINUS_ONE "float32(0xBF800000)"
#define MINUS_ZERO "float32(0x80000000)"
#define ZERO "float32(0x00000000)"
#define ONE "float32(0x3F800000)"
#define MAX "float32(0x7F7FFFFF)"
#define POS_INF "float32(0x7F800000)"
#define NAN "float32(0x7FC00000)"
.class public _blt_un {
.field public static float32 neg_inf
.field public static float32 min
.field public static float32 minus_one
.field public static float32 minus_zero
.field public static float32 zero
.field public static float32 one
.field public static float32 max
.field public static float32 pos_inf
.field public static float32 NaN
.method public static void initialize() {
.maxstack 10
ldc.r4 NEG_INF
stsfld float32 _blt_un::neg_inf
ldc.r4 MIN
stsfld float32 _blt_un::min
ldc.r4 MINUS_ONE
stsfld float32 _blt_un::minus_one
ldc.r4 MINUS_ZERO
stsfld float32 _blt_un::minus_zero
ldc.r4 ZERO
stsfld float32 _blt_un::zero
ldc.r4 ONE
stsfld float32 _blt_un::one
ldc.r4 MAX
stsfld float32 _blt_un::max
ldc.r4 POS_INF
stsfld float32 _blt_un::pos_inf
ldc.r4 NAN
stsfld float32 _blt_un::NaN
ret
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 10
call void _blt_un::initialize()
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
A:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::min
blt.un B
br FAIL
B:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::minus_one
blt.un C
br FAIL
C:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::minus_zero
blt.un D
br FAIL
D:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::zero
blt.un E
br FAIL
E:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::one
blt.un F
br FAIL
F:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::max
blt.un G
br FAIL
G:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::pos_inf
blt.un H
br FAIL
H:
ldsfld float32 _blt_un::neg_inf
ldsfld float32 _blt_un::NaN
blt.un K
br FAIL
K:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::min
blt.un FAIL
L:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::minus_one
blt.un M
br FAIL
M:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::minus_zero
blt.un N
br FAIL
N:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::zero
blt.un O
br FAIL
O:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::one
blt.un P
br FAIL
P:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::max
blt.un Q
br FAIL
Q:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::pos_inf
blt.un R
br FAIL
R:
ldsfld float32 _blt_un::min
ldsfld float32 _blt_un::NaN
blt.un S
br FAIL
S:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::minus_one
blt.un FAIL
T:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::minus_zero
blt.un U
br FAIL
U:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::zero
blt.un V
br FAIL
V:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::one
blt.un W
br FAIL
W:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::max
blt.un X
br FAIL
X:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::pos_inf
blt.un Y
br FAIL
Y:
ldsfld float32 _blt_un::minus_one
ldsfld float32 _blt_un::NaN
blt.un Z
br FAIL
Z:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
AA:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::zero
blt.un FAIL
BB:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::one
blt.un CC
br FAIL
CC:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::max
blt.un DD
br FAIL
DD:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::pos_inf
blt.un EE
br FAIL
EE:
ldsfld float32 _blt_un::minus_zero
ldsfld float32 _blt_un::NaN
blt.un FF
br FAIL
FF:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
GG:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::zero
blt.un FAIL
HH:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::one
blt.un II
br FAIL
II:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::max
blt.un JJ
br FAIL
JJ:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::pos_inf
blt.un KK
br FAIL
KK:
ldsfld float32 _blt_un::zero
ldsfld float32 _blt_un::NaN
blt.un LL
br FAIL
LL:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::zero
blt.un FAIL
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::one
blt.un FAIL
MM:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::max
blt.un NN
br FAIL
NN:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::pos_inf
blt.un OO
br FAIL
OO:
ldsfld float32 _blt_un::one
ldsfld float32 _blt_un::NaN
blt.un PP
br FAIL
PP:
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::zero
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::one
blt.un FAIL
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::max
blt.un FAIL
QQ:
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::pos_inf
blt.un RR
br FAIL
RR:
ldsfld float32 _blt_un::max
ldsfld float32 _blt_un::NaN
blt.un SS
br FAIL
SS:
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::neg_inf
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::min
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::minus_one
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::minus_zero
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::zero
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::one
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::max
blt.un FAIL
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::pos_inf
blt.un FAIL
TT:
ldsfld float32 _blt_un::pos_inf
ldsfld float32 _blt_un::NaN
blt.un UU
br FAIL
UU:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::neg_inf
blt.un VV
br FAIL
VV:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::min
blt.un WW
br FAIL
WW:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::minus_one
blt.un XX
br FAIL
XX:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::minus_zero
blt.un YY
br FAIL
YY:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::zero
blt.un ZZ
br FAIL
ZZ:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::one
blt.un AAA
br FAIL
AAA:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::max
blt.un BBB
br FAIL
BBB:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::pos_inf
blt.un CCC
br FAIL
CCC:
ldsfld float32 _blt_un::NaN
ldsfld float32 _blt_un::NaN
blt.un L0
br FAIL
// Testing early folding logic
L0:
ldc.r4 NEG_INF
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 NEG_INF
ldc.r4 MIN
blt.un L1
br FAIL
L1:
ldc.r4 NEG_INF
ldc.r4 MINUS_ONE
blt.un L2
br FAIL
L2:
ldc.r4 NEG_INF
ldc.r4 MINUS_ZERO
blt.un L3
br FAIL
L3:
ldc.r4 NEG_INF
ldc.r4 ZERO
blt.un L4
br FAIL
L4:
ldc.r4 NEG_INF
ldc.r4 ONE
blt.un L5
br FAIL
L5:
ldc.r4 NEG_INF
ldc.r4 MAX
blt.un L6
br FAIL
L6:
ldc.r4 NEG_INF
ldc.r4 POS_INF
blt.un L7
br FAIL
L7:
ldc.r4 NEG_INF
ldc.r4 NAN
blt.un L8
br FAIL
L8:
ldc.r4 MIN
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MIN
ldc.r4 MIN
blt.un FAIL
ldc.r4 MIN
ldc.r4 MINUS_ONE
blt.un L9
br FAIL
L9:
ldc.r4 MIN
ldc.r4 MINUS_ZERO
blt.un L10
br FAIL
L10:
ldc.r4 MIN
ldc.r4 ZERO
blt.un L11
br FAIL
L11:
ldc.r4 MIN
ldc.r4 ONE
blt.un L12
br FAIL
L12:
ldc.r4 MIN
ldc.r4 MAX
blt.un L13
br FAIL
L13:
ldc.r4 MIN
ldc.r4 POS_INF
blt.un L14
br FAIL
L14:
ldc.r4 MIN
ldc.r4 NAN
blt.un L15
br FAIL
L15:
ldc.r4 MINUS_ONE
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MINUS_ONE
ldc.r4 MIN
blt.un FAIL
ldc.r4 MINUS_ONE
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 MINUS_ONE
ldc.r4 MINUS_ZERO
blt.un L16
br FAIL
L16:
ldc.r4 MINUS_ONE
ldc.r4 ZERO
blt.un L17
br FAIL
L17:
ldc.r4 MINUS_ONE
ldc.r4 ONE
blt.un L18
br FAIL
L18:
ldc.r4 MINUS_ONE
ldc.r4 MAX
blt.un L19
br FAIL
L19:
ldc.r4 MINUS_ONE
ldc.r4 POS_INF
blt.un L20
br FAIL
L20:
ldc.r4 MINUS_ONE
ldc.r4 NAN
blt.un L21
br FAIL
L21:
ldc.r4 MINUS_ZERO
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 MIN
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 ZERO
blt.un FAIL
ldc.r4 MINUS_ZERO
ldc.r4 ONE
blt.un L22
br FAIL
L22:
ldc.r4 MINUS_ZERO
ldc.r4 MAX
blt.un L23
br FAIL
L23:
ldc.r4 MINUS_ZERO
ldc.r4 POS_INF
blt.un L24
br FAIL
L24:
ldc.r4 MINUS_ZERO
ldc.r4 NAN
blt.un L25
br FAIL
L25:
ldc.r4 ZERO
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 ZERO
ldc.r4 MIN
blt.un FAIL
ldc.r4 ZERO
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 ZERO
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 ZERO
ldc.r4 ZERO
blt.un FAIL
ldc.r4 ZERO
ldc.r4 ONE
blt.un L26
br FAIL
L26:
ldc.r4 ZERO
ldc.r4 MAX
blt.un L27
br FAIL
L27:
ldc.r4 ZERO
ldc.r4 POS_INF
blt.un L28
br FAIL
L28:
ldc.r4 ZERO
ldc.r4 NAN
blt.un L29
br FAIL
L29:
ldc.r4 ONE
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 ONE
ldc.r4 MIN
blt.un FAIL
ldc.r4 ONE
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 ONE
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 ONE
ldc.r4 ZERO
blt.un FAIL
ldc.r4 ONE
ldc.r4 ONE
blt.un FAIL
ldc.r4 ONE
ldc.r4 MAX
blt.un L30
br FAIL
L30:
ldc.r4 ONE
ldc.r4 POS_INF
blt.un L31
br FAIL
L31:
ldc.r4 ONE
ldc.r4 NAN
blt.un L32
br FAIL
L32:
ldc.r4 MAX
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 MAX
ldc.r4 MIN
blt.un FAIL
ldc.r4 MAX
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 MAX
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 MAX
ldc.r4 ZERO
blt.un FAIL
ldc.r4 MAX
ldc.r4 ONE
blt.un FAIL
ldc.r4 MAX
ldc.r4 MAX
blt.un FAIL
ldc.r4 MAX
ldc.r4 POS_INF
blt.un L33
br FAIL
L33:
ldc.r4 MAX
ldc.r4 NAN
blt.un L34
br FAIL
L34:
ldc.r4 POS_INF
ldc.r4 NEG_INF
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MIN
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MINUS_ONE
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MINUS_ZERO
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 ZERO
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 ONE
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 MAX
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 POS_INF
blt.un FAIL
ldc.r4 POS_INF
ldc.r4 NAN
blt.un L35
br FAIL
L35:
ldc.r4 NAN
ldc.r4 NEG_INF
blt.un L36
br FAIL
L36:
ldc.r4 NAN
ldc.r4 MIN
blt.un L37
br FAIL
L37:
ldc.r4 NAN
ldc.r4 MINUS_ONE
blt.un L38
br FAIL
L38:
ldc.r4 NAN
ldc.r4 MINUS_ZERO
blt.un L39
br FAIL
L39:
ldc.r4 NAN
ldc.r4 ZERO
blt.un L40
br FAIL
L40:
ldc.r4 NAN
ldc.r4 ONE
blt.un L41
br FAIL
L41:
ldc.r4 NAN
ldc.r4 MAX
blt.un L42
br FAIL
L42:
ldc.r4 NAN
ldc.r4 POS_INF
blt.un L43
br FAIL
L43:
ldc.r4 NAN
ldc.r4 NAN
blt.un BACKCHECK
br FAIL
TOPASS:
br PASS
BACKCHECK:
ldc.r4 0x0
ldc.r4 0x1
blt.un TOPASS
br FAIL
PASS:
ldc.i4 100
ret
FAIL:
ldc.i4 0x0
ret
}
}
.assembly blt_un_r4{}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/mono/mono/tests/calliTest.il | //Tests ldftn and calli
//Prints PASS if passed, nothing if failed
.assembly extern mscorlib{}
.assembly someTest{}
.module someTest
.class private auto ansi someTest
extends [mscorlib]System.Object {
.method public static void go() cil managed {
.entrypoint
ldstr "PASS"
ldftn void [mscorlib]System.Console::WriteLine(string)
calli void (string)
ret
}
} | //Tests ldftn and calli
//Prints PASS if passed, nothing if failed
.assembly extern mscorlib{}
.assembly someTest{}
.module someTest
.class private auto ansi someTest
extends [mscorlib]System.Object {
.method public static void go() cil managed {
.entrypoint
ldstr "PASS"
ldftn void [mscorlib]System.Console::WriteLine(string)
calli void (string)
ret
}
} | -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Base/tailcall.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console { auto }
.assembly extern legacy library mscorlib { auto }
.assembly tailcall{}
.method public static int32 main(string[]) {
.locals (class [mscorlib]System.IO.TextWriter,class _tailcall)
.entrypoint
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
stloc 0
newobj instance void _tailcall::.ctor()
stloc 1
ldloc 1
callvirt instance int32 _tailcall::method1()
ldc.i4 0x1234
bne.un fail
pass:
ldloc 0
ldstr "TAILCALL Tests PASS."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldc.i4 100
br end
fail:
ldloc 0
ldstr "!!! FAILURE !!! - TAILCALL TESTS FAIL - !!! FAILURE !!!"
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldc.i4 0x0
br end
end:
ret
}
.class public _tailcall {
.method public void .ctor() {
.maxstack 10
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
ldstr "TAILCALL test initialized."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ret
}
.method public int32 method1() {
.locals (int32,string)
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
ldstr "Beginning Test."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldarg 0 //this ptr
tail.
callvirt instance int32 _tailcall::method2()
ret
}
.method public int32 method2() {
.locals ()
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
ldstr "Method2 has been called."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldc.i4 0x1234
ret //we should return from here to main.
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console { auto }
.assembly extern legacy library mscorlib { auto }
.assembly tailcall{}
.method public static int32 main(string[]) {
.locals (class [mscorlib]System.IO.TextWriter,class _tailcall)
.entrypoint
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
stloc 0
newobj instance void _tailcall::.ctor()
stloc 1
ldloc 1
callvirt instance int32 _tailcall::method1()
ldc.i4 0x1234
bne.un fail
pass:
ldloc 0
ldstr "TAILCALL Tests PASS."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldc.i4 100
br end
fail:
ldloc 0
ldstr "!!! FAILURE !!! - TAILCALL TESTS FAIL - !!! FAILURE !!!"
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldc.i4 0x0
br end
end:
ret
}
.class public _tailcall {
.method public void .ctor() {
.maxstack 10
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
ldstr "TAILCALL test initialized."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ret
}
.method public int32 method1() {
.locals (int32,string)
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
ldstr "Beginning Test."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldarg 0 //this ptr
tail.
callvirt instance int32 _tailcall::method2()
ret
}
.method public int32 method2() {
.locals ()
call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out()
ldstr "Method2 has been called."
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldc.i4 0x1234
ret //we should return from here to main.
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest618/Generated618.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated618 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1090`1<T0>
extends class G2_C59`1<class BaseClass1>
implements class IBase1`1<class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G3_C1090::Method4.14242()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G3_C1090::Method5.14244()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method5'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G3_C1090::Method6.14246<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3570() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3570.14247()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3571() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3571.14248()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3572<M0>() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3572.14249<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3573<M0>() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3573.14250<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C59`1<class BaseClass1>::.ctor()
ret
}
}
.class public G2_C59`1<T0>
extends class G1_C5`1<class BaseClass0>
implements class IBase2`2<!T0,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C59::Method7.5285<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1434() cil managed noinlining {
ldstr "G2_C59::ClassMethod1434.5286()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C5<class BaseClass0>.ClassMethod1325'<M0>() cil managed noinlining {
.override method instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<[1]>()
ldstr "G2_C59::ClassMethod1325.MI.5287<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C5`1<class BaseClass0>::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public G1_C5`1<T0>
implements class IBase2`2<class BaseClass1,class BaseClass1>, class IBase1`1<!T0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C5::Method7.4801<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G1_C5::Method4.4802()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G1_C5::Method5.4803()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C5::Method6.4804<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method6<[1]>()
ldstr "G1_C5::Method6.MI.4805<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1324() cil managed noinlining {
ldstr "G1_C5::ClassMethod1324.4806()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1325<M0>() cil managed noinlining {
ldstr "G1_C5::ClassMethod1325.4807<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated618 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1090.T<T0,(class G3_C1090`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 16
.locals init (string[] actualResults)
ldc.i4.s 11
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1090.T<T0,(class G3_C1090`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 11
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3570()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3571()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3572<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3573<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1090.A<(class G3_C1090`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 16
.locals init (string[] actualResults)
ldc.i4.s 11
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1090.A<(class G3_C1090`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 11
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3570()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3571()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3572<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3573<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1090.B<(class G3_C1090`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 16
.locals init (string[] actualResults)
ldc.i4.s 11
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1090.B<(class G3_C1090`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 11
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3570()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3571()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3572<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3573<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C59.T<T0,(class G2_C59`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 12
.locals init (string[] actualResults)
ldc.i4.s 7
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C59.T<T0,(class G2_C59`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 7
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C59.A<(class G2_C59`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 12
.locals init (string[] actualResults)
ldc.i4.s 7
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C59.A<(class G2_C59`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 7
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C59.B<(class G2_C59`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 12
.locals init (string[] actualResults)
ldc.i4.s 7
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C59.B<(class G2_C59`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 7
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C5.T<T0,(class G1_C5`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C5.T<T0,(class G1_C5`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C5.A<(class G1_C5`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C5.A<(class G1_C5`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C5.B<(class G1_C5`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C5.B<(class G1_C5`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1090`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3573<object>()
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3572<object>()
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3571()
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3570()
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method5()
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method4()
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1090`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3573<object>()
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3572<object>()
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3571()
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3570()
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C59`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C59`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C5`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C5`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1090`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.A<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.T<class BaseClass0,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.A<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1090`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.A<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C59`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C59`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C59`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass0,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.A<class G2_C59`1<class BaseClass0>>(!!0,string)
newobj instance void class G2_C59`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C59`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C59`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass1,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.B<class G2_C59`1<class BaseClass1>>(!!0,string)
newobj instance void class G1_C5`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G1_C5`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C5`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G1_C5`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G1_C5`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C5`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G1_C5`1<class BaseClass0>>(!!0,string)
newobj instance void class G1_C5`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C5`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C5`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G1_C5`1<class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1090`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3573<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3572<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3571()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3570()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1090`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3573<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3572<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3571()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3570()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C59`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::ClassMethod1434()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C59`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method5()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method4()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C5`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C5`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::ClassMethod1324()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method5()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method4()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated618::MethodCallingTest()
call void Generated618::ConstrainedCallsTest()
call void Generated618::StructConstrainedInterfaceCallsTest()
call void Generated618::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated618 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1090`1<T0>
extends class G2_C59`1<class BaseClass1>
implements class IBase1`1<class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G3_C1090::Method4.14242()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G3_C1090::Method5.14244()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method5'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G3_C1090::Method6.14246<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3570() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3570.14247()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3571() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3571.14248()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3572<M0>() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3572.14249<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3573<M0>() cil managed noinlining {
ldstr "G3_C1090::ClassMethod3573.14250<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C59`1<class BaseClass1>::.ctor()
ret
}
}
.class public G2_C59`1<T0>
extends class G1_C5`1<class BaseClass0>
implements class IBase2`2<!T0,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C59::Method7.5285<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1434() cil managed noinlining {
ldstr "G2_C59::ClassMethod1434.5286()"
ret
}
.method public hidebysig newslot virtual instance string 'G1_C5<class BaseClass0>.ClassMethod1325'<M0>() cil managed noinlining {
.override method instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<[1]>()
ldstr "G2_C59::ClassMethod1325.MI.5287<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C5`1<class BaseClass0>::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public G1_C5`1<T0>
implements class IBase2`2<class BaseClass1,class BaseClass1>, class IBase1`1<!T0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C5::Method7.4801<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G1_C5::Method4.4802()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G1_C5::Method5.4803()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C5::Method6.4804<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<!T0>::Method6<[1]>()
ldstr "G1_C5::Method6.MI.4805<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1324() cil managed noinlining {
ldstr "G1_C5::ClassMethod1324.4806()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1325<M0>() cil managed noinlining {
ldstr "G1_C5::ClassMethod1325.4807<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated618 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1090.T<T0,(class G3_C1090`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 16
.locals init (string[] actualResults)
ldc.i4.s 11
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1090.T<T0,(class G3_C1090`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 11
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3570()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3571()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3572<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::ClassMethod3573<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1090.A<(class G3_C1090`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 16
.locals init (string[] actualResults)
ldc.i4.s 11
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1090.A<(class G3_C1090`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 11
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3570()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3571()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3572<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3573<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1090.B<(class G3_C1090`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 16
.locals init (string[] actualResults)
ldc.i4.s 11
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1090.B<(class G3_C1090`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 11
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3570()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3571()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3572<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3573<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 10
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1090`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C59.T<T0,(class G2_C59`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 12
.locals init (string[] actualResults)
ldc.i4.s 7
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C59.T<T0,(class G2_C59`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 7
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C59.A<(class G2_C59`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 12
.locals init (string[] actualResults)
ldc.i4.s 7
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C59.A<(class G2_C59`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 7
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C59.B<(class G2_C59`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 12
.locals init (string[] actualResults)
ldc.i4.s 7
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C59.B<(class G2_C59`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 7
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C5.T<T0,(class G1_C5`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C5.T<T0,(class G1_C5`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C5.A<(class G1_C5`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C5.A<(class G1_C5`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C5.B<(class G1_C5`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C5.B<(class G1_C5`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1324()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1325<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C5`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1090`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3573<object>()
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3572<object>()
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3571()
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod3570()
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method5()
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method4()
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass0>
callvirt instance string class G3_C1090`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1090`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3573<object>()
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3572<object>()
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3571()
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod3570()
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1090`1<class BaseClass1>
callvirt instance string class G3_C1090`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C59`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass0>
callvirt instance string class G2_C59`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C59`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method7<object>()
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C59`1<class BaseClass1>
callvirt instance string class G2_C59`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C5`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass0>
callvirt instance string class G1_C5`1<class BaseClass0>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C5`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1325<object>()
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::ClassMethod1324()
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C5`1<class BaseClass1>
callvirt instance string class G1_C5`1<class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1090`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.A<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.T<class BaseClass0,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.A<class G3_C1090`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass1,class G3_C1090`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.B<class G3_C1090`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1090`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.A<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G3_C1090::ClassMethod3570.14247()#G3_C1090::ClassMethod3571.14248()#G3_C1090::ClassMethod3572.14249<System.Object>()#G3_C1090::ClassMethod3573.14250<System.Object>()#G3_C1090::Method4.14242()#G3_C1090::Method5.14244()#G3_C1090::Method6.14246<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G3_C1090.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass1,class G3_C1090`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1090::Method4.MI.14243()#G3_C1090::Method5.MI.14245()#G3_C1090::Method6.14246<System.Object>()#"
call void Generated618::M.IBase1.B<class G3_C1090`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C59`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C59`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C59`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G2_C59`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass0,class G2_C59`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.A<class G2_C59`1<class BaseClass0>>(!!0,string)
newobj instance void class G2_C59`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C59`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C59`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G2_C59`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.T<class BaseClass1,class G2_C59`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G2_C59::ClassMethod1325.MI.5287<System.Object>()#G2_C59::ClassMethod1434.5286()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G2_C59::Method7.5285<System.Object>()#"
call void Generated618::M.G2_C59.B<class G2_C59`1<class BaseClass1>>(!!0,string)
newobj instance void class G1_C5`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass0,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.A<class G1_C5`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C5`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G1_C5`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G1_C5`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C5`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G1_C5`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G1_C5`1<class BaseClass0>>(!!0,string)
newobj instance void class G1_C5`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::ClassMethod1324.4806()#G1_C5::ClassMethod1325.4807<System.Object>()#G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.4804<System.Object>()#G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.G1_C5.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C5`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.B.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C5`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.T<class BaseClass1,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method7.4801<System.Object>()#"
call void Generated618::M.IBase2.A.B<class G1_C5`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.T<class BaseClass0,class G1_C5`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C5::Method4.4802()#G1_C5::Method5.4803()#G1_C5::Method6.MI.4805<System.Object>()#"
call void Generated618::M.IBase1.A<class G1_C5`1<class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1090`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3573<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3572<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3571()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod3570()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass0>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass0> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass0>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1090`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3573<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3573.14250<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3572<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3572.14249<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3571()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3571.14248()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod3570()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::ClassMethod3570.14247()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method5.14244()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method4.14242()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod1434()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1090`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1090`1<class BaseClass1>::ClassMethod1324()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G3_C1090`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method4.MI.14243()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method5.MI.14245()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1090`1<class BaseClass1>)
ldstr "G3_C1090::Method6.14246<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1090`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C59`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::ClassMethod1434()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass0> on type class G2_C59`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C59`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1434()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1434.5286()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method7<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::Method7.5285<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G2_C59::ClassMethod1325.MI.5287<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::ClassMethod1324()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method5()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C59`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C59`1<class BaseClass1>::Method4()
calli default string(class G2_C59`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G2_C59`1<class BaseClass1> on type class G2_C59`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C5`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1325<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::ClassMethod1324()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method5()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method4()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass0>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass0>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C5`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::ClassMethod1325<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1325.4807<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::ClassMethod1324()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::ClassMethod1324.4806()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method6.4804<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method5()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method4()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C5`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C5`1<class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class G1_C5`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method7.4801<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method4.4802()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method5.4803()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C5`1<class BaseClass1>)
ldstr "G1_C5::Method6.MI.4805<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C5`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated618::MethodCallingTest()
call void Generated618::ConstrainedCallsTest()
call void Generated618::StructConstrainedInterfaceCallsTest()
call void Generated618::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Base/add_ovf.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly add_ovf{}
.class public add_ovf {
.field public static int32 temp32a
.field public static int64 temp64a
.field public static int32 temp32b
.field public static int64 temp64b
.data ptr = int32(0)
.method public static int32 i1() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x0000007E
ldc.i4 0x00000001
add.ovf
conv.ovf.i1
stsfld int32 add_ovf::temp32a
ldc.i4 0x0000007F
ldc.i4 0x00000001
add.ovf
conv.ovf.i1
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x0000007F
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u1() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x000000FE
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u1
stsfld int32 add_ovf::temp32a
ldc.i4 0x000000FF
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u1
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x000000FF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 i2() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x00007FFE
ldc.i4 0x00000001
add.ovf
conv.ovf.i2
stsfld int32 add_ovf::temp32a
ldc.i4 0x00007FFF
ldc.i4 0x00000001
add.ovf
conv.ovf.i2
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x00007FFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u2() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x0000FFFE
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u2
stsfld int32 add_ovf::temp32a
ldc.i4 0x0000FFFF
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u2
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x0000FFFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 i4() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x7FFFFFFE
ldc.i4 0x00000001
add.ovf
conv.ovf.i4
stsfld int32 add_ovf::temp32a
ldc.i4 0x7FFFFFFF
ldc.i4 0x00000001
add.ovf
conv.ovf.i4
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x7FFFFFFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u4() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0xFFFFFFFE
ldc.i4 0x00000001
add.ovf.un
stsfld int32 add_ovf::temp32a
ldc.i4 0xFFFFFFFF
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u4
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0xFFFFFFFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 i8() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i8 0x7FFFFFFFFFFFFFFE
ldc.i8 0x0000000000000001
add.ovf
conv.ovf.i8
stsfld int64 add_ovf::temp64a
ldc.i8 0x7FFFFFFFFFFFFFFF
ldc.i8 0x0000000000000001
add.ovf
conv.ovf.i8
stsfld int64 add_ovf::temp64b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i8 0x7FFFFFFFFFFFFFFF
ldsfld int64 add_ovf::temp64a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u8() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i8 0xFFFFFFFFFFFFFFFE
ldc.i8 0x0000000000000001
add.ovf.un
stsfld int64 add_ovf::temp64a
ldc.i8 0xFFFFFFFFFFFFFFFF
ldc.i8 0x0000000000000001
add.ovf.un
conv.ovf.u8
stsfld int64 add_ovf::temp64b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i8 0xFFFFFFFFFFFFFFFF
ldsfld int64 add_ovf::temp64a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 10
call int32 add_ovf::i1()
brfalse FAIL
call int32 add_ovf::u1()
brfalse FAIL
call int32 add_ovf::i2()
brfalse FAIL
call int32 add_ovf::u2()
brfalse FAIL
call int32 add_ovf::i4()
brfalse FAIL
call int32 add_ovf::u4()
brfalse FAIL
call int32 add_ovf::i8()
brfalse FAIL
call int32 add_ovf::u8()
brfalse FAIL
PASS:
ldc.i4 100
ret
FAIL:
ldc.i4 0x0
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly add_ovf{}
.class public add_ovf {
.field public static int32 temp32a
.field public static int64 temp64a
.field public static int32 temp32b
.field public static int64 temp64b
.data ptr = int32(0)
.method public static int32 i1() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x0000007E
ldc.i4 0x00000001
add.ovf
conv.ovf.i1
stsfld int32 add_ovf::temp32a
ldc.i4 0x0000007F
ldc.i4 0x00000001
add.ovf
conv.ovf.i1
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x0000007F
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u1() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x000000FE
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u1
stsfld int32 add_ovf::temp32a
ldc.i4 0x000000FF
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u1
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x000000FF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 i2() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x00007FFE
ldc.i4 0x00000001
add.ovf
conv.ovf.i2
stsfld int32 add_ovf::temp32a
ldc.i4 0x00007FFF
ldc.i4 0x00000001
add.ovf
conv.ovf.i2
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x00007FFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u2() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x0000FFFE
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u2
stsfld int32 add_ovf::temp32a
ldc.i4 0x0000FFFF
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u2
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x0000FFFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 i4() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0x7FFFFFFE
ldc.i4 0x00000001
add.ovf
conv.ovf.i4
stsfld int32 add_ovf::temp32a
ldc.i4 0x7FFFFFFF
ldc.i4 0x00000001
add.ovf
conv.ovf.i4
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0x7FFFFFFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u4() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i4 0xFFFFFFFE
ldc.i4 0x00000001
add.ovf.un
stsfld int32 add_ovf::temp32a
ldc.i4 0xFFFFFFFF
ldc.i4 0x00000001
add.ovf.un
conv.ovf.u4
stsfld int32 add_ovf::temp32b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i4 0xFFFFFFFF
ldsfld int32 add_ovf::temp32a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 i8() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i8 0x7FFFFFFFFFFFFFFE
ldc.i8 0x0000000000000001
add.ovf
conv.ovf.i8
stsfld int64 add_ovf::temp64a
ldc.i8 0x7FFFFFFFFFFFFFFF
ldc.i8 0x0000000000000001
add.ovf
conv.ovf.i8
stsfld int64 add_ovf::temp64b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i8 0x7FFFFFFFFFFFFFFF
ldsfld int64 add_ovf::temp64a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 u8() {
.locals(class [mscorlib]System.Exception)
.maxstack 5
try_start:
ldc.i8 0xFFFFFFFFFFFFFFFE
ldc.i8 0x0000000000000001
add.ovf.un
stsfld int64 add_ovf::temp64a
ldc.i8 0xFFFFFFFFFFFFFFFF
ldc.i8 0x0000000000000001
add.ovf.un
conv.ovf.u8
stsfld int64 add_ovf::temp64b
leave done
try_end:
br FAIL
handler_start:
stloc 0
leave done
handler_end:
done:
ldloc 0
isinst [mscorlib]System.OverflowException
brfalse FAIL
ldc.i8 0xFFFFFFFFFFFFFFFF
ldsfld int64 add_ovf::temp64a
ceq
brfalse FAIL
PASS:
ldc.i4 0x00000001
ret
FAIL:
ldc.i4 0x00000000
ret
.try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 10
call int32 add_ovf::i1()
brfalse FAIL
call int32 add_ovf::u1()
brfalse FAIL
call int32 add_ovf::i2()
brfalse FAIL
call int32 add_ovf::u2()
brfalse FAIL
call int32 add_ovf::i4()
brfalse FAIL
call int32 add_ovf::u4()
brfalse FAIL
call int32 add_ovf::i8()
brfalse FAIL
call int32 add_ovf::u8()
brfalse FAIL
PASS:
ldc.i4 100
ret
FAIL:
ldc.i4 0x0
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/Invoke/fptr/virtftn.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'virtftn'
{
// .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool,
// bool) = ( 01 00 00 01 00 00 )
}
.assembly extern xunit.core {}
// MVID: {90803FD0-8E18-44C9-A242-98463ADD450D}
.namespace JitTest
{
.class private auto ansi Test extends ['mscorlib']System.Object
{
.method private hidebysig virtual instance int32 DoStuff(method instance int32 *()) il managed
{
// Code size 1 (0x1)
.maxstack 8
ldarg.0
ldarg.1
calli instance int32()
ret
} // end of method 'Test::DoStuff'
.method private hidebysig virtual instance method instance int32 *() RetStuff() il managed
{
// Code size 1 (0x1)
.maxstack 8
ldarg.0
ldvirtftn instance int32 JitTest.Test::DummyMethod()
ret
} // end of method 'Test::DoStuff'
.method private hidebysig virtual instance int32 DummyMethod() il managed
{
// Code size 1 (0x1)
.maxstack 8
ldarg.0
callvirt instance class [mscorlib]System.Type [mscorlib]System.Object::GetType()
callvirt instance class [mscorlib]System.String [mscorlib]System.Type::ToString()
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.String)
ldc.i4 101
ret
} // end of method 'Test::DoStuff'
.method private hidebysig static int32
Main() il managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 8
.locals (class JitTest.Test, int32)
newobj instance void JitTest.Test::.ctor()
stloc.0
ldloc.0
dup
dup
dup
ldvirtftn instance int32 JitTest.Test::DummyMethod()
ldloc.0
ldvirtftn instance int32 JitTest.Test::DoStuff(method instance int32 *())
calli instance int32 (method instance int32 *())
stloc.1
ldloc.0
ldvirtftn instance method instance int32 *() JitTest.Test::RetStuff()
calli instance method instance int32 *()()
calli instance int32 ()
ldloc.1
sub
ldc.i4 0x64
add
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void ['mscorlib']System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'JitTest'
//*********** DISASSEMBLY COMPLETE ***********************
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { }
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'virtftn'
{
// .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool,
// bool) = ( 01 00 00 01 00 00 )
}
.assembly extern xunit.core {}
// MVID: {90803FD0-8E18-44C9-A242-98463ADD450D}
.namespace JitTest
{
.class private auto ansi Test extends ['mscorlib']System.Object
{
.method private hidebysig virtual instance int32 DoStuff(method instance int32 *()) il managed
{
// Code size 1 (0x1)
.maxstack 8
ldarg.0
ldarg.1
calli instance int32()
ret
} // end of method 'Test::DoStuff'
.method private hidebysig virtual instance method instance int32 *() RetStuff() il managed
{
// Code size 1 (0x1)
.maxstack 8
ldarg.0
ldvirtftn instance int32 JitTest.Test::DummyMethod()
ret
} // end of method 'Test::DoStuff'
.method private hidebysig virtual instance int32 DummyMethod() il managed
{
// Code size 1 (0x1)
.maxstack 8
ldarg.0
callvirt instance class [mscorlib]System.Type [mscorlib]System.Object::GetType()
callvirt instance class [mscorlib]System.String [mscorlib]System.Type::ToString()
call void [System.Console]System.Console::WriteLine(class [mscorlib]System.String)
ldc.i4 101
ret
} // end of method 'Test::DoStuff'
.method private hidebysig static int32
Main() il managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 8
.locals (class JitTest.Test, int32)
newobj instance void JitTest.Test::.ctor()
stloc.0
ldloc.0
dup
dup
dup
ldvirtftn instance int32 JitTest.Test::DummyMethod()
ldloc.0
ldvirtftn instance int32 JitTest.Test::DoStuff(method instance int32 *())
calli instance int32 (method instance int32 *())
stloc.1
ldloc.0
ldvirtftn instance method instance int32 *() JitTest.Test::RetStuff()
calli instance method instance int32 *()()
calli instance int32 ()
ldloc.1
sub
ldc.i4 0x64
add
ret
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void ['mscorlib']System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'JitTest'
//*********** DISASSEMBLY COMPLETE ***********************
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1197/Generated1197.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated1197 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1669`1<T0>
extends class G2_C660`2<class BaseClass0,!T0>
implements class IBase2`2<class BaseClass0,class BaseClass1>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1669::Method7.17364<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4732() cil managed noinlining {
ldstr "G3_C1669::ClassMethod4732.17365()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4733() cil managed noinlining {
ldstr "G3_C1669::ClassMethod4733.17366()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C660<class BaseClass0,T0>.ClassMethod2683'<M0>() cil managed noinlining {
.override method instance string class G2_C660`2<class BaseClass0,!T0>::ClassMethod2683<[1]>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C660`2<class BaseClass0,!T0>::.ctor()
ret
}
}
.class public G2_C660`2<T0, T1>
extends class G1_C12`2<class BaseClass1,!T1>
implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase1`1<class BaseClass0>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C660::Method7.11076<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,class BaseClass0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<[1]>()
ldstr "G2_C660::Method7.MI.11077<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C660::Method4.11078()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G2_C660::Method5.11079()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C660::Method6.11080<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2682<M0>() cil managed noinlining {
ldstr "G2_C660::ClassMethod2682.11081<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2683<M0>() cil managed noinlining {
ldstr "G2_C660::ClassMethod2683.11082<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass1,T1>.ClassMethod1346'<M0>() cil managed noinlining {
.override method instance string class G1_C12`2<class BaseClass1,!T1>::ClassMethod1346<[1]>()
ldstr "G2_C660::ClassMethod1346.MI.11083<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C12`2<class BaseClass1,!T1>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public G1_C12`2<T0, T1>
implements class IBase2`2<!T0,!T1>, class IBase1`1<class BaseClass0>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C12::Method7.4863<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>()
ldstr "G1_C12::Method7.MI.4864<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G1_C12::Method4.4865()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G1_C12::Method5.4866()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C12::Method6.4867<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G1_C12::Method6.MI.4868<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1346<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1346.4869<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1347<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1347.4870<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated1197 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1669.T<T0,(class G3_C1669`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1669.T<T0,(class G3_C1669`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod4732()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod4733()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1669.A<(class G3_C1669`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1669.A<(class G3_C1669`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4732()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4733()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1669.B<(class G3_C1669`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1669.B<(class G3_C1669`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4732()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4733()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.T.T<T0,T1,(class G2_C660`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.T.T<T0,T1,(class G2_C660`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.A.T<T1,(class G2_C660`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.A.T<T1,(class G2_C660`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.A.A<(class G2_C660`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.A.A<(class G2_C660`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.A.B<(class G2_C660`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.A.B<(class G2_C660`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.B.T<T1,(class G2_C660`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.B.T<T1,(class G2_C660`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.B.A<(class G2_C660`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.B.A<(class G2_C660`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.B.B<(class G2_C660`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.B.B<(class G2_C660`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1669`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4733()
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4732()
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1669`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4733()
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4732()
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1669`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1669`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1669`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod4733()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod4732()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1669`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod4733()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod4732()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated1197::MethodCallingTest()
call void Generated1197::ConstrainedCallsTest()
call void Generated1197::StructConstrainedInterfaceCallsTest()
call void Generated1197::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated1197 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1669`1<T0>
extends class G2_C660`2<class BaseClass0,!T0>
implements class IBase2`2<class BaseClass0,class BaseClass1>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1669::Method7.17364<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4732() cil managed noinlining {
ldstr "G3_C1669::ClassMethod4732.17365()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod4733() cil managed noinlining {
ldstr "G3_C1669::ClassMethod4733.17366()"
ret
}
.method public hidebysig newslot virtual instance string 'G2_C660<class BaseClass0,T0>.ClassMethod2683'<M0>() cil managed noinlining {
.override method instance string class G2_C660`2<class BaseClass0,!T0>::ClassMethod2683<[1]>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C660`2<class BaseClass0,!T0>::.ctor()
ret
}
}
.class public G2_C660`2<T0, T1>
extends class G1_C12`2<class BaseClass1,!T1>
implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase1`1<class BaseClass0>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C660::Method7.11076<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,class BaseClass0>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<[1]>()
ldstr "G2_C660::Method7.MI.11077<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G2_C660::Method4.11078()"
ret
}
.method public hidebysig newslot virtual instance string Method5() cil managed noinlining {
ldstr "G2_C660::Method5.11079()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C660::Method6.11080<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2682<M0>() cil managed noinlining {
ldstr "G2_C660::ClassMethod2682.11081<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod2683<M0>() cil managed noinlining {
ldstr "G2_C660::ClassMethod2683.11082<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass1,T1>.ClassMethod1346'<M0>() cil managed noinlining {
.override method instance string class G1_C12`2<class BaseClass1,!T1>::ClassMethod1346<[1]>()
ldstr "G2_C660::ClassMethod1346.MI.11083<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C12`2<class BaseClass1,!T1>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public G1_C12`2<T0, T1>
implements class IBase2`2<!T0,!T1>, class IBase1`1<class BaseClass0>
{
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C12::Method7.4863<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>()
ldstr "G1_C12::Method7.MI.4864<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string Method4() cil managed noinlining {
ldstr "G1_C12::Method4.4865()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G1_C12::Method5.4866()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C12::Method6.4867<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G1_C12::Method6.MI.4868<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1346<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1346.4869<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod1347<M0>() cil managed noinlining {
ldstr "G1_C12::ClassMethod1347.4870<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated1197 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1669.T<T0,(class G3_C1669`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1669.T<T0,(class G3_C1669`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod4732()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::ClassMethod4733()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1669.A<(class G3_C1669`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1669.A<(class G3_C1669`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4732()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4733()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1669.B<(class G3_C1669`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 15
.locals init (string[] actualResults)
ldc.i4.s 10
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1669.B<(class G3_C1669`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 10
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4732()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4733()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 9
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1669`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.T.T<T0,T1,(class G2_C660`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.T.T<T0,T1,(class G2_C660`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.A.T<T1,(class G2_C660`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.A.T<T1,(class G2_C660`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.A.A<(class G2_C660`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.A.A<(class G2_C660`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.A.B<(class G2_C660`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.A.B<(class G2_C660`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.B.T<T1,(class G2_C660`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.B.T<T1,(class G2_C660`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.B.A<(class G2_C660`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.B.A<(class G2_C660`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C660.B.B<(class G2_C660`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 13
.locals init (string[] actualResults)
ldc.i4.s 8
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C660.B.B<(class G2_C660`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 8
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2682<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2683<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1669`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4733()
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod4732()
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass0>
callvirt instance string class G3_C1669`1<class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1669`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4733()
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod4732()
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2683<object>()
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1669`1<class BaseClass1>
callvirt instance string class G3_C1669`1<class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2683<object>()
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2682<object>()
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1669`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.T<class BaseClass0,class G3_C1669`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.A<class G3_C1669`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1669`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G2_C660.A.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1669`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G3_C1669`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.T<class BaseClass1,class G3_C1669`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G3_C1669::ClassMethod2683.MI.17367<System.Object>()#G3_C1669::ClassMethod4732.17365()#G3_C1669::ClassMethod4733.17366()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G3_C1669::Method7.17364<System.Object>()#"
call void Generated1197::M.G3_C1669.B<class G3_C1669`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.A<class G2_C660`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.T<class BaseClass1,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.A.B<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass1,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.A<class G2_C660`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#"
call void Generated1197::M.IBase1.A<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.T.T<class BaseClass1,class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.T<class BaseClass1,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G2_C660::ClassMethod2682.11081<System.Object>()#G2_C660::ClassMethod2683.11082<System.Object>()#G2_C660::Method4.11078()#G2_C660::Method5.11079()#G2_C660::Method6.11080<System.Object>()#G2_C660::Method7.11076<System.Object>()#"
call void Generated1197::M.G2_C660.B.B<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G2_C660`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C660::Method7.MI.11077<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G2_C660`2<class BaseClass1,class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#"
call void Generated1197::M.G1_C12.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#"
call void Generated1197::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C12::Method7.MI.4864<System.Object>()#"
call void Generated1197::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1669`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod4733()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod4732()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass0>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass0> on type class G3_C1669`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1669`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod4733()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod4733.17366()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod4732()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod4732.17365()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::Method7.17364<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod2683<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G3_C1669::ClassMethod2683.MI.17367<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod2682<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method5()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::Method4()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod1347<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1669`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1669`1<class BaseClass1>::ClassMethod1346<object>()
calli default string(class G3_C1669`1<class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G3_C1669`1<class BaseClass1> on type class G3_C1669`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C660`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2683<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod2683.11082<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod2682<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod2682.11081<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method6.11080<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method5.11079()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method4.11078()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.11076<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C660`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C660`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::ClassMethod1346.MI.11083<System.Object>()"
ldstr "class G2_C660`2<class BaseClass1,class BaseClass1> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C660`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C660::Method7.MI.11077<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C660`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1347.4870<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::ClassMethod1346.4869<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.4867<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C12`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.4863<System.Object>()"
ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method4.4865()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method5.4866()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method6.MI.4868<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C12::Method7.MI.4864<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated1197::MethodCallingTest()
call void Generated1197::ConstrainedCallsTest()
call void Generated1197::StructConstrainedInterfaceCallsTest()
call void Generated1197::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest485/Generated485.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated485 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct535`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<class BaseClass1,!T1>, class IBase2`2<!T0,class BaseClass1>
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct535::Method7.4097<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,!T1>::Method7<[1]>()
ldstr "MyStruct535::Method7.MI.4098<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,class BaseClass1>::Method7<[1]>()
ldstr "MyStruct535::Method7.MI.4100<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1066() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1066.4101()"
ret
}
.method public hidebysig newslot instance string ClassMethod1067() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1067.4102()"
ret
}
.method public hidebysig newslot instance string ClassMethod1068<M0>() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1068.4103<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1069<M0>() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1069.4104<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated485 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.T.T<T0,T1,(valuetype MyStruct535`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.T.T<T0,T1,(valuetype MyStruct535`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<!!T0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.A.T<T1,(valuetype MyStruct535`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.A.T<T1,(valuetype MyStruct535`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.A.A<(valuetype MyStruct535`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.A.A<(valuetype MyStruct535`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.A.B<(valuetype MyStruct535`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.A.B<(valuetype MyStruct535`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.B.T<T1,(valuetype MyStruct535`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.B.T<T1,(valuetype MyStruct535`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.B.A<(valuetype MyStruct535`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.B.A<(valuetype MyStruct535`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1066()
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1067()
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1068<object>()
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1069<object>()
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1066()
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1067()
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1068<object>()
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1069<object>()
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloca V_3
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1066()
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1067()
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1068<object>()
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1069<object>()
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ToString() pop
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.A<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.A<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.A<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV21
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV22
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.B.B<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV23
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.A<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV27
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV28
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.B<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV29
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.A<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_11)
ldloca V_11
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
.try { ldloc V_11
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_11
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.B.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_11
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.B.A<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1066()
calli default string(object)
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1067()
calli default string(object)
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1068<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1069<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1066()
calli default string(object)
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1067()
calli default string(object)
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1068<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1069<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_15)
ldloca V_15
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1066()
calli default string(object)
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1067()
calli default string(object)
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1068<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1069<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0> ldnull
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated485::MethodCallingTest()
call void Generated485::ConstrainedCallsTest()
call void Generated485::StructConstrainedInterfaceCallsTest()
call void Generated485::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated485 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public sequential sealed MyStruct535`2<T0, T1>
extends [mscorlib]System.ValueType
implements class IBase2`2<class BaseClass1,!T1>, class IBase2`2<!T0,class BaseClass1>
{
.pack 0
.size 1
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "MyStruct535::Method7.4097<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<class BaseClass1,!T1>::Method7<[1]>()
ldstr "MyStruct535::Method7.MI.4098<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,class BaseClass1>::Method7<[1]>()
ldstr "MyStruct535::Method7.MI.4100<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1066() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1066.4101()"
ret
}
.method public hidebysig newslot instance string ClassMethod1067() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1067.4102()"
ret
}
.method public hidebysig newslot instance string ClassMethod1068<M0>() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1068.4103<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot instance string ClassMethod1069<M0>() cil managed noinlining {
ldstr "MyStruct535::ClassMethod1069.4104<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret }
.method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret }
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated485 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.T.T<T0,T1,(valuetype MyStruct535`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.T.T<T0,T1,(valuetype MyStruct535`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<!!T0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<!!T0,!!T1>
callvirt instance string class IBase2`2<!!T0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.A.T<T1,(valuetype MyStruct535`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.A.T<T1,(valuetype MyStruct535`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,!!T1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.A.A<(valuetype MyStruct535`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.A.A<(valuetype MyStruct535`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.A.B<(valuetype MyStruct535`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.A.B<(valuetype MyStruct535`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.B.T<T1,(valuetype MyStruct535`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.B.T<T1,(valuetype MyStruct535`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,!!T1>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.MyStruct535.B.A<(valuetype MyStruct535`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 7
.locals init (string[] actualResults)
ldc.i4.s 2
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.MyStruct535.B.A<(valuetype MyStruct535`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 2
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_1)
ldloca V_1
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloca V_1
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1066()
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1067()
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1068<object>()
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1069<object>()
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ToString() pop
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_1
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_2)
ldloca V_2
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloca V_2
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1066()
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1067()
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1068<object>()
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1069<object>()
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Equals(object) pop
dup call instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::GetHashCode() pop
dup call instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ToString() pop
pop
ldloc V_2
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_2
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_3)
ldloca V_3
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloca V_3
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1066()
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1067()
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1068<object>()
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1069<object>()
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type MyStruct535"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup ldnull call instance bool valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Equals(object) pop
dup call instance int32 valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::GetHashCode() pop
dup call instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ToString() pop
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc V_3
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_5)
ldloca V_5
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.A<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.A<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV9
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV10
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10:
.try { ldloc V_5
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV11
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11:
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_6)
ldloca V_6
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV12
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV13
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV14
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV15
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV16
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16:
.try { ldloc V_6
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.A.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV17
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17:
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_7)
ldloca V_7
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV18
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV19
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.B.A<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV20
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV21
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.B.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV22
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.IBase2.B.B<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV23
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.A<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV27
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV28
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28:
.try { ldloc V_7
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#"
call void Generated485::M.IBase2.A.B<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV29
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_9)
ldloca V_9
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
.try { ldloc V_9
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0:
.try { ldloc V_9
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1:
.try { ldloc V_9
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.A<valuetype MyStruct535`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2:
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_10)
ldloca V_10
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
.try { ldloc V_10
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3:
.try { ldloc V_10
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.T<class BaseClass1,valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4:
.try { ldloc V_10
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.A.B<valuetype MyStruct535`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5:
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_11)
ldloca V_11
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
.try { ldloc V_11
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6:
.try { ldloc V_11
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.B.T<class BaseClass0,valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7:
.try { ldloc V_11
ldstr "MyStruct535::Method7.MI.4098<System.Object>()#" +
"MyStruct535::Method7.MI.4100<System.Object>()#"
call void Generated485::M.MyStruct535.B.A<valuetype MyStruct535`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8
} catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8:
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass0> V_13)
ldloca V_13
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1066()
calli default string(object)
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1067()
calli default string(object)
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1068<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ClassMethod1069<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0> ldnull
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13 box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldloc V_13
box valuetype MyStruct535`2<class BaseClass0,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct535`2<class BaseClass0,class BaseClass1> V_14)
ldloca V_14
initobj valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1066()
calli default string(object)
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1067()
calli default string(object)
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1068<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ClassMethod1069<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1> ldnull
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance bool valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance int32 valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14 box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldloc V_14
box valuetype MyStruct535`2<class BaseClass0,class BaseClass1>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
.locals init (valuetype MyStruct535`2<class BaseClass1,class BaseClass0> V_15)
ldloca V_15
initobj valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.4097<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1066()
calli default string(object)
ldstr "MyStruct535::ClassMethod1066.4101()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1067()
calli default string(object)
ldstr "MyStruct535::ClassMethod1067.4102()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1068<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1068.4103<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ClassMethod1069<object>()
calli default string(object)
ldstr "MyStruct535::ClassMethod1069.4104<System.Object>()"
ldstr "valuetype MyStruct535`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0> ldnull
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance bool valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance int32 valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15 box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string valuetype MyStruct535`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4100<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldloc V_15
box valuetype MyStruct535`2<class BaseClass1,class BaseClass0>
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(object)
ldstr "MyStruct535::Method7.MI.4098<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct535`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated485::MethodCallingTest()
call void Generated485::ConstrainedCallsTest()
call void Generated485::StructConstrainedInterfaceCallsTest()
call void Generated485::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Methodical/Arrays/huge/huge_u8.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib
{
}
.assembly 'huge_u8'
{
}
.assembly extern xunit.core {}
.namespace JitTest
{
.class private auto ansi Test
extends [mscorlib]System.Object
{
.method private hidebysig static int32
Main() il managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 70
.locals (unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,] matrix,
int32 count,
int32[] dim)
ldstr "Creating 32-dimension array"
call void [System.Console]System.Console::WriteLine(string)
ldc.i4 32
dup
stloc count
dup
add
newarr int32
again:
dup
dup
ldloc count
ldc.i4.1
sub
dup
stloc count
dup
add
dup
ldc.i4 20
mul
stelem.i4
ldloc count
dup
add
ldc.i4.1
add
ldloc count
ldc.i4.3
rem
dup
brtrue cool
pop
ldc.i4.1
cool:
stelem.i4
ldloc count
brtrue again
ldc.i4.0
stloc count
again2:
dup
ldloc count
ldelem.i4
call void [System.Console]System.Console::Write(int32)
ldstr " "
call void [System.Console]System.Console::Write(string)
ldloc count
ldc.i4.1
add
dup
stloc count
ldc.i4 64
ceq
brfalse again2
stloc dim
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.1 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.3 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.5 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.7 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 9 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 11 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 13 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 15 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 17 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 19 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 21 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 23 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 25 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 27 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 29 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 31 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 33 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 35 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 37 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 39 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 41 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 43 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 45 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 47 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 49 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 51 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 53 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 55 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 57 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 59 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 61 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
ldloc dim ldc.i4 63 ldelem.i4
newobj instance void unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::.ctor(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
stloc matrix
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
ldc.i4 0x57751795
conv.ovf.u8
callvirt instance void unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
unsigned int64)
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
callvirt instance unsigned int64 unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
conv.ovf.i4
ldc.i4 0x57751795
ceq
brtrue pass1
br throw0
cont1:
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
br go1
cont2:
br cont3
go1:
callvirt instance unsigned int64 unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
conv.ovf.i4
ldc.i4 0x57751795
ceq
brtrue pass1_5
throw0:
newobj instance void [mscorlib]System.Exception::.ctor()
throw1:
throw
pass1:
br cont0
pass2:
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
ldc.i4 0x57769795
conv.ovf.u8
callvirt instance void unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
unsigned int64)
ldnull
stloc matrix
call void [mscorlib]System.GC::Collect()
ldc.i4 100
ldstr "TEST PASSED"
call void [System.Console]System.Console::Write(string)
ret
cont0:
br cont2
cont3:
br cont1
pass1_5:
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
callvirt instance unsigned int64& unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Address(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
ldind.u8
conv.ovf.i4
ldc.i4 0x57751795
ceq
call void [mscorlib]System.GC::Collect()
brtrue pass2
newobj instance void [mscorlib]System.Exception::.ctor()
br throw1
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'JitTest'
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly extern mscorlib
{
}
.assembly 'huge_u8'
{
}
.assembly extern xunit.core {}
.namespace JitTest
{
.class private auto ansi Test
extends [mscorlib]System.Object
{
.method private hidebysig static int32
Main() il managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 70
.locals (unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,] matrix,
int32 count,
int32[] dim)
ldstr "Creating 32-dimension array"
call void [System.Console]System.Console::WriteLine(string)
ldc.i4 32
dup
stloc count
dup
add
newarr int32
again:
dup
dup
ldloc count
ldc.i4.1
sub
dup
stloc count
dup
add
dup
ldc.i4 20
mul
stelem.i4
ldloc count
dup
add
ldc.i4.1
add
ldloc count
ldc.i4.3
rem
dup
brtrue cool
pop
ldc.i4.1
cool:
stelem.i4
ldloc count
brtrue again
ldc.i4.0
stloc count
again2:
dup
ldloc count
ldelem.i4
call void [System.Console]System.Console::Write(int32)
ldstr " "
call void [System.Console]System.Console::Write(string)
ldloc count
ldc.i4.1
add
dup
stloc count
ldc.i4 64
ceq
brfalse again2
stloc dim
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.1 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.3 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.5 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.7 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 9 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 11 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 13 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 15 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 17 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 19 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 21 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 23 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 25 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 27 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 29 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 31 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 33 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 35 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 37 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 39 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 41 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 43 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 45 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 47 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 49 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 51 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 53 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 55 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 57 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 59 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 61 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
ldloc dim ldc.i4 63 ldelem.i4
newobj instance void unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::.ctor(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
stloc matrix
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
ldc.i4 0x57751795
conv.ovf.u8
callvirt instance void unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
unsigned int64)
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
callvirt instance unsigned int64 unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
conv.ovf.i4
ldc.i4 0x57751795
ceq
brtrue pass1
br throw0
cont1:
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
br go1
cont2:
br cont3
go1:
callvirt instance unsigned int64 unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
conv.ovf.i4
ldc.i4 0x57751795
ceq
brtrue pass1_5
throw0:
newobj instance void [mscorlib]System.Exception::.ctor()
throw1:
throw
pass1:
br cont0
pass2:
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
ldc.i4 0x57769795
conv.ovf.u8
callvirt instance void unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
unsigned int64)
ldnull
stloc matrix
call void [mscorlib]System.GC::Collect()
ldc.i4 100
ldstr "TEST PASSED"
call void [System.Console]System.Console::Write(string)
ret
cont0:
br cont2
cont3:
br cont1
pass1_5:
ldloc matrix
ldloc dim ldc.i4.0 ldelem.i4
ldloc dim ldc.i4.2 ldelem.i4
ldloc dim ldc.i4.4 ldelem.i4
ldloc dim ldc.i4.6 ldelem.i4
ldloc dim ldc.i4.8 ldelem.i4
ldloc dim ldc.i4 10 ldelem.i4
ldloc dim ldc.i4 12 ldelem.i4
ldloc dim ldc.i4 14 ldelem.i4
ldloc dim ldc.i4 16 ldelem.i4
ldloc dim ldc.i4 18 ldelem.i4
ldloc dim ldc.i4 20 ldelem.i4
ldloc dim ldc.i4 22 ldelem.i4
ldloc dim ldc.i4 24 ldelem.i4
ldloc dim ldc.i4 26 ldelem.i4
ldloc dim ldc.i4 28 ldelem.i4
ldloc dim ldc.i4 30 ldelem.i4
ldloc dim ldc.i4 32 ldelem.i4
ldloc dim ldc.i4 34 ldelem.i4
ldloc dim ldc.i4 36 ldelem.i4
ldloc dim ldc.i4 38 ldelem.i4
ldloc dim ldc.i4 40 ldelem.i4
ldloc dim ldc.i4 42 ldelem.i4
ldloc dim ldc.i4 44 ldelem.i4
ldloc dim ldc.i4 46 ldelem.i4
ldloc dim ldc.i4 48 ldelem.i4
ldloc dim ldc.i4 50 ldelem.i4
ldloc dim ldc.i4 52 ldelem.i4
ldloc dim ldc.i4 54 ldelem.i4
ldloc dim ldc.i4 56 ldelem.i4
ldloc dim ldc.i4 58 ldelem.i4
ldloc dim ldc.i4 60 ldelem.i4
ldloc dim ldc.i4 62 ldelem.i4
callvirt instance unsigned int64& unsigned int64[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Address(
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32,
int32, int32, int32, int32)
ldind.u8
conv.ovf.i4
ldc.i4 0x57751795
ceq
call void [mscorlib]System.GC::Collect()
brtrue pass2
newobj instance void [mscorlib]System.Exception::.ctor()
br throw1
} // end of method 'Test::Main'
.method public hidebysig specialname rtspecialname
instance void .ctor() il managed
{
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method 'Test::.ctor'
} // end of class 'Test'
} // end of namespace 'JitTest'
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/IL_Conformance/Old/Conformance_Base/neg_r8.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.class public _neg {
.method public static int32 r8(float64,float64) {
.maxstack 8
ldarg 0
neg
dup
call int32 _neg::checkfinite(float64)
ldc.i4 0x0
ceq
brtrue COMPARE
call int32 _neg::checkfinite(float64)
ldarg 1
call int32 _neg::checkfinite(float64)
ceq
br END
COMPARE:
ldarg 1
ceq
END:
ret
}
.method public static int32 checkfinite(float64) {
.maxstack 3
.locals (class [mscorlib]System.ArithmeticException)
try_start:
ldarg 0
ckfinite
pop
leave.s try_end
try_end:
ldc.i4 0x0
br FINISH
ae:
isinst [mscorlib]System.ArithmeticException
stloc 0x0
leave HEnd
HEnd:
ldloc 0x0
brfalse FAIL
ldarg 0
ldc.r8 float64(0xFFF0000000000000)
ceq
brtrue NINF
ldarg 0
ldc.r8 float64(0x7FF0000000000000)
ceq
brtrue PINF
br NaN
NINF:
ldc.i4 0x00000002
br FINISH
PINF:
ldc.i4 0x00000003
br FINISH
NaN:
ldc.i4 0x00000001
br FINISH
FAIL:
ldc.i4 0xFF
br FINISH
FINISH:
ret
.try try_start to try_end catch [mscorlib]System.ArithmeticException handler ae to HEnd
}
.method public void _neg() {
.maxstack 0
ret
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 5
ldc.r8 float64(0xFFF0000000000000)
ldc.r8 float64(0x7FF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0xBFF0000000000000)
ldc.r8 float64(0x3FF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x8000000000000000)
ldc.r8 float64(0x0000000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x0000000000000000)
ldc.r8 float64(0x8000000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x3FF0000000000000)
ldc.r8 float64(0xBFF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x7FF0000000000000)
ldc.r8 float64(0xFFF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x7FF8000000000000)
ldc.r8 float64(0x7FF8000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
PASS:
ldc.i4 100
br END
FAIL:
ldc.i4 0x00000000
END:
ret
}
}
.assembly neg_r8{}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.class public _neg {
.method public static int32 r8(float64,float64) {
.maxstack 8
ldarg 0
neg
dup
call int32 _neg::checkfinite(float64)
ldc.i4 0x0
ceq
brtrue COMPARE
call int32 _neg::checkfinite(float64)
ldarg 1
call int32 _neg::checkfinite(float64)
ceq
br END
COMPARE:
ldarg 1
ceq
END:
ret
}
.method public static int32 checkfinite(float64) {
.maxstack 3
.locals (class [mscorlib]System.ArithmeticException)
try_start:
ldarg 0
ckfinite
pop
leave.s try_end
try_end:
ldc.i4 0x0
br FINISH
ae:
isinst [mscorlib]System.ArithmeticException
stloc 0x0
leave HEnd
HEnd:
ldloc 0x0
brfalse FAIL
ldarg 0
ldc.r8 float64(0xFFF0000000000000)
ceq
brtrue NINF
ldarg 0
ldc.r8 float64(0x7FF0000000000000)
ceq
brtrue PINF
br NaN
NINF:
ldc.i4 0x00000002
br FINISH
PINF:
ldc.i4 0x00000003
br FINISH
NaN:
ldc.i4 0x00000001
br FINISH
FAIL:
ldc.i4 0xFF
br FINISH
FINISH:
ret
.try try_start to try_end catch [mscorlib]System.ArithmeticException handler ae to HEnd
}
.method public void _neg() {
.maxstack 0
ret
}
.method public static int32 main(class [mscorlib]System.String[]) {
.entrypoint
.maxstack 5
ldc.r8 float64(0xFFF0000000000000)
ldc.r8 float64(0x7FF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0xBFF0000000000000)
ldc.r8 float64(0x3FF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x8000000000000000)
ldc.r8 float64(0x0000000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x0000000000000000)
ldc.r8 float64(0x8000000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x3FF0000000000000)
ldc.r8 float64(0xBFF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x7FEFFFFFFFFFFFFF)
ldc.r8 float64(0xFFEFFFFFFFFFFFFF)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x7FF0000000000000)
ldc.r8 float64(0xFFF0000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
ldc.r8 float64(0x7FF8000000000000)
ldc.r8 float64(0x7FF8000000000000)
call int32 _neg::r8(float64,float64)
brfalse FAIL
PASS:
ldc.i4 100
br END
FAIL:
ldc.i4 0x00000000
END:
ret
}
}
.assembly neg_r8{}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/JitBlue/GitHub_CoreRT_2073/GitHub_CoreRT_2073.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// Test for a issue when tail call with small return type
// doesn't pass tail call pattern assert.
// In addition there is "call->branch on return->return" tail call pattern check.
.assembly extern mscorlib {}
.assembly GitHub_CoreRT_2073 {}
.assembly extern xunit.core {}
.class public Test_GitHub_CoreRT_2073
{
.method private hidebysig static bool tailAsgReturn(int32 deep) cil managed
{
// Code size 24 (0x18)
.maxstack 20
IL_0000: ldarg.0
IL_0001: ldc.i4.s -100
IL_0003: bgt.s IL_0007
IL_0005: ldc.i4.1
IL_0006: ret
IL_0007: ldarg.0
IL_0008: ldc.i4.0
IL_0009: bgt.s IL_000f
IL_000a: ldarg.0
IL_000b: ldc.i4.1
IL_000c: sub
IL_000d: call bool Test_GitHub_CoreRT_2073::tailAsgReturn(int32)
IL_000e: br IL_0017
IL_000f: ldarg.0
IL_0010: ldc.i4.2
IL_0011: sub
IL_0012: call bool Test_GitHub_CoreRT_2073::tailAsgReturn(int32)
IL_0017: ret
} // end of method Test::tailAsgReturn
.method public hidebysig static int32 Main(string[] args) cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
// Code size 14 (0xe)
.maxstack 8
IL_0000: ldc.i4.s 100
IL_0002: call bool Test_GitHub_CoreRT_2073::tailAsgReturn(int32)
IL_0007: brtrue.s IL_000b
IL_0009: ldc.i4.m1
IL_000a: ret
IL_000b: ldc.i4.s 100
IL_000d: ret
} // end of method Test::Main
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// Test for a issue when tail call with small return type
// doesn't pass tail call pattern assert.
// In addition there is "call->branch on return->return" tail call pattern check.
.assembly extern mscorlib {}
.assembly GitHub_CoreRT_2073 {}
.assembly extern xunit.core {}
.class public Test_GitHub_CoreRT_2073
{
.method private hidebysig static bool tailAsgReturn(int32 deep) cil managed
{
// Code size 24 (0x18)
.maxstack 20
IL_0000: ldarg.0
IL_0001: ldc.i4.s -100
IL_0003: bgt.s IL_0007
IL_0005: ldc.i4.1
IL_0006: ret
IL_0007: ldarg.0
IL_0008: ldc.i4.0
IL_0009: bgt.s IL_000f
IL_000a: ldarg.0
IL_000b: ldc.i4.1
IL_000c: sub
IL_000d: call bool Test_GitHub_CoreRT_2073::tailAsgReturn(int32)
IL_000e: br IL_0017
IL_000f: ldarg.0
IL_0010: ldc.i4.2
IL_0011: sub
IL_0012: call bool Test_GitHub_CoreRT_2073::tailAsgReturn(int32)
IL_0017: ret
} // end of method Test::tailAsgReturn
.method public hidebysig static int32 Main(string[] args) cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
// Code size 14 (0xe)
.maxstack 8
IL_0000: ldc.i4.s 100
IL_0002: call bool Test_GitHub_CoreRT_2073::tailAsgReturn(int32)
IL_0007: brtrue.s IL_000b
IL_0009: ldc.i4.m1
IL_000a: ret
IL_000b: ldc.i4.s 100
IL_000d: ret
} // end of method Test::Main
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b47885/b47885.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'b47885' {}
.assembly extern xunit.core {}
.class ILGEN_0x1245f15f {
.method static int32 Method_0x5753b424(int16 Arg_0x0, int8 Arg_0x1, unsigned int16 Arg_0x2, int32 Arg_0x3, int16 Arg_0x4, float32 Arg_0x5, unsigned int16 Arg_0x6) {
.maxstack 7
.locals (int8[] local_0x0,float64[] local_0x1,float32[] local_0x2,int64[] local_0x3)
ldc.i4 255
newarr [mscorlib]System.SByte
stloc local_0x0
ldc.i4 255
newarr [mscorlib]System.Double
stloc local_0x1
ldarg Arg_0x5
conv.i4
ldc.i4 55
blt Branch_0x0
ldarg Arg_0x3
conv.i8
br Branch_0x1
Branch_0x0:
ldarg Arg_0x1
conv.i8
Branch_0x1:
ldc.i4.8
ldc.i8 0x524fbc96537b4f85
ldc.i8 0x4e2c83efa4379e43
ble.un Branch_0x8
ldc.i4.5
br Branch_0x9
Branch_0x8:
ldarg Arg_0x1
Branch_0x9:
beq Branch_0x6
ldc.i8 0xb9d575bda01ea119
br Branch_0x7
Branch_0x6:
ldc.i8 0xe59b051084e14e53
ldc.i8 0x689ef78e5d0de1f8
blt.un Branch_0xa
ldc.i8 0x37723f075b3bf0d
br Branch_0xb
Branch_0xa:
ldc.i8 0xeb77a60e346e2cc6
Branch_0xb:
Branch_0x7:
ceq
ret
}
.method static int32 Main() {
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 20
ldc.i4 0x715aa05a
ldc.i4 0x383a16ab
ldc.i4 0x2a1ddbb4
ldc.i4 0x5942b5d0
ldc.i4 0xcad9a380
ldc.r4 float32(0xcf634e06)
ldc.i4 0xfedace57
call int32 ILGEN_0x1245f15f::Method_0x5753b424(int16 Arg_0x0, int8 Arg_0x1, unsigned int16 Arg_0x2, int32 Arg_0x3, int16 Arg_0x4, float32 Arg_0x5, unsigned int16 Arg_0x6)
ldc.i4 100
add
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern legacy library mscorlib {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly 'b47885' {}
.assembly extern xunit.core {}
.class ILGEN_0x1245f15f {
.method static int32 Method_0x5753b424(int16 Arg_0x0, int8 Arg_0x1, unsigned int16 Arg_0x2, int32 Arg_0x3, int16 Arg_0x4, float32 Arg_0x5, unsigned int16 Arg_0x6) {
.maxstack 7
.locals (int8[] local_0x0,float64[] local_0x1,float32[] local_0x2,int64[] local_0x3)
ldc.i4 255
newarr [mscorlib]System.SByte
stloc local_0x0
ldc.i4 255
newarr [mscorlib]System.Double
stloc local_0x1
ldarg Arg_0x5
conv.i4
ldc.i4 55
blt Branch_0x0
ldarg Arg_0x3
conv.i8
br Branch_0x1
Branch_0x0:
ldarg Arg_0x1
conv.i8
Branch_0x1:
ldc.i4.8
ldc.i8 0x524fbc96537b4f85
ldc.i8 0x4e2c83efa4379e43
ble.un Branch_0x8
ldc.i4.5
br Branch_0x9
Branch_0x8:
ldarg Arg_0x1
Branch_0x9:
beq Branch_0x6
ldc.i8 0xb9d575bda01ea119
br Branch_0x7
Branch_0x6:
ldc.i8 0xe59b051084e14e53
ldc.i8 0x689ef78e5d0de1f8
blt.un Branch_0xa
ldc.i8 0x37723f075b3bf0d
br Branch_0xb
Branch_0xa:
ldc.i8 0xeb77a60e346e2cc6
Branch_0xb:
Branch_0x7:
ceq
ret
}
.method static int32 Main() {
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 20
ldc.i4 0x715aa05a
ldc.i4 0x383a16ab
ldc.i4 0x2a1ddbb4
ldc.i4 0x5942b5d0
ldc.i4 0xcad9a380
ldc.r4 float32(0xcf634e06)
ldc.i4 0xfedace57
call int32 ILGEN_0x1245f15f::Method_0x5753b424(int16 Arg_0x0, int8 Arg_0x1, unsigned int16 Arg_0x2, int32 Arg_0x3, int16 Arg_0x4, float32 Arg_0x5, unsigned int16 Arg_0x6)
ldc.i4 100
add
ret
}
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/JIT/opt/DumpDisasm/JitMinOpts/CodeSize1.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// DEFAULT_MIN_OPTS_CODE_SIZE 60000
// Code size 60001 (0xea61)
// OPTIONS: opts.MinOpts() == true
.assembly extern mscorlib { }
.assembly extern xunit.core {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly CodeSize1 {}
.class private auto ansi beforefieldinit CodeSize1
extends [mscorlib]System.Object
{
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 3
.locals init (int32 V_0,
int32 V_1,
int32 V_2,
int32 V_3,
int32 V_4,
class [mscorlib]System.Random V_5,
int32 V_6,
int32 V_7,
int32 V_8,
int32 V_9,
int32 V_10,
int32 V_11)
IL_0000: ldc.i4.1
IL_0001: stloc.0
IL_0002: ldc.i4.2
IL_0003: stloc.1
IL_0004: ldc.i4.3
IL_0005: stloc.2
IL_0006: ldc.i4.4
IL_0007: stloc.3
IL_0008: ldc.i4.5
IL_0009: stloc.s V_4
IL_000b: newobj instance void [mscorlib]System.Random::.ctor()
IL_0010: stloc.s V_5
IL_0012: ldloc.s V_5
IL_0014: ldc.i4.1
IL_0015: ldc.i4.s 100
IL_0017: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_001c: stloc.s V_6
IL_001e: ldloc.s V_5
IL_0020: ldc.i4.1
IL_0021: ldc.i4.s 100
IL_0023: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_0028: stloc.s V_7
IL_002a: ldloc.s V_5
IL_002c: ldc.i4.1
IL_002d: ldc.i4.s 100
IL_002f: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_0034: stloc.s V_8
IL_0036: ldloc.s V_5
IL_0038: ldc.i4.1
IL_0039: ldc.i4.s 100
IL_003b: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_0040: stloc.s V_9
IL_0042: ldloc.s V_5
IL_0044: ldc.i4.1
IL_0045: ldc.i4.s 100
IL_0047: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_004c: stloc.s V_10
IL_004e: ldloc.s V_6
IL_0050: ldloc.s V_7
IL_0052: bge.s IL_009c
IL_0054: ldloc.s V_10
IL_0056: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_005b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0060: stloc.s V_8
IL_0062: ldloc.s V_7
IL_0064: call string [mscorlib]System.Convert::ToString(int32)
IL_0069: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_006e: stloc.s V_7
IL_0070: ldloc.s V_10
IL_0072: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0077: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_007c: stloc.s V_8
IL_007e: ldloc.s V_7
IL_0080: call string [mscorlib]System.Convert::ToString(int32)
IL_0085: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_008a: stloc.s V_6
IL_008c: ldloc.s V_7
IL_008e: call string [mscorlib]System.Convert::ToString(int32)
IL_0093: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0098: stloc.s V_8
IL_009a: br.s IL_00e2
IL_009c: ldloc.s V_10
IL_009e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_00a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_00a8: stloc.s V_8
IL_00aa: ldloc.s V_10
IL_00ac: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_00b1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_00b6: stloc.s V_7
IL_00b8: ldloc.s V_7
IL_00ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_00bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_00c4: stloc.s V_10
IL_00c6: ldloc.s V_8
IL_00c8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_00cd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_00d2: stloc.s V_9
IL_00d4: ldloc.s V_7
IL_00d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_00db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_00e0: stloc.s V_8
IL_00e2: ldloc.s V_9
IL_00e4: ldloc.s V_6
IL_00e6: bgt.s IL_0130
IL_00e8: ldloc.s V_6
IL_00ea: call string [mscorlib]System.Convert::ToString(int32)
IL_00ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_00f4: stloc.s V_6
IL_00f6: ldloc.s V_10
IL_00f8: call string [mscorlib]System.Convert::ToString(int32)
IL_00fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0102: stloc.s V_6
IL_0104: ldloc.s V_7
IL_0106: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_010b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0110: stloc.s V_6
IL_0112: ldloc.s V_7
IL_0114: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0119: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_011e: stloc.s V_8
IL_0120: ldloc.s V_6
IL_0122: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0127: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_012c: stloc.s V_7
IL_012e: br.s IL_0176
IL_0130: ldloc.s V_6
IL_0132: call string [mscorlib]System.Convert::ToString(int32)
IL_0137: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_013c: stloc.s V_9
IL_013e: ldloc.s V_7
IL_0140: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0145: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_014a: stloc.s V_7
IL_014c: ldloc.s V_10
IL_014e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0153: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0158: stloc.s V_7
IL_015a: ldloc.s V_7
IL_015c: call string [mscorlib]System.Convert::ToString(int32)
IL_0161: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0166: stloc.s V_9
IL_0168: ldloc.s V_9
IL_016a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_016f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0174: stloc.s V_10
IL_0176: ldloc.s V_8
IL_0178: ldloc.s V_10
IL_017a: bgt.s IL_01c4
IL_017c: ldloc.s V_6
IL_017e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0183: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0188: stloc.s V_7
IL_018a: ldloc.s V_7
IL_018c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0191: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0196: stloc.s V_7
IL_0198: ldloc.s V_10
IL_019a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_019f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_01a4: stloc.s V_10
IL_01a6: ldloc.s V_7
IL_01a8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_01ad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_01b2: stloc.s V_9
IL_01b4: ldloc.s V_6
IL_01b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_01bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_01c0: stloc.s V_10
IL_01c2: br.s IL_020a
IL_01c4: ldloc.s V_8
IL_01c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_01cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_01d0: stloc.s V_8
IL_01d2: ldloc.s V_10
IL_01d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_01d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_01de: stloc.s V_7
IL_01e0: ldloc.s V_6
IL_01e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_01e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_01ec: stloc.s V_9
IL_01ee: ldloc.s V_6
IL_01f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_01f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_01fa: stloc.s V_7
IL_01fc: ldloc.s V_6
IL_01fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0203: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0208: stloc.s V_9
IL_020a: ldloc.s V_10
IL_020c: ldloc.s V_8
IL_020e: bgt.s IL_0258
IL_0210: ldloc.s V_10
IL_0212: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0217: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_021c: stloc.s V_8
IL_021e: ldloc.s V_7
IL_0220: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0225: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_022a: stloc.s V_6
IL_022c: ldloc.s V_9
IL_022e: call string [mscorlib]System.Convert::ToString(int32)
IL_0233: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0238: stloc.s V_9
IL_023a: ldloc.s V_6
IL_023c: call string [mscorlib]System.Convert::ToString(int32)
IL_0241: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0246: stloc.s V_8
IL_0248: ldloc.s V_7
IL_024a: call string [mscorlib]System.Convert::ToString(int32)
IL_024f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0254: stloc.s V_8
IL_0256: br.s IL_029e
IL_0258: ldloc.s V_10
IL_025a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_025f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0264: stloc.s V_6
IL_0266: ldloc.s V_7
IL_0268: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_026d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0272: stloc.s V_7
IL_0274: ldloc.s V_9
IL_0276: call string [mscorlib]System.Convert::ToString(int32)
IL_027b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0280: stloc.s V_10
IL_0282: ldloc.s V_10
IL_0284: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0289: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_028e: stloc.s V_10
IL_0290: ldloc.s V_10
IL_0292: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0297: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_029c: stloc.s V_6
IL_029e: ldloc.s V_6
IL_02a0: ldloc.s V_8
IL_02a2: bne.un.s IL_02ec
IL_02a4: ldloc.s V_7
IL_02a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_02ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_02b0: stloc.s V_10
IL_02b2: ldloc.s V_8
IL_02b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_02b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_02be: stloc.s V_6
IL_02c0: ldloc.s V_9
IL_02c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_02c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_02cc: stloc.s V_6
IL_02ce: ldloc.s V_6
IL_02d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_02d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_02da: stloc.s V_6
IL_02dc: ldloc.s V_10
IL_02de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_02e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_02e8: stloc.s V_6
IL_02ea: br.s IL_0332
IL_02ec: ldloc.s V_10
IL_02ee: call string [mscorlib]System.Convert::ToString(int32)
IL_02f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_02f8: stloc.s V_10
IL_02fa: ldloc.s V_8
IL_02fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0301: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0306: stloc.s V_6
IL_0308: ldloc.s V_8
IL_030a: call string [mscorlib]System.Convert::ToString(int32)
IL_030f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0314: stloc.s V_6
IL_0316: ldloc.s V_8
IL_0318: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_031d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0322: stloc.s V_7
IL_0324: ldloc.s V_7
IL_0326: call string [mscorlib]System.Convert::ToString(int32)
IL_032b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0330: stloc.s V_8
IL_0332: ldloc.s V_9
IL_0334: ldloc.s V_8
IL_0336: beq.s IL_0380
IL_0338: ldloc.s V_7
IL_033a: call string [mscorlib]System.Convert::ToString(int32)
IL_033f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0344: stloc.s V_8
IL_0346: ldloc.s V_6
IL_0348: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_034d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0352: stloc.s V_6
IL_0354: ldloc.s V_10
IL_0356: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_035b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0360: stloc.s V_8
IL_0362: ldloc.s V_7
IL_0364: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0369: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_036e: stloc.s V_9
IL_0370: ldloc.s V_7
IL_0372: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0377: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_037c: stloc.s V_8
IL_037e: br.s IL_03c6
IL_0380: ldloc.s V_8
IL_0382: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0387: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_038c: stloc.s V_6
IL_038e: ldloc.s V_10
IL_0390: call string [mscorlib]System.Convert::ToString(int32)
IL_0395: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_039a: stloc.s V_10
IL_039c: ldloc.s V_10
IL_039e: call string [mscorlib]System.Convert::ToString(int32)
IL_03a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03a8: stloc.s V_6
IL_03aa: ldloc.s V_6
IL_03ac: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_03b1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_03b6: stloc.s V_9
IL_03b8: ldloc.s V_10
IL_03ba: call string [mscorlib]System.Convert::ToString(int32)
IL_03bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03c4: stloc.s V_6
IL_03c6: ldloc.s V_6
IL_03c8: ldloc.s V_8
IL_03ca: bge.s IL_0414
IL_03cc: ldloc.s V_6
IL_03ce: call string [mscorlib]System.Convert::ToString(int32)
IL_03d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03d8: stloc.s V_8
IL_03da: ldloc.s V_9
IL_03dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_03e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_03e6: stloc.s V_9
IL_03e8: ldloc.s V_10
IL_03ea: call string [mscorlib]System.Convert::ToString(int32)
IL_03ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03f4: stloc.s V_9
IL_03f6: ldloc.s V_9
IL_03f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_03fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0402: stloc.s V_9
IL_0404: ldloc.s V_7
IL_0406: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_040b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0410: stloc.s V_7
IL_0412: br.s IL_045a
IL_0414: ldloc.s V_7
IL_0416: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_041b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0420: stloc.s V_7
IL_0422: ldloc.s V_6
IL_0424: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0429: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_042e: stloc.s V_10
IL_0430: ldloc.s V_10
IL_0432: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0437: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_043c: stloc.s V_9
IL_043e: ldloc.s V_6
IL_0440: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0445: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_044a: stloc.s V_7
IL_044c: ldloc.s V_9
IL_044e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0453: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0458: stloc.s V_6
IL_045a: ldloc.s V_8
IL_045c: ldloc.s V_10
IL_045e: beq.s IL_04a8
IL_0460: ldloc.s V_7
IL_0462: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0467: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_046c: stloc.s V_10
IL_046e: ldloc.s V_8
IL_0470: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0475: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_047a: stloc.s V_6
IL_047c: ldloc.s V_6
IL_047e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0483: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0488: stloc.s V_10
IL_048a: ldloc.s V_7
IL_048c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0491: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0496: stloc.s V_10
IL_0498: ldloc.s V_6
IL_049a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_049f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_04a4: stloc.s V_7
IL_04a6: br.s IL_04ee
IL_04a8: ldloc.s V_7
IL_04aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_04af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_04b4: stloc.s V_9
IL_04b6: ldloc.s V_6
IL_04b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_04bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_04c2: stloc.s V_9
IL_04c4: ldloc.s V_7
IL_04c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_04cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_04d0: stloc.s V_8
IL_04d2: ldloc.s V_8
IL_04d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_04d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_04de: stloc.s V_7
IL_04e0: ldloc.s V_7
IL_04e2: call string [mscorlib]System.Convert::ToString(int32)
IL_04e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_04ec: stloc.s V_9
IL_04ee: ldloc.s V_9
IL_04f0: ldloc.s V_6
IL_04f2: blt.s IL_053c
IL_04f4: ldloc.s V_10
IL_04f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_04fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0500: stloc.s V_9
IL_0502: ldloc.s V_10
IL_0504: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0509: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_050e: stloc.s V_6
IL_0510: ldloc.s V_10
IL_0512: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0517: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_051c: stloc.s V_9
IL_051e: ldloc.s V_10
IL_0520: call string [mscorlib]System.Convert::ToString(int32)
IL_0525: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_052a: stloc.s V_10
IL_052c: ldloc.s V_6
IL_052e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0533: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0538: stloc.s V_9
IL_053a: br.s IL_0582
IL_053c: ldloc.s V_8
IL_053e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0543: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0548: stloc.s V_6
IL_054a: ldloc.s V_10
IL_054c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0551: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0556: stloc.s V_7
IL_0558: ldloc.s V_6
IL_055a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_055f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0564: stloc.s V_9
IL_0566: ldloc.s V_6
IL_0568: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_056d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0572: stloc.s V_6
IL_0574: ldloc.s V_8
IL_0576: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_057b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0580: stloc.s V_6
IL_0582: ldloc.s V_8
IL_0584: ldloc.s V_9
IL_0586: beq.s IL_05d0
IL_0588: ldloc.s V_6
IL_058a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_058f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0594: stloc.s V_7
IL_0596: ldloc.s V_9
IL_0598: call string [mscorlib]System.Convert::ToString(int32)
IL_059d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05a2: stloc.s V_6
IL_05a4: ldloc.s V_8
IL_05a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_05ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_05b0: stloc.s V_7
IL_05b2: ldloc.s V_6
IL_05b4: call string [mscorlib]System.Convert::ToString(int32)
IL_05b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05be: stloc.s V_7
IL_05c0: ldloc.s V_6
IL_05c2: call string [mscorlib]System.Convert::ToString(int32)
IL_05c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05cc: stloc.s V_7
IL_05ce: br.s IL_0616
IL_05d0: ldloc.s V_7
IL_05d2: call string [mscorlib]System.Convert::ToString(int32)
IL_05d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05dc: stloc.s V_7
IL_05de: ldloc.s V_8
IL_05e0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_05e5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_05ea: stloc.s V_9
IL_05ec: ldloc.s V_10
IL_05ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_05f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_05f8: stloc.s V_6
IL_05fa: ldloc.s V_7
IL_05fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0601: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0606: stloc.s V_10
IL_0608: ldloc.s V_10
IL_060a: call string [mscorlib]System.Convert::ToString(int32)
IL_060f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0614: stloc.s V_10
IL_0616: ldloc.s V_6
IL_0618: ldloc.s V_6
IL_061a: blt.s IL_0664
IL_061c: ldloc.s V_9
IL_061e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0623: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0628: stloc.s V_6
IL_062a: ldloc.s V_8
IL_062c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0631: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0636: stloc.s V_6
IL_0638: ldloc.s V_7
IL_063a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_063f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0644: stloc.s V_9
IL_0646: ldloc.s V_10
IL_0648: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_064d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0652: stloc.s V_8
IL_0654: ldloc.s V_6
IL_0656: call string [mscorlib]System.Convert::ToString(int32)
IL_065b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0660: stloc.s V_10
IL_0662: br.s IL_06aa
IL_0664: ldloc.s V_8
IL_0666: call string [mscorlib]System.Convert::ToString(int32)
IL_066b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0670: stloc.s V_10
IL_0672: ldloc.s V_9
IL_0674: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0679: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_067e: stloc.s V_6
IL_0680: ldloc.s V_7
IL_0682: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0687: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_068c: stloc.s V_7
IL_068e: ldloc.s V_9
IL_0690: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0695: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_069a: stloc.s V_6
IL_069c: ldloc.s V_7
IL_069e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_06a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_06a8: stloc.s V_7
IL_06aa: ldloc.s V_10
IL_06ac: ldloc.s V_8
IL_06ae: bne.un.s IL_06f8
IL_06b0: ldloc.s V_7
IL_06b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_06b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_06bc: stloc.s V_6
IL_06be: ldloc.s V_9
IL_06c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_06c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_06ca: stloc.s V_8
IL_06cc: ldloc.s V_9
IL_06ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_06d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_06d8: stloc.s V_9
IL_06da: ldloc.s V_9
IL_06dc: call string [mscorlib]System.Convert::ToString(int32)
IL_06e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_06e6: stloc.s V_7
IL_06e8: ldloc.s V_7
IL_06ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_06ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_06f4: stloc.s V_10
IL_06f6: br.s IL_073e
IL_06f8: ldloc.s V_10
IL_06fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_06ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0704: stloc.s V_7
IL_0706: ldloc.s V_10
IL_0708: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_070d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0712: stloc.s V_7
IL_0714: ldloc.s V_7
IL_0716: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_071b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0720: stloc.s V_8
IL_0722: ldloc.s V_9
IL_0724: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0729: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_072e: stloc.s V_7
IL_0730: ldloc.s V_9
IL_0732: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0737: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_073c: stloc.s V_10
IL_073e: ldloc.s V_9
IL_0740: ldloc.s V_8
IL_0742: beq.s IL_078c
IL_0744: ldloc.s V_8
IL_0746: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_074b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0750: stloc.s V_8
IL_0752: ldloc.s V_8
IL_0754: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0759: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_075e: stloc.s V_10
IL_0760: ldloc.s V_6
IL_0762: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0767: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_076c: stloc.s V_10
IL_076e: ldloc.s V_8
IL_0770: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0775: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_077a: stloc.s V_10
IL_077c: ldloc.s V_7
IL_077e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0783: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0788: stloc.s V_9
IL_078a: br.s IL_07d2
IL_078c: ldloc.s V_8
IL_078e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0793: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0798: stloc.s V_7
IL_079a: ldloc.s V_8
IL_079c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07a1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_07a6: stloc.s V_7
IL_07a8: ldloc.s V_7
IL_07aa: call string [mscorlib]System.Convert::ToString(int32)
IL_07af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_07b4: stloc.s V_8
IL_07b6: ldloc.s V_7
IL_07b8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_07bd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_07c2: stloc.s V_6
IL_07c4: ldloc.s V_8
IL_07c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_07cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_07d0: stloc.s V_6
IL_07d2: ldloc.s V_7
IL_07d4: ldloc.s V_10
IL_07d6: beq.s IL_0820
IL_07d8: ldloc.s V_6
IL_07da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_07e4: stloc.s V_6
IL_07e6: ldloc.s V_8
IL_07e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_07f2: stloc.s V_9
IL_07f4: ldloc.s V_6
IL_07f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0800: stloc.s V_8
IL_0802: ldloc.s V_10
IL_0804: call string [mscorlib]System.Convert::ToString(int32)
IL_0809: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_080e: stloc.s V_9
IL_0810: ldloc.s V_9
IL_0812: call string [mscorlib]System.Convert::ToString(int32)
IL_0817: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_081c: stloc.s V_9
IL_081e: br.s IL_0866
IL_0820: ldloc.s V_7
IL_0822: call string [mscorlib]System.Convert::ToString(int32)
IL_0827: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_082c: stloc.s V_7
IL_082e: ldloc.s V_7
IL_0830: call string [mscorlib]System.Convert::ToString(int32)
IL_0835: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_083a: stloc.s V_7
IL_083c: ldloc.s V_7
IL_083e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0843: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0848: stloc.s V_6
IL_084a: ldloc.s V_7
IL_084c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0851: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0856: stloc.s V_7
IL_0858: ldloc.s V_8
IL_085a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_085f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0864: stloc.s V_6
IL_0866: ldloc.s V_10
IL_0868: ldloc.s V_9
IL_086a: bgt.s IL_08b4
IL_086c: ldloc.s V_10
IL_086e: call string [mscorlib]System.Convert::ToString(int32)
IL_0873: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0878: stloc.s V_9
IL_087a: ldloc.s V_9
IL_087c: call string [mscorlib]System.Convert::ToString(int32)
IL_0881: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0886: stloc.s V_7
IL_0888: ldloc.s V_6
IL_088a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_088f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0894: stloc.s V_6
IL_0896: ldloc.s V_10
IL_0898: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_089d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_08a2: stloc.s V_8
IL_08a4: ldloc.s V_9
IL_08a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_08ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_08b0: stloc.s V_7
IL_08b2: br.s IL_08fa
IL_08b4: ldloc.s V_7
IL_08b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_08bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_08c0: stloc.s V_9
IL_08c2: ldloc.s V_9
IL_08c4: call string [mscorlib]System.Convert::ToString(int32)
IL_08c9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_08ce: stloc.s V_7
IL_08d0: ldloc.s V_8
IL_08d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_08d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_08dc: stloc.s V_9
IL_08de: ldloc.s V_8
IL_08e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_08e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_08ea: stloc.s V_10
IL_08ec: ldloc.s V_8
IL_08ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_08f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_08f8: stloc.s V_6
IL_08fa: ldloc.s V_7
IL_08fc: ldloc.s V_9
IL_08fe: bgt.s IL_0948
IL_0900: ldloc.s V_10
IL_0902: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0907: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_090c: stloc.s V_6
IL_090e: ldloc.s V_6
IL_0910: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0915: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_091a: stloc.s V_9
IL_091c: ldloc.s V_10
IL_091e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0923: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0928: stloc.s V_8
IL_092a: ldloc.s V_6
IL_092c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0931: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0936: stloc.s V_6
IL_0938: ldloc.s V_8
IL_093a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_093f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0944: stloc.s V_7
IL_0946: br.s IL_098e
IL_0948: ldloc.s V_10
IL_094a: call string [mscorlib]System.Convert::ToString(int32)
IL_094f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0954: stloc.s V_9
IL_0956: ldloc.s V_6
IL_0958: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_095d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0962: stloc.s V_6
IL_0964: ldloc.s V_9
IL_0966: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_096b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0970: stloc.s V_6
IL_0972: ldloc.s V_6
IL_0974: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0979: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_097e: stloc.s V_7
IL_0980: ldloc.s V_8
IL_0982: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0987: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_098c: stloc.s V_7
IL_098e: ldloc.s V_10
IL_0990: ldloc.s V_8
IL_0992: blt.s IL_09dc
IL_0994: ldloc.s V_8
IL_0996: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_099b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_09a0: stloc.s V_6
IL_09a2: ldloc.s V_9
IL_09a4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_09a9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_09ae: stloc.s V_9
IL_09b0: ldloc.s V_8
IL_09b2: call string [mscorlib]System.Convert::ToString(int32)
IL_09b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_09bc: stloc.s V_7
IL_09be: ldloc.s V_8
IL_09c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_09c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_09ca: stloc.s V_9
IL_09cc: ldloc.s V_8
IL_09ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_09d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_09d8: stloc.s V_8
IL_09da: br.s IL_0a22
IL_09dc: ldloc.s V_10
IL_09de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_09e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_09e8: stloc.s V_10
IL_09ea: ldloc.s V_10
IL_09ec: call string [mscorlib]System.Convert::ToString(int32)
IL_09f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_09f6: stloc.s V_9
IL_09f8: ldloc.s V_10
IL_09fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_09ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a04: stloc.s V_8
IL_0a06: ldloc.s V_8
IL_0a08: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0a0d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0a12: stloc.s V_7
IL_0a14: ldloc.s V_7
IL_0a16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0a1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a20: stloc.s V_10
IL_0a22: ldloc.s V_9
IL_0a24: ldloc.s V_8
IL_0a26: blt.s IL_0a70
IL_0a28: ldloc.s V_9
IL_0a2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0a2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a34: stloc.s V_8
IL_0a36: ldloc.s V_9
IL_0a38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a42: stloc.s V_6
IL_0a44: ldloc.s V_9
IL_0a46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a50: stloc.s V_6
IL_0a52: ldloc.s V_9
IL_0a54: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0a59: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a5e: stloc.s V_9
IL_0a60: ldloc.s V_10
IL_0a62: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a67: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a6c: stloc.s V_6
IL_0a6e: br.s IL_0ab6
IL_0a70: ldloc.s V_8
IL_0a72: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0a77: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0a7c: stloc.s V_8
IL_0a7e: ldloc.s V_8
IL_0a80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a8a: stloc.s V_8
IL_0a8c: ldloc.s V_6
IL_0a8e: call string [mscorlib]System.Convert::ToString(int32)
IL_0a93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0a98: stloc.s V_8
IL_0a9a: ldloc.s V_8
IL_0a9c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0aa1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0aa6: stloc.s V_8
IL_0aa8: ldloc.s V_8
IL_0aaa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0aaf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ab4: stloc.s V_6
IL_0ab6: ldloc.s V_7
IL_0ab8: ldloc.s V_9
IL_0aba: bge.s IL_0b04
IL_0abc: ldloc.s V_7
IL_0abe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0ac3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0ac8: stloc.s V_6
IL_0aca: ldloc.s V_8
IL_0acc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0ad1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0ad6: stloc.s V_9
IL_0ad8: ldloc.s V_9
IL_0ada: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0adf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ae4: stloc.s V_6
IL_0ae6: ldloc.s V_10
IL_0ae8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0aed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0af2: stloc.s V_7
IL_0af4: ldloc.s V_8
IL_0af6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0afb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0b00: stloc.s V_7
IL_0b02: br.s IL_0b4a
IL_0b04: ldloc.s V_10
IL_0b06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0b0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0b10: stloc.s V_9
IL_0b12: ldloc.s V_10
IL_0b14: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b19: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b1e: stloc.s V_9
IL_0b20: ldloc.s V_8
IL_0b22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b2c: stloc.s V_6
IL_0b2e: ldloc.s V_8
IL_0b30: call string [mscorlib]System.Convert::ToString(int32)
IL_0b35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0b3a: stloc.s V_9
IL_0b3c: ldloc.s V_8
IL_0b3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b48: stloc.s V_7
IL_0b4a: ldloc.s V_8
IL_0b4c: ldloc.s V_10
IL_0b4e: ble.s IL_0b98
IL_0b50: ldloc.s V_6
IL_0b52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0b57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0b5c: stloc.s V_10
IL_0b5e: ldloc.s V_8
IL_0b60: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b65: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b6a: stloc.s V_9
IL_0b6c: ldloc.s V_8
IL_0b6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0b73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0b78: stloc.s V_10
IL_0b7a: ldloc.s V_9
IL_0b7c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0b81: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0b86: stloc.s V_9
IL_0b88: ldloc.s V_7
IL_0b8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0b8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0b94: stloc.s V_6
IL_0b96: br.s IL_0bde
IL_0b98: ldloc.s V_10
IL_0b9a: call string [mscorlib]System.Convert::ToString(int32)
IL_0b9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ba4: stloc.s V_10
IL_0ba6: ldloc.s V_7
IL_0ba8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0bad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0bb2: stloc.s V_9
IL_0bb4: ldloc.s V_10
IL_0bb6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0bbb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0bc0: stloc.s V_10
IL_0bc2: ldloc.s V_7
IL_0bc4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0bc9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0bce: stloc.s V_9
IL_0bd0: ldloc.s V_8
IL_0bd2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0bd7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0bdc: stloc.s V_6
IL_0bde: ldloc.s V_7
IL_0be0: ldloc.s V_8
IL_0be2: bge.s IL_0c2c
IL_0be4: ldloc.s V_6
IL_0be6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0beb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0bf0: stloc.s V_10
IL_0bf2: ldloc.s V_8
IL_0bf4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0bf9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0bfe: stloc.s V_8
IL_0c00: ldloc.s V_8
IL_0c02: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0c07: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0c0c: stloc.s V_7
IL_0c0e: ldloc.s V_9
IL_0c10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c1a: stloc.s V_8
IL_0c1c: ldloc.s V_8
IL_0c1e: call string [mscorlib]System.Convert::ToString(int32)
IL_0c23: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0c28: stloc.s V_10
IL_0c2a: br.s IL_0c72
IL_0c2c: ldloc.s V_8
IL_0c2e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c33: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c38: stloc.s V_6
IL_0c3a: ldloc.s V_10
IL_0c3c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c41: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c46: stloc.s V_8
IL_0c48: ldloc.s V_6
IL_0c4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0c4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0c54: stloc.s V_9
IL_0c56: ldloc.s V_9
IL_0c58: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0c5d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0c62: stloc.s V_6
IL_0c64: ldloc.s V_7
IL_0c66: call string [mscorlib]System.Convert::ToString(int32)
IL_0c6b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0c70: stloc.s V_7
IL_0c72: ldloc.s V_8
IL_0c74: ldloc.s V_6
IL_0c76: beq.s IL_0cc0
IL_0c78: ldloc.s V_9
IL_0c7a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0c7f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0c84: stloc.s V_6
IL_0c86: ldloc.s V_8
IL_0c88: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c8d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c92: stloc.s V_6
IL_0c94: ldloc.s V_8
IL_0c96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ca0: stloc.s V_7
IL_0ca2: ldloc.s V_9
IL_0ca4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0ca9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0cae: stloc.s V_9
IL_0cb0: ldloc.s V_7
IL_0cb2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0cb7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0cbc: stloc.s V_7
IL_0cbe: br.s IL_0d06
IL_0cc0: ldloc.s V_8
IL_0cc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0cc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0ccc: stloc.s V_10
IL_0cce: ldloc.s V_10
IL_0cd0: call string [mscorlib]System.Convert::ToString(int32)
IL_0cd5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0cda: stloc.s V_6
IL_0cdc: ldloc.s V_8
IL_0cde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0ce3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ce8: stloc.s V_8
IL_0cea: ldloc.s V_6
IL_0cec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0cf1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0cf6: stloc.s V_6
IL_0cf8: ldloc.s V_6
IL_0cfa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0cff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0d04: stloc.s V_10
IL_0d06: ldloc.s V_8
IL_0d08: ldloc.s V_9
IL_0d0a: bge.s IL_0d54
IL_0d0c: ldloc.s V_8
IL_0d0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d18: stloc.s V_9
IL_0d1a: ldloc.s V_6
IL_0d1c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d21: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d26: stloc.s V_9
IL_0d28: ldloc.s V_6
IL_0d2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0d2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0d34: stloc.s V_10
IL_0d36: ldloc.s V_8
IL_0d38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d42: stloc.s V_7
IL_0d44: ldloc.s V_6
IL_0d46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d50: stloc.s V_7
IL_0d52: br.s IL_0d9a
IL_0d54: ldloc.s V_9
IL_0d56: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0d5b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0d60: stloc.s V_7
IL_0d62: ldloc.s V_10
IL_0d64: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d69: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d6e: stloc.s V_10
IL_0d70: ldloc.s V_9
IL_0d72: call string [mscorlib]System.Convert::ToString(int32)
IL_0d77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0d7c: stloc.s V_7
IL_0d7e: ldloc.s V_10
IL_0d80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d8a: stloc.s V_7
IL_0d8c: ldloc.s V_7
IL_0d8e: call string [mscorlib]System.Convert::ToString(int32)
IL_0d93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0d98: stloc.s V_8
IL_0d9a: ldloc.s V_8
IL_0d9c: ldloc.s V_10
IL_0d9e: blt.s IL_0de8
IL_0da0: ldloc.s V_10
IL_0da2: call string [mscorlib]System.Convert::ToString(int32)
IL_0da7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0dac: stloc.s V_10
IL_0dae: ldloc.s V_6
IL_0db0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0db5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0dba: stloc.s V_10
IL_0dbc: ldloc.s V_8
IL_0dbe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0dc3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0dc8: stloc.s V_8
IL_0dca: ldloc.s V_8
IL_0dcc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0dd1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0dd6: stloc.s V_9
IL_0dd8: ldloc.s V_9
IL_0dda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0ddf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0de4: stloc.s V_6
IL_0de6: br.s IL_0e2e
IL_0de8: ldloc.s V_9
IL_0dea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0def: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0df4: stloc.s V_10
IL_0df6: ldloc.s V_9
IL_0df8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0dfd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e02: stloc.s V_8
IL_0e04: ldloc.s V_6
IL_0e06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e10: stloc.s V_10
IL_0e12: ldloc.s V_10
IL_0e14: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e19: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e1e: stloc.s V_9
IL_0e20: ldloc.s V_8
IL_0e22: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e27: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e2c: stloc.s V_7
IL_0e2e: ldloc.s V_10
IL_0e30: ldloc.s V_7
IL_0e32: bne.un.s IL_0e7c
IL_0e34: ldloc.s V_7
IL_0e36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e40: stloc.s V_8
IL_0e42: ldloc.s V_6
IL_0e44: call string [mscorlib]System.Convert::ToString(int32)
IL_0e49: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0e4e: stloc.s V_7
IL_0e50: ldloc.s V_9
IL_0e52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e5c: stloc.s V_9
IL_0e5e: ldloc.s V_8
IL_0e60: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e65: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e6a: stloc.s V_7
IL_0e6c: ldloc.s V_6
IL_0e6e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0e73: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0e78: stloc.s V_7
IL_0e7a: br.s IL_0ec2
IL_0e7c: ldloc.s V_6
IL_0e7e: call string [mscorlib]System.Convert::ToString(int32)
IL_0e83: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0e88: stloc.s V_7
IL_0e8a: ldloc.s V_7
IL_0e8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0e91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0e96: stloc.s V_8
IL_0e98: ldloc.s V_6
IL_0e9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0e9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0ea4: stloc.s V_7
IL_0ea6: ldloc.s V_9
IL_0ea8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0ead: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0eb2: stloc.s V_10
IL_0eb4: ldloc.s V_10
IL_0eb6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0ebb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ec0: stloc.s V_6
IL_0ec2: ldloc.s V_6
IL_0ec4: ldloc.s V_7
IL_0ec6: beq.s IL_0f10
IL_0ec8: ldloc.s V_8
IL_0eca: call string [mscorlib]System.Convert::ToString(int32)
IL_0ecf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ed4: stloc.s V_6
IL_0ed6: ldloc.s V_10
IL_0ed8: call string [mscorlib]System.Convert::ToString(int32)
IL_0edd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ee2: stloc.s V_7
IL_0ee4: ldloc.s V_6
IL_0ee6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0eeb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0ef0: stloc.s V_8
IL_0ef2: ldloc.s V_6
IL_0ef4: call string [mscorlib]System.Convert::ToString(int32)
IL_0ef9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0efe: stloc.s V_6
IL_0f00: ldloc.s V_7
IL_0f02: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0f07: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0f0c: stloc.s V_9
IL_0f0e: br.s IL_0f56
IL_0f10: ldloc.s V_9
IL_0f12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f1c: stloc.s V_10
IL_0f1e: ldloc.s V_10
IL_0f20: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f25: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f2a: stloc.s V_8
IL_0f2c: ldloc.s V_7
IL_0f2e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f33: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f38: stloc.s V_6
IL_0f3a: ldloc.s V_8
IL_0f3c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0f41: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0f46: stloc.s V_7
IL_0f48: ldloc.s V_6
IL_0f4a: call string [mscorlib]System.Convert::ToString(int32)
IL_0f4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0f54: stloc.s V_7
IL_0f56: ldloc.s V_7
IL_0f58: ldloc.s V_8
IL_0f5a: bne.un.s IL_0fa4
IL_0f5c: ldloc.s V_9
IL_0f5e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f63: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f68: stloc.s V_6
IL_0f6a: ldloc.s V_6
IL_0f6c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0f71: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0f76: stloc.s V_9
IL_0f78: ldloc.s V_6
IL_0f7a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0f7f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0f84: stloc.s V_7
IL_0f86: ldloc.s V_8
IL_0f88: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f8d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f92: stloc.s V_6
IL_0f94: ldloc.s V_9
IL_0f96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0fa0: stloc.s V_6
IL_0fa2: br.s IL_0fea
IL_0fa4: ldloc.s V_7
IL_0fa6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0fab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0fb0: stloc.s V_8
IL_0fb2: ldloc.s V_10
IL_0fb4: call string [mscorlib]System.Convert::ToString(int32)
IL_0fb9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0fbe: stloc.s V_6
IL_0fc0: ldloc.s V_7
IL_0fc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0fc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0fcc: stloc.s V_7
IL_0fce: ldloc.s V_7
IL_0fd0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0fd5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0fda: stloc.s V_6
IL_0fdc: ldloc.s V_7
IL_0fde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0fe3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0fe8: stloc.s V_8
IL_0fea: ldloc.s V_7
IL_0fec: ldloc.s V_7
IL_0fee: ble.s IL_1038
IL_0ff0: ldloc.s V_7
IL_0ff2: call string [mscorlib]System.Convert::ToString(int32)
IL_0ff7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ffc: stloc.s V_9
IL_0ffe: ldloc.s V_6
IL_1000: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1005: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_100a: stloc.s V_8
IL_100c: ldloc.s V_6
IL_100e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1013: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1018: stloc.s V_9
IL_101a: ldloc.s V_10
IL_101c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1021: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1026: stloc.s V_9
IL_1028: ldloc.s V_7
IL_102a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_102f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1034: stloc.s V_10
IL_1036: br.s IL_107e
IL_1038: ldloc.s V_7
IL_103a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_103f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1044: stloc.s V_9
IL_1046: ldloc.s V_9
IL_1048: call string [mscorlib]System.Convert::ToString(int32)
IL_104d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1052: stloc.s V_9
IL_1054: ldloc.s V_6
IL_1056: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_105b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1060: stloc.s V_8
IL_1062: ldloc.s V_10
IL_1064: call string [mscorlib]System.Convert::ToString(int32)
IL_1069: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_106e: stloc.s V_7
IL_1070: ldloc.s V_9
IL_1072: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1077: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_107c: stloc.s V_10
IL_107e: ldloc.s V_6
IL_1080: ldloc.s V_10
IL_1082: beq.s IL_10cc
IL_1084: ldloc.s V_8
IL_1086: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_108b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1090: stloc.s V_7
IL_1092: ldloc.s V_6
IL_1094: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1099: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_109e: stloc.s V_7
IL_10a0: ldloc.s V_8
IL_10a2: call string [mscorlib]System.Convert::ToString(int32)
IL_10a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_10ac: stloc.s V_6
IL_10ae: ldloc.s V_6
IL_10b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_10b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_10ba: stloc.s V_9
IL_10bc: ldloc.s V_10
IL_10be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_10c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_10c8: stloc.s V_7
IL_10ca: br.s IL_1112
IL_10cc: ldloc.s V_8
IL_10ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_10d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_10d8: stloc.s V_10
IL_10da: ldloc.s V_9
IL_10dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_10e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_10e6: stloc.s V_10
IL_10e8: ldloc.s V_9
IL_10ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_10ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_10f4: stloc.s V_8
IL_10f6: ldloc.s V_8
IL_10f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_10fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1102: stloc.s V_7
IL_1104: ldloc.s V_7
IL_1106: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_110b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1110: stloc.s V_7
IL_1112: ldloc.s V_10
IL_1114: ldloc.s V_10
IL_1116: blt.s IL_1160
IL_1118: ldloc.s V_9
IL_111a: call string [mscorlib]System.Convert::ToString(int32)
IL_111f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1124: stloc.s V_6
IL_1126: ldloc.s V_9
IL_1128: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_112d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1132: stloc.s V_10
IL_1134: ldloc.s V_6
IL_1136: call string [mscorlib]System.Convert::ToString(int32)
IL_113b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1140: stloc.s V_6
IL_1142: ldloc.s V_8
IL_1144: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1149: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_114e: stloc.s V_7
IL_1150: ldloc.s V_8
IL_1152: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1157: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_115c: stloc.s V_10
IL_115e: br.s IL_11a6
IL_1160: ldloc.s V_10
IL_1162: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1167: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_116c: stloc.s V_10
IL_116e: ldloc.s V_9
IL_1170: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1175: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_117a: stloc.s V_7
IL_117c: ldloc.s V_7
IL_117e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1183: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1188: stloc.s V_7
IL_118a: ldloc.s V_10
IL_118c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1191: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1196: stloc.s V_9
IL_1198: ldloc.s V_9
IL_119a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_119f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_11a4: stloc.s V_8
IL_11a6: ldloc.s V_7
IL_11a8: ldloc.s V_9
IL_11aa: ble.s IL_11f4
IL_11ac: ldloc.s V_7
IL_11ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_11b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_11b8: stloc.s V_7
IL_11ba: ldloc.s V_7
IL_11bc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_11c1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_11c6: stloc.s V_6
IL_11c8: ldloc.s V_9
IL_11ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_11cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_11d4: stloc.s V_9
IL_11d6: ldloc.s V_7
IL_11d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_11dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_11e2: stloc.s V_8
IL_11e4: ldloc.s V_7
IL_11e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_11eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_11f0: stloc.s V_7
IL_11f2: br.s IL_123a
IL_11f4: ldloc.s V_9
IL_11f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_11fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1200: stloc.s V_6
IL_1202: ldloc.s V_10
IL_1204: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1209: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_120e: stloc.s V_7
IL_1210: ldloc.s V_10
IL_1212: call string [mscorlib]System.Convert::ToString(int32)
IL_1217: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_121c: stloc.s V_6
IL_121e: ldloc.s V_8
IL_1220: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1225: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_122a: stloc.s V_7
IL_122c: ldloc.s V_9
IL_122e: call string [mscorlib]System.Convert::ToString(int32)
IL_1233: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1238: stloc.s V_10
IL_123a: ldloc.s V_7
IL_123c: ldloc.s V_8
IL_123e: bge.s IL_1288
IL_1240: ldloc.s V_9
IL_1242: call string [mscorlib]System.Convert::ToString(int32)
IL_1247: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_124c: stloc.s V_10
IL_124e: ldloc.s V_6
IL_1250: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1255: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_125a: stloc.s V_6
IL_125c: ldloc.s V_7
IL_125e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1263: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1268: stloc.s V_9
IL_126a: ldloc.s V_9
IL_126c: call string [mscorlib]System.Convert::ToString(int32)
IL_1271: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1276: stloc.s V_6
IL_1278: ldloc.s V_9
IL_127a: call string [mscorlib]System.Convert::ToString(int32)
IL_127f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1284: stloc.s V_6
IL_1286: br.s IL_12ce
IL_1288: ldloc.s V_8
IL_128a: call string [mscorlib]System.Convert::ToString(int32)
IL_128f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1294: stloc.s V_8
IL_1296: ldloc.s V_6
IL_1298: call string [mscorlib]System.Convert::ToString(int32)
IL_129d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_12a2: stloc.s V_6
IL_12a4: ldloc.s V_9
IL_12a6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_12ab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_12b0: stloc.s V_9
IL_12b2: ldloc.s V_9
IL_12b4: call string [mscorlib]System.Convert::ToString(int32)
IL_12b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_12be: stloc.s V_8
IL_12c0: ldloc.s V_6
IL_12c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_12c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_12cc: stloc.s V_10
IL_12ce: ldloc.s V_7
IL_12d0: ldloc.s V_9
IL_12d2: beq.s IL_131c
IL_12d4: ldloc.s V_9
IL_12d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_12db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_12e0: stloc.s V_9
IL_12e2: ldloc.s V_9
IL_12e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_12e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_12ee: stloc.s V_9
IL_12f0: ldloc.s V_9
IL_12f2: call string [mscorlib]System.Convert::ToString(int32)
IL_12f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_12fc: stloc.s V_8
IL_12fe: ldloc.s V_10
IL_1300: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1305: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_130a: stloc.s V_8
IL_130c: ldloc.s V_9
IL_130e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1313: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1318: stloc.s V_6
IL_131a: br.s IL_1362
IL_131c: ldloc.s V_6
IL_131e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1323: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1328: stloc.s V_9
IL_132a: ldloc.s V_9
IL_132c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1331: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1336: stloc.s V_7
IL_1338: ldloc.s V_8
IL_133a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_133f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1344: stloc.s V_8
IL_1346: ldloc.s V_6
IL_1348: call string [mscorlib]System.Convert::ToString(int32)
IL_134d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1352: stloc.s V_10
IL_1354: ldloc.s V_8
IL_1356: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_135b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1360: stloc.s V_8
IL_1362: ldloc.s V_6
IL_1364: ldloc.s V_8
IL_1366: ble.s IL_13b0
IL_1368: ldloc.s V_6
IL_136a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_136f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1374: stloc.s V_6
IL_1376: ldloc.s V_9
IL_1378: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_137d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1382: stloc.s V_10
IL_1384: ldloc.s V_10
IL_1386: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_138b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1390: stloc.s V_10
IL_1392: ldloc.s V_7
IL_1394: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1399: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_139e: stloc.s V_7
IL_13a0: ldloc.s V_8
IL_13a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_13a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_13ac: stloc.s V_9
IL_13ae: br.s IL_13f6
IL_13b0: ldloc.s V_8
IL_13b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_13b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_13bc: stloc.s V_10
IL_13be: ldloc.s V_6
IL_13c0: call string [mscorlib]System.Convert::ToString(int32)
IL_13c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_13ca: stloc.s V_6
IL_13cc: ldloc.s V_7
IL_13ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_13d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_13d8: stloc.s V_10
IL_13da: ldloc.s V_7
IL_13dc: call string [mscorlib]System.Convert::ToString(int32)
IL_13e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_13e6: stloc.s V_7
IL_13e8: ldloc.s V_10
IL_13ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_13ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_13f4: stloc.s V_8
IL_13f6: ldloc.s V_8
IL_13f8: ldloc.s V_10
IL_13fa: bge.s IL_1444
IL_13fc: ldloc.s V_9
IL_13fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1403: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1408: stloc.s V_8
IL_140a: ldloc.s V_8
IL_140c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1411: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1416: stloc.s V_8
IL_1418: ldloc.s V_9
IL_141a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_141f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1424: stloc.s V_7
IL_1426: ldloc.s V_9
IL_1428: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_142d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1432: stloc.s V_10
IL_1434: ldloc.s V_7
IL_1436: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_143b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1440: stloc.s V_7
IL_1442: br.s IL_148a
IL_1444: ldloc.s V_9
IL_1446: call string [mscorlib]System.Convert::ToString(int32)
IL_144b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1450: stloc.s V_8
IL_1452: ldloc.s V_8
IL_1454: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1459: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_145e: stloc.s V_6
IL_1460: ldloc.s V_8
IL_1462: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1467: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_146c: stloc.s V_8
IL_146e: ldloc.s V_6
IL_1470: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1475: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_147a: stloc.s V_9
IL_147c: ldloc.s V_8
IL_147e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1483: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1488: stloc.s V_7
IL_148a: ldloc.s V_6
IL_148c: ldloc.s V_9
IL_148e: beq.s IL_14d8
IL_1490: ldloc.s V_7
IL_1492: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1497: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_149c: stloc.s V_7
IL_149e: ldloc.s V_8
IL_14a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_14a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_14aa: stloc.s V_9
IL_14ac: ldloc.s V_6
IL_14ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_14b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_14b8: stloc.s V_6
IL_14ba: ldloc.s V_9
IL_14bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_14c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_14c6: stloc.s V_7
IL_14c8: ldloc.s V_7
IL_14ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_14cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_14d4: stloc.s V_8
IL_14d6: br.s IL_151e
IL_14d8: ldloc.s V_8
IL_14da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_14df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_14e4: stloc.s V_10
IL_14e6: ldloc.s V_8
IL_14e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_14ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_14f2: stloc.s V_7
IL_14f4: ldloc.s V_10
IL_14f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_14fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1500: stloc.s V_8
IL_1502: ldloc.s V_10
IL_1504: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1509: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_150e: stloc.s V_7
IL_1510: ldloc.s V_6
IL_1512: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1517: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_151c: stloc.s V_7
IL_151e: ldloc.s V_10
IL_1520: ldloc.s V_7
IL_1522: blt.s IL_156c
IL_1524: ldloc.s V_6
IL_1526: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_152b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1530: stloc.s V_6
IL_1532: ldloc.s V_6
IL_1534: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1539: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_153e: stloc.s V_6
IL_1540: ldloc.s V_6
IL_1542: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1547: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_154c: stloc.s V_7
IL_154e: ldloc.s V_6
IL_1550: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1555: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_155a: stloc.s V_7
IL_155c: ldloc.s V_10
IL_155e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1563: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1568: stloc.s V_9
IL_156a: br.s IL_15b2
IL_156c: ldloc.s V_7
IL_156e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1573: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1578: stloc.s V_9
IL_157a: ldloc.s V_10
IL_157c: call string [mscorlib]System.Convert::ToString(int32)
IL_1581: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1586: stloc.s V_10
IL_1588: ldloc.s V_6
IL_158a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_158f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1594: stloc.s V_7
IL_1596: ldloc.s V_8
IL_1598: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_159d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_15a2: stloc.s V_7
IL_15a4: ldloc.s V_9
IL_15a6: call string [mscorlib]System.Convert::ToString(int32)
IL_15ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_15b0: stloc.s V_8
IL_15b2: ldloc.s V_10
IL_15b4: ldloc.s V_7
IL_15b6: beq.s IL_1600
IL_15b8: ldloc.s V_6
IL_15ba: call string [mscorlib]System.Convert::ToString(int32)
IL_15bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_15c4: stloc.s V_8
IL_15c6: ldloc.s V_6
IL_15c8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_15cd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_15d2: stloc.s V_6
IL_15d4: ldloc.s V_6
IL_15d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_15db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_15e0: stloc.s V_8
IL_15e2: ldloc.s V_10
IL_15e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_15e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_15ee: stloc.s V_7
IL_15f0: ldloc.s V_9
IL_15f2: call string [mscorlib]System.Convert::ToString(int32)
IL_15f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_15fc: stloc.s V_10
IL_15fe: br.s IL_1646
IL_1600: ldloc.s V_8
IL_1602: call string [mscorlib]System.Convert::ToString(int32)
IL_1607: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_160c: stloc.s V_6
IL_160e: ldloc.s V_6
IL_1610: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1615: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_161a: stloc.s V_10
IL_161c: ldloc.s V_10
IL_161e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1623: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1628: stloc.s V_8
IL_162a: ldloc.s V_9
IL_162c: call string [mscorlib]System.Convert::ToString(int32)
IL_1631: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1636: stloc.s V_6
IL_1638: ldloc.s V_7
IL_163a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_163f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1644: stloc.s V_8
IL_1646: ldloc.s V_7
IL_1648: ldloc.s V_7
IL_164a: blt.s IL_1694
IL_164c: ldloc.s V_8
IL_164e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1653: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1658: stloc.s V_9
IL_165a: ldloc.s V_8
IL_165c: call string [mscorlib]System.Convert::ToString(int32)
IL_1661: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1666: stloc.s V_9
IL_1668: ldloc.s V_9
IL_166a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_166f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1674: stloc.s V_7
IL_1676: ldloc.s V_9
IL_1678: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_167d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1682: stloc.s V_9
IL_1684: ldloc.s V_8
IL_1686: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_168b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1690: stloc.s V_7
IL_1692: br.s IL_16da
IL_1694: ldloc.s V_6
IL_1696: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_169b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_16a0: stloc.s V_9
IL_16a2: ldloc.s V_7
IL_16a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16ae: stloc.s V_6
IL_16b0: ldloc.s V_10
IL_16b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16bc: stloc.s V_6
IL_16be: ldloc.s V_7
IL_16c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16ca: stloc.s V_6
IL_16cc: ldloc.s V_7
IL_16ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_16d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_16d8: stloc.s V_8
IL_16da: ldloc.s V_10
IL_16dc: ldloc.s V_10
IL_16de: bne.un.s IL_1728
IL_16e0: ldloc.s V_8
IL_16e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16ec: stloc.s V_8
IL_16ee: ldloc.s V_10
IL_16f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_16f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_16fa: stloc.s V_6
IL_16fc: ldloc.s V_6
IL_16fe: call string [mscorlib]System.Convert::ToString(int32)
IL_1703: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1708: stloc.s V_6
IL_170a: ldloc.s V_10
IL_170c: call string [mscorlib]System.Convert::ToString(int32)
IL_1711: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1716: stloc.s V_8
IL_1718: ldloc.s V_6
IL_171a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_171f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1724: stloc.s V_7
IL_1726: br.s IL_176e
IL_1728: ldloc.s V_8
IL_172a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_172f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1734: stloc.s V_6
IL_1736: ldloc.s V_6
IL_1738: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_173d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1742: stloc.s V_7
IL_1744: ldloc.s V_7
IL_1746: call string [mscorlib]System.Convert::ToString(int32)
IL_174b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1750: stloc.s V_10
IL_1752: ldloc.s V_8
IL_1754: call string [mscorlib]System.Convert::ToString(int32)
IL_1759: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_175e: stloc.s V_9
IL_1760: ldloc.s V_9
IL_1762: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1767: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_176c: stloc.s V_6
IL_176e: ldloc.s V_10
IL_1770: ldloc.s V_6
IL_1772: bge.s IL_17bc
IL_1774: ldloc.s V_7
IL_1776: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_177b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1780: stloc.s V_10
IL_1782: ldloc.s V_6
IL_1784: call string [mscorlib]System.Convert::ToString(int32)
IL_1789: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_178e: stloc.s V_6
IL_1790: ldloc.s V_8
IL_1792: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1797: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_179c: stloc.s V_6
IL_179e: ldloc.s V_7
IL_17a0: call string [mscorlib]System.Convert::ToString(int32)
IL_17a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_17aa: stloc.s V_7
IL_17ac: ldloc.s V_7
IL_17ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_17b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_17b8: stloc.s V_10
IL_17ba: br.s IL_1802
IL_17bc: ldloc.s V_6
IL_17be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_17c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_17c8: stloc.s V_6
IL_17ca: ldloc.s V_9
IL_17cc: call string [mscorlib]System.Convert::ToString(int32)
IL_17d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_17d6: stloc.s V_10
IL_17d8: ldloc.s V_9
IL_17da: call string [mscorlib]System.Convert::ToString(int32)
IL_17df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_17e4: stloc.s V_9
IL_17e6: ldloc.s V_8
IL_17e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_17ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_17f2: stloc.s V_7
IL_17f4: ldloc.s V_9
IL_17f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_17fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1800: stloc.s V_8
IL_1802: ldloc.s V_6
IL_1804: ldloc.s V_9
IL_1806: blt.s IL_1850
IL_1808: ldloc.s V_6
IL_180a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_180f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1814: stloc.s V_10
IL_1816: ldloc.s V_6
IL_1818: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_181d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1822: stloc.s V_10
IL_1824: ldloc.s V_6
IL_1826: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_182b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1830: stloc.s V_8
IL_1832: ldloc.s V_10
IL_1834: call string [mscorlib]System.Convert::ToString(int32)
IL_1839: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_183e: stloc.s V_8
IL_1840: ldloc.s V_10
IL_1842: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1847: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_184c: stloc.s V_10
IL_184e: br.s IL_1896
IL_1850: ldloc.s V_8
IL_1852: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1857: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_185c: stloc.s V_7
IL_185e: ldloc.s V_7
IL_1860: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1865: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_186a: stloc.s V_9
IL_186c: ldloc.s V_7
IL_186e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1873: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1878: stloc.s V_7
IL_187a: ldloc.s V_6
IL_187c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1881: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1886: stloc.s V_9
IL_1888: ldloc.s V_6
IL_188a: call string [mscorlib]System.Convert::ToString(int32)
IL_188f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1894: stloc.s V_8
IL_1896: ldloc.s V_10
IL_1898: ldloc.s V_8
IL_189a: beq.s IL_18e4
IL_189c: ldloc.s V_8
IL_189e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18a8: stloc.s V_8
IL_18aa: ldloc.s V_8
IL_18ac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18b1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18b6: stloc.s V_6
IL_18b8: ldloc.s V_8
IL_18ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_18bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_18c4: stloc.s V_10
IL_18c6: ldloc.s V_10
IL_18c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18d2: stloc.s V_9
IL_18d4: ldloc.s V_9
IL_18d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_18db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_18e0: stloc.s V_10
IL_18e2: br.s IL_192a
IL_18e4: ldloc.s V_10
IL_18e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18f0: stloc.s V_9
IL_18f2: ldloc.s V_9
IL_18f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_18f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_18fe: stloc.s V_6
IL_1900: ldloc.s V_6
IL_1902: call string [mscorlib]System.Convert::ToString(int32)
IL_1907: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_190c: stloc.s V_8
IL_190e: ldloc.s V_6
IL_1910: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1915: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_191a: stloc.s V_10
IL_191c: ldloc.s V_7
IL_191e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1923: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1928: stloc.s V_6
IL_192a: ldloc.s V_9
IL_192c: ldloc.s V_8
IL_192e: beq.s IL_1978
IL_1930: ldloc.s V_9
IL_1932: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1937: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_193c: stloc.s V_7
IL_193e: ldloc.s V_10
IL_1940: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1945: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_194a: stloc.s V_7
IL_194c: ldloc.s V_6
IL_194e: call string [mscorlib]System.Convert::ToString(int32)
IL_1953: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1958: stloc.s V_6
IL_195a: ldloc.s V_6
IL_195c: call string [mscorlib]System.Convert::ToString(int32)
IL_1961: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1966: stloc.s V_10
IL_1968: ldloc.s V_8
IL_196a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_196f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1974: stloc.s V_7
IL_1976: br.s IL_19be
IL_1978: ldloc.s V_8
IL_197a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_197f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1984: stloc.s V_8
IL_1986: ldloc.s V_6
IL_1988: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_198d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1992: stloc.s V_7
IL_1994: ldloc.s V_8
IL_1996: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_199b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_19a0: stloc.s V_10
IL_19a2: ldloc.s V_10
IL_19a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_19a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_19ae: stloc.s V_8
IL_19b0: ldloc.s V_8
IL_19b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_19b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_19bc: stloc.s V_7
IL_19be: ldloc.s V_9
IL_19c0: ldloc.s V_8
IL_19c2: ble.s IL_1a0c
IL_19c4: ldloc.s V_10
IL_19c6: call string [mscorlib]System.Convert::ToString(int32)
IL_19cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_19d0: stloc.s V_7
IL_19d2: ldloc.s V_6
IL_19d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_19d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_19de: stloc.s V_6
IL_19e0: ldloc.s V_6
IL_19e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_19e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_19ec: stloc.s V_10
IL_19ee: ldloc.s V_10
IL_19f0: call string [mscorlib]System.Convert::ToString(int32)
IL_19f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_19fa: stloc.s V_9
IL_19fc: ldloc.s V_8
IL_19fe: call string [mscorlib]System.Convert::ToString(int32)
IL_1a03: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a08: stloc.s V_10
IL_1a0a: br.s IL_1a52
IL_1a0c: ldloc.s V_7
IL_1a0e: call string [mscorlib]System.Convert::ToString(int32)
IL_1a13: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a18: stloc.s V_8
IL_1a1a: ldloc.s V_10
IL_1a1c: call string [mscorlib]System.Convert::ToString(int32)
IL_1a21: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a26: stloc.s V_10
IL_1a28: ldloc.s V_7
IL_1a2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a34: stloc.s V_7
IL_1a36: ldloc.s V_9
IL_1a38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1a3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1a42: stloc.s V_6
IL_1a44: ldloc.s V_10
IL_1a46: call string [mscorlib]System.Convert::ToString(int32)
IL_1a4b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a50: stloc.s V_10
IL_1a52: ldloc.s V_9
IL_1a54: ldloc.s V_6
IL_1a56: bgt.s IL_1aa0
IL_1a58: ldloc.s V_7
IL_1a5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1a5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1a64: stloc.s V_9
IL_1a66: ldloc.s V_8
IL_1a68: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a6d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a72: stloc.s V_8
IL_1a74: ldloc.s V_9
IL_1a76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a80: stloc.s V_8
IL_1a82: ldloc.s V_8
IL_1a84: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1a89: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1a8e: stloc.s V_6
IL_1a90: ldloc.s V_10
IL_1a92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a9c: stloc.s V_9
IL_1a9e: br.s IL_1ae6
IL_1aa0: ldloc.s V_7
IL_1aa2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1aa7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1aac: stloc.s V_8
IL_1aae: ldloc.s V_10
IL_1ab0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1ab5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1aba: stloc.s V_6
IL_1abc: ldloc.s V_6
IL_1abe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1ac3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ac8: stloc.s V_8
IL_1aca: ldloc.s V_7
IL_1acc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1ad1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ad6: stloc.s V_8
IL_1ad8: ldloc.s V_8
IL_1ada: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1adf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ae4: stloc.s V_8
IL_1ae6: ldloc.s V_10
IL_1ae8: ldloc.s V_10
IL_1aea: ble.s IL_1b34
IL_1aec: ldloc.s V_9
IL_1aee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1af3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1af8: stloc.s V_10
IL_1afa: ldloc.s V_6
IL_1afc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1b01: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1b06: stloc.s V_7
IL_1b08: ldloc.s V_7
IL_1b0a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b0f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b14: stloc.s V_9
IL_1b16: ldloc.s V_7
IL_1b18: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b1d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b22: stloc.s V_7
IL_1b24: ldloc.s V_8
IL_1b26: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b2b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b30: stloc.s V_10
IL_1b32: br.s IL_1b7a
IL_1b34: ldloc.s V_10
IL_1b36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b40: stloc.s V_10
IL_1b42: ldloc.s V_8
IL_1b44: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b49: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b4e: stloc.s V_8
IL_1b50: ldloc.s V_10
IL_1b52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b5c: stloc.s V_6
IL_1b5e: ldloc.s V_7
IL_1b60: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b65: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b6a: stloc.s V_6
IL_1b6c: ldloc.s V_7
IL_1b6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1b73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1b78: stloc.s V_7
IL_1b7a: ldloc.s V_6
IL_1b7c: ldloc.s V_7
IL_1b7e: ble.s IL_1bc8
IL_1b80: ldloc.s V_6
IL_1b82: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1b87: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1b8c: stloc.s V_9
IL_1b8e: ldloc.s V_10
IL_1b90: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b95: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b9a: stloc.s V_6
IL_1b9c: ldloc.s V_10
IL_1b9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1ba3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1ba8: stloc.s V_7
IL_1baa: ldloc.s V_9
IL_1bac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1bb1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1bb6: stloc.s V_9
IL_1bb8: ldloc.s V_9
IL_1bba: call string [mscorlib]System.Convert::ToString(int32)
IL_1bbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1bc4: stloc.s V_9
IL_1bc6: br.s IL_1c0e
IL_1bc8: ldloc.s V_9
IL_1bca: call string [mscorlib]System.Convert::ToString(int32)
IL_1bcf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1bd4: stloc.s V_9
IL_1bd6: ldloc.s V_8
IL_1bd8: call string [mscorlib]System.Convert::ToString(int32)
IL_1bdd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1be2: stloc.s V_9
IL_1be4: ldloc.s V_6
IL_1be6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1beb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1bf0: stloc.s V_7
IL_1bf2: ldloc.s V_10
IL_1bf4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1bf9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1bfe: stloc.s V_10
IL_1c00: ldloc.s V_8
IL_1c02: call string [mscorlib]System.Convert::ToString(int32)
IL_1c07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c0c: stloc.s V_9
IL_1c0e: ldloc.s V_6
IL_1c10: ldloc.s V_7
IL_1c12: ble.s IL_1c5c
IL_1c14: ldloc.s V_8
IL_1c16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1c1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1c20: stloc.s V_6
IL_1c22: ldloc.s V_6
IL_1c24: call string [mscorlib]System.Convert::ToString(int32)
IL_1c29: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c2e: stloc.s V_8
IL_1c30: ldloc.s V_6
IL_1c32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c3c: stloc.s V_6
IL_1c3e: ldloc.s V_10
IL_1c40: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c45: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c4a: stloc.s V_9
IL_1c4c: ldloc.s V_7
IL_1c4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c58: stloc.s V_6
IL_1c5a: br.s IL_1ca2
IL_1c5c: ldloc.s V_7
IL_1c5e: call string [mscorlib]System.Convert::ToString(int32)
IL_1c63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c68: stloc.s V_8
IL_1c6a: ldloc.s V_8
IL_1c6c: call string [mscorlib]System.Convert::ToString(int32)
IL_1c71: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c76: stloc.s V_8
IL_1c78: ldloc.s V_6
IL_1c7a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c7f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c84: stloc.s V_9
IL_1c86: ldloc.s V_6
IL_1c88: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c8d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c92: stloc.s V_6
IL_1c94: ldloc.s V_10
IL_1c96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1ca0: stloc.s V_10
IL_1ca2: ldloc.s V_9
IL_1ca4: ldloc.s V_6
IL_1ca6: blt.s IL_1cf0
IL_1ca8: ldloc.s V_8
IL_1caa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1caf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1cb4: stloc.s V_8
IL_1cb6: ldloc.s V_10
IL_1cb8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1cbd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1cc2: stloc.s V_7
IL_1cc4: ldloc.s V_7
IL_1cc6: call string [mscorlib]System.Convert::ToString(int32)
IL_1ccb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1cd0: stloc.s V_8
IL_1cd2: ldloc.s V_7
IL_1cd4: call string [mscorlib]System.Convert::ToString(int32)
IL_1cd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1cde: stloc.s V_8
IL_1ce0: ldloc.s V_9
IL_1ce2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ce7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1cec: stloc.s V_6
IL_1cee: br.s IL_1d36
IL_1cf0: ldloc.s V_6
IL_1cf2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1cf7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1cfc: stloc.s V_8
IL_1cfe: ldloc.s V_8
IL_1d00: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d05: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d0a: stloc.s V_6
IL_1d0c: ldloc.s V_9
IL_1d0e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d13: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d18: stloc.s V_10
IL_1d1a: ldloc.s V_8
IL_1d1c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d21: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d26: stloc.s V_8
IL_1d28: ldloc.s V_10
IL_1d2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d34: stloc.s V_6
IL_1d36: ldloc.s V_7
IL_1d38: ldloc.s V_9
IL_1d3a: ble.s IL_1d84
IL_1d3c: ldloc.s V_8
IL_1d3e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d43: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d48: stloc.s V_10
IL_1d4a: ldloc.s V_7
IL_1d4c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d51: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d56: stloc.s V_9
IL_1d58: ldloc.s V_10
IL_1d5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d64: stloc.s V_8
IL_1d66: ldloc.s V_9
IL_1d68: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d6d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d72: stloc.s V_6
IL_1d74: ldloc.s V_8
IL_1d76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d80: stloc.s V_9
IL_1d82: br.s IL_1dca
IL_1d84: ldloc.s V_7
IL_1d86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d90: stloc.s V_7
IL_1d92: ldloc.s V_6
IL_1d94: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d99: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d9e: stloc.s V_10
IL_1da0: ldloc.s V_8
IL_1da2: call string [mscorlib]System.Convert::ToString(int32)
IL_1da7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1dac: stloc.s V_8
IL_1dae: ldloc.s V_10
IL_1db0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1db5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1dba: stloc.s V_10
IL_1dbc: ldloc.s V_8
IL_1dbe: call string [mscorlib]System.Convert::ToString(int32)
IL_1dc3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1dc8: stloc.s V_8
IL_1dca: ldloc.s V_7
IL_1dcc: ldloc.s V_7
IL_1dce: blt.s IL_1e18
IL_1dd0: ldloc.s V_7
IL_1dd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1dd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ddc: stloc.s V_8
IL_1dde: ldloc.s V_10
IL_1de0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1de5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1dea: stloc.s V_6
IL_1dec: ldloc.s V_8
IL_1dee: call string [mscorlib]System.Convert::ToString(int32)
IL_1df3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1df8: stloc.s V_10
IL_1dfa: ldloc.s V_10
IL_1dfc: call string [mscorlib]System.Convert::ToString(int32)
IL_1e01: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1e06: stloc.s V_9
IL_1e08: ldloc.s V_7
IL_1e0a: call string [mscorlib]System.Convert::ToString(int32)
IL_1e0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1e14: stloc.s V_6
IL_1e16: br.s IL_1e5e
IL_1e18: ldloc.s V_10
IL_1e1a: call string [mscorlib]System.Convert::ToString(int32)
IL_1e1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1e24: stloc.s V_10
IL_1e26: ldloc.s V_6
IL_1e28: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e2d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e32: stloc.s V_9
IL_1e34: ldloc.s V_9
IL_1e36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1e3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1e40: stloc.s V_9
IL_1e42: ldloc.s V_7
IL_1e44: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1e49: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1e4e: stloc.s V_6
IL_1e50: ldloc.s V_8
IL_1e52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e5c: stloc.s V_7
IL_1e5e: ldloc.s V_9
IL_1e60: ldloc.s V_10
IL_1e62: bgt.s IL_1eac
IL_1e64: ldloc.s V_9
IL_1e66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e70: stloc.s V_7
IL_1e72: ldloc.s V_8
IL_1e74: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e79: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e7e: stloc.s V_7
IL_1e80: ldloc.s V_9
IL_1e82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e8c: stloc.s V_7
IL_1e8e: ldloc.s V_6
IL_1e90: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1e95: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1e9a: stloc.s V_9
IL_1e9c: ldloc.s V_7
IL_1e9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ea3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1ea8: stloc.s V_8
IL_1eaa: br.s IL_1ef2
IL_1eac: ldloc.s V_10
IL_1eae: call string [mscorlib]System.Convert::ToString(int32)
IL_1eb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1eb8: stloc.s V_9
IL_1eba: ldloc.s V_6
IL_1ebc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ec1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1ec6: stloc.s V_8
IL_1ec8: ldloc.s V_10
IL_1eca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ecf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1ed4: stloc.s V_7
IL_1ed6: ldloc.s V_10
IL_1ed8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1edd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ee2: stloc.s V_8
IL_1ee4: ldloc.s V_8
IL_1ee6: call string [mscorlib]System.Convert::ToString(int32)
IL_1eeb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1ef0: stloc.s V_9
IL_1ef2: ldloc.s V_6
IL_1ef4: ldloc.s V_6
IL_1ef6: beq.s IL_1f40
IL_1ef8: ldloc.s V_8
IL_1efa: call string [mscorlib]System.Convert::ToString(int32)
IL_1eff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f04: stloc.s V_6
IL_1f06: ldloc.s V_8
IL_1f08: call string [mscorlib]System.Convert::ToString(int32)
IL_1f0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f12: stloc.s V_8
IL_1f14: ldloc.s V_6
IL_1f16: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1f1b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1f20: stloc.s V_7
IL_1f22: ldloc.s V_8
IL_1f24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1f29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1f2e: stloc.s V_7
IL_1f30: ldloc.s V_6
IL_1f32: call string [mscorlib]System.Convert::ToString(int32)
IL_1f37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f3c: stloc.s V_9
IL_1f3e: br.s IL_1f86
IL_1f40: ldloc.s V_8
IL_1f42: call string [mscorlib]System.Convert::ToString(int32)
IL_1f47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f4c: stloc.s V_6
IL_1f4e: ldloc.s V_10
IL_1f50: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1f55: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1f5a: stloc.s V_9
IL_1f5c: ldloc.s V_7
IL_1f5e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1f63: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1f68: stloc.s V_9
IL_1f6a: ldloc.s V_6
IL_1f6c: call string [mscorlib]System.Convert::ToString(int32)
IL_1f71: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f76: stloc.s V_10
IL_1f78: ldloc.s V_8
IL_1f7a: call string [mscorlib]System.Convert::ToString(int32)
IL_1f7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f84: stloc.s V_9
IL_1f86: ldloc.s V_10
IL_1f88: ldloc.s V_9
IL_1f8a: blt.s IL_1fd4
IL_1f8c: ldloc.s V_6
IL_1f8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1f93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1f98: stloc.s V_6
IL_1f9a: ldloc.s V_10
IL_1f9c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1fa1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1fa6: stloc.s V_9
IL_1fa8: ldloc.s V_7
IL_1faa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1faf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1fb4: stloc.s V_7
IL_1fb6: ldloc.s V_6
IL_1fb8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1fbd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1fc2: stloc.s V_6
IL_1fc4: ldloc.s V_8
IL_1fc6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1fcb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1fd0: stloc.s V_8
IL_1fd2: br.s IL_201a
IL_1fd4: ldloc.s V_6
IL_1fd6: call string [mscorlib]System.Convert::ToString(int32)
IL_1fdb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1fe0: stloc.s V_9
IL_1fe2: ldloc.s V_6
IL_1fe4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1fe9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1fee: stloc.s V_10
IL_1ff0: ldloc.s V_9
IL_1ff2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1ff7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1ffc: stloc.s V_6
IL_1ffe: ldloc.s V_10
IL_2000: call string [mscorlib]System.Convert::ToString(int32)
IL_2005: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_200a: stloc.s V_7
IL_200c: ldloc.s V_10
IL_200e: call string [mscorlib]System.Convert::ToString(int32)
IL_2013: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2018: stloc.s V_8
IL_201a: ldloc.s V_10
IL_201c: ldloc.s V_6
IL_201e: bgt.s IL_2068
IL_2020: ldloc.s V_7
IL_2022: call string [mscorlib]System.Convert::ToString(int32)
IL_2027: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_202c: stloc.s V_9
IL_202e: ldloc.s V_7
IL_2030: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2035: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_203a: stloc.s V_6
IL_203c: ldloc.s V_10
IL_203e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2043: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2048: stloc.s V_9
IL_204a: ldloc.s V_10
IL_204c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2051: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2056: stloc.s V_9
IL_2058: ldloc.s V_10
IL_205a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_205f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2064: stloc.s V_6
IL_2066: br.s IL_20ae
IL_2068: ldloc.s V_10
IL_206a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_206f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2074: stloc.s V_9
IL_2076: ldloc.s V_8
IL_2078: call string [mscorlib]System.Convert::ToString(int32)
IL_207d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2082: stloc.s V_8
IL_2084: ldloc.s V_6
IL_2086: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_208b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2090: stloc.s V_9
IL_2092: ldloc.s V_8
IL_2094: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2099: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_209e: stloc.s V_8
IL_20a0: ldloc.s V_8
IL_20a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_20a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_20ac: stloc.s V_10
IL_20ae: ldloc.s V_8
IL_20b0: ldloc.s V_6
IL_20b2: blt.s IL_20fc
IL_20b4: ldloc.s V_6
IL_20b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_20bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_20c0: stloc.s V_6
IL_20c2: ldloc.s V_6
IL_20c4: call string [mscorlib]System.Convert::ToString(int32)
IL_20c9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_20ce: stloc.s V_7
IL_20d0: ldloc.s V_6
IL_20d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_20d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_20dc: stloc.s V_9
IL_20de: ldloc.s V_8
IL_20e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_20e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_20ea: stloc.s V_7
IL_20ec: ldloc.s V_7
IL_20ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_20f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_20f8: stloc.s V_10
IL_20fa: br.s IL_2142
IL_20fc: ldloc.s V_9
IL_20fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2103: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2108: stloc.s V_6
IL_210a: ldloc.s V_8
IL_210c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2111: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2116: stloc.s V_10
IL_2118: ldloc.s V_9
IL_211a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_211f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2124: stloc.s V_8
IL_2126: ldloc.s V_6
IL_2128: call string [mscorlib]System.Convert::ToString(int32)
IL_212d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2132: stloc.s V_6
IL_2134: ldloc.s V_8
IL_2136: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_213b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2140: stloc.s V_9
IL_2142: ldloc.s V_7
IL_2144: ldloc.s V_7
IL_2146: blt.s IL_2190
IL_2148: ldloc.s V_8
IL_214a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_214f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2154: stloc.s V_9
IL_2156: ldloc.s V_7
IL_2158: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_215d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2162: stloc.s V_9
IL_2164: ldloc.s V_7
IL_2166: call string [mscorlib]System.Convert::ToString(int32)
IL_216b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2170: stloc.s V_10
IL_2172: ldloc.s V_8
IL_2174: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2179: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_217e: stloc.s V_8
IL_2180: ldloc.s V_6
IL_2182: call string [mscorlib]System.Convert::ToString(int32)
IL_2187: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_218c: stloc.s V_9
IL_218e: br.s IL_21d6
IL_2190: ldloc.s V_10
IL_2192: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2197: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_219c: stloc.s V_7
IL_219e: ldloc.s V_7
IL_21a0: call string [mscorlib]System.Convert::ToString(int32)
IL_21a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_21aa: stloc.s V_9
IL_21ac: ldloc.s V_10
IL_21ae: call string [mscorlib]System.Convert::ToString(int32)
IL_21b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_21b8: stloc.s V_9
IL_21ba: ldloc.s V_6
IL_21bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_21c6: stloc.s V_8
IL_21c8: ldloc.s V_7
IL_21ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_21d4: stloc.s V_6
IL_21d6: ldloc.s V_10
IL_21d8: ldloc.s V_7
IL_21da: bgt.s IL_2224
IL_21dc: ldloc.s V_7
IL_21de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_21e8: stloc.s V_6
IL_21ea: ldloc.s V_8
IL_21ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_21f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_21f6: stloc.s V_9
IL_21f8: ldloc.s V_8
IL_21fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2204: stloc.s V_7
IL_2206: ldloc.s V_8
IL_2208: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_220d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2212: stloc.s V_6
IL_2214: ldloc.s V_10
IL_2216: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_221b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2220: stloc.s V_6
IL_2222: br.s IL_226a
IL_2224: ldloc.s V_10
IL_2226: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_222b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2230: stloc.s V_10
IL_2232: ldloc.s V_9
IL_2234: call string [mscorlib]System.Convert::ToString(int32)
IL_2239: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_223e: stloc.s V_8
IL_2240: ldloc.s V_7
IL_2242: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2247: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_224c: stloc.s V_6
IL_224e: ldloc.s V_7
IL_2250: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2255: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_225a: stloc.s V_9
IL_225c: ldloc.s V_9
IL_225e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2263: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2268: stloc.s V_7
IL_226a: ldloc.s V_9
IL_226c: ldloc.s V_8
IL_226e: ble.s IL_22b8
IL_2270: ldloc.s V_8
IL_2272: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2277: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_227c: stloc.s V_7
IL_227e: ldloc.s V_9
IL_2280: call string [mscorlib]System.Convert::ToString(int32)
IL_2285: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_228a: stloc.s V_10
IL_228c: ldloc.s V_8
IL_228e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2293: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2298: stloc.s V_8
IL_229a: ldloc.s V_8
IL_229c: call string [mscorlib]System.Convert::ToString(int32)
IL_22a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_22a6: stloc.s V_9
IL_22a8: ldloc.s V_9
IL_22aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_22af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_22b4: stloc.s V_7
IL_22b6: br.s IL_22fe
IL_22b8: ldloc.s V_9
IL_22ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22c4: stloc.s V_6
IL_22c6: ldloc.s V_7
IL_22c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22d2: stloc.s V_8
IL_22d4: ldloc.s V_6
IL_22d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22e0: stloc.s V_8
IL_22e2: ldloc.s V_10
IL_22e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_22e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_22ee: stloc.s V_10
IL_22f0: ldloc.s V_6
IL_22f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22fc: stloc.s V_7
IL_22fe: ldloc.s V_6
IL_2300: ldloc.s V_7
IL_2302: bne.un.s IL_234c
IL_2304: ldloc.s V_6
IL_2306: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_230b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2310: stloc.s V_6
IL_2312: ldloc.s V_8
IL_2314: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2319: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_231e: stloc.s V_8
IL_2320: ldloc.s V_7
IL_2322: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2327: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_232c: stloc.s V_7
IL_232e: ldloc.s V_7
IL_2330: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2335: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_233a: stloc.s V_6
IL_233c: ldloc.s V_10
IL_233e: call string [mscorlib]System.Convert::ToString(int32)
IL_2343: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2348: stloc.s V_10
IL_234a: br.s IL_2392
IL_234c: ldloc.s V_9
IL_234e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2353: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2358: stloc.s V_8
IL_235a: ldloc.s V_9
IL_235c: call string [mscorlib]System.Convert::ToString(int32)
IL_2361: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2366: stloc.s V_6
IL_2368: ldloc.s V_8
IL_236a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_236f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2374: stloc.s V_7
IL_2376: ldloc.s V_10
IL_2378: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_237d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2382: stloc.s V_8
IL_2384: ldloc.s V_7
IL_2386: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_238b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2390: stloc.s V_9
IL_2392: ldloc.s V_6
IL_2394: ldloc.s V_9
IL_2396: bge.s IL_23e0
IL_2398: ldloc.s V_8
IL_239a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_239f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_23a4: stloc.s V_6
IL_23a6: ldloc.s V_6
IL_23a8: call string [mscorlib]System.Convert::ToString(int32)
IL_23ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_23b2: stloc.s V_9
IL_23b4: ldloc.s V_10
IL_23b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_23bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_23c0: stloc.s V_6
IL_23c2: ldloc.s V_9
IL_23c4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_23c9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_23ce: stloc.s V_10
IL_23d0: ldloc.s V_7
IL_23d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_23d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_23dc: stloc.s V_10
IL_23de: br.s IL_2426
IL_23e0: ldloc.s V_10
IL_23e2: call string [mscorlib]System.Convert::ToString(int32)
IL_23e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_23ec: stloc.s V_6
IL_23ee: ldloc.s V_8
IL_23f0: call string [mscorlib]System.Convert::ToString(int32)
IL_23f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_23fa: stloc.s V_8
IL_23fc: ldloc.s V_10
IL_23fe: call string [mscorlib]System.Convert::ToString(int32)
IL_2403: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2408: stloc.s V_9
IL_240a: ldloc.s V_10
IL_240c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2411: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2416: stloc.s V_8
IL_2418: ldloc.s V_10
IL_241a: call string [mscorlib]System.Convert::ToString(int32)
IL_241f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2424: stloc.s V_9
IL_2426: ldloc.s V_10
IL_2428: ldloc.s V_7
IL_242a: beq.s IL_2474
IL_242c: ldloc.s V_7
IL_242e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2433: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2438: stloc.s V_9
IL_243a: ldloc.s V_8
IL_243c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2441: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2446: stloc.s V_8
IL_2448: ldloc.s V_7
IL_244a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_244f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2454: stloc.s V_9
IL_2456: ldloc.s V_8
IL_2458: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_245d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2462: stloc.s V_9
IL_2464: ldloc.s V_6
IL_2466: call string [mscorlib]System.Convert::ToString(int32)
IL_246b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2470: stloc.s V_9
IL_2472: br.s IL_24ba
IL_2474: ldloc.s V_8
IL_2476: call string [mscorlib]System.Convert::ToString(int32)
IL_247b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2480: stloc.s V_8
IL_2482: ldloc.s V_7
IL_2484: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2489: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_248e: stloc.s V_7
IL_2490: ldloc.s V_8
IL_2492: call string [mscorlib]System.Convert::ToString(int32)
IL_2497: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_249c: stloc.s V_6
IL_249e: ldloc.s V_9
IL_24a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_24a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_24aa: stloc.s V_8
IL_24ac: ldloc.s V_8
IL_24ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_24b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_24b8: stloc.s V_6
IL_24ba: ldloc.s V_10
IL_24bc: ldloc.s V_8
IL_24be: ble.s IL_2508
IL_24c0: ldloc.s V_6
IL_24c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_24c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_24cc: stloc.s V_8
IL_24ce: ldloc.s V_9
IL_24d0: call string [mscorlib]System.Convert::ToString(int32)
IL_24d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_24da: stloc.s V_10
IL_24dc: ldloc.s V_9
IL_24de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_24e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_24e8: stloc.s V_8
IL_24ea: ldloc.s V_7
IL_24ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_24f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_24f6: stloc.s V_6
IL_24f8: ldloc.s V_7
IL_24fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_24ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2504: stloc.s V_8
IL_2506: br.s IL_254e
IL_2508: ldloc.s V_6
IL_250a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_250f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2514: stloc.s V_10
IL_2516: ldloc.s V_10
IL_2518: call string [mscorlib]System.Convert::ToString(int32)
IL_251d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2522: stloc.s V_8
IL_2524: ldloc.s V_7
IL_2526: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_252b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2530: stloc.s V_10
IL_2532: ldloc.s V_10
IL_2534: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2539: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_253e: stloc.s V_9
IL_2540: ldloc.s V_9
IL_2542: call string [mscorlib]System.Convert::ToString(int32)
IL_2547: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_254c: stloc.s V_9
IL_254e: ldloc.s V_9
IL_2550: ldloc.s V_8
IL_2552: bne.un.s IL_259c
IL_2554: ldloc.s V_8
IL_2556: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_255b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2560: stloc.s V_10
IL_2562: ldloc.s V_10
IL_2564: call string [mscorlib]System.Convert::ToString(int32)
IL_2569: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_256e: stloc.s V_6
IL_2570: ldloc.s V_6
IL_2572: call string [mscorlib]System.Convert::ToString(int32)
IL_2577: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_257c: stloc.s V_9
IL_257e: ldloc.s V_9
IL_2580: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2585: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_258a: stloc.s V_9
IL_258c: ldloc.s V_7
IL_258e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2593: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2598: stloc.s V_7
IL_259a: br.s IL_25e2
IL_259c: ldloc.s V_7
IL_259e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_25a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_25a8: stloc.s V_7
IL_25aa: ldloc.s V_7
IL_25ac: call string [mscorlib]System.Convert::ToString(int32)
IL_25b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25b6: stloc.s V_8
IL_25b8: ldloc.s V_9
IL_25ba: call string [mscorlib]System.Convert::ToString(int32)
IL_25bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25c4: stloc.s V_8
IL_25c6: ldloc.s V_9
IL_25c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_25cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_25d2: stloc.s V_10
IL_25d4: ldloc.s V_7
IL_25d6: call string [mscorlib]System.Convert::ToString(int32)
IL_25db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25e0: stloc.s V_10
IL_25e2: ldloc.s V_7
IL_25e4: ldloc.s V_6
IL_25e6: ble.s IL_2630
IL_25e8: ldloc.s V_8
IL_25ea: call string [mscorlib]System.Convert::ToString(int32)
IL_25ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25f4: stloc.s V_10
IL_25f6: ldloc.s V_8
IL_25f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_25fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2602: stloc.s V_10
IL_2604: ldloc.s V_6
IL_2606: call string [mscorlib]System.Convert::ToString(int32)
IL_260b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2610: stloc.s V_6
IL_2612: ldloc.s V_8
IL_2614: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2619: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_261e: stloc.s V_10
IL_2620: ldloc.s V_10
IL_2622: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2627: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_262c: stloc.s V_8
IL_262e: br.s IL_2676
IL_2630: ldloc.s V_7
IL_2632: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2637: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_263c: stloc.s V_9
IL_263e: ldloc.s V_6
IL_2640: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2645: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_264a: stloc.s V_7
IL_264c: ldloc.s V_9
IL_264e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2653: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2658: stloc.s V_6
IL_265a: ldloc.s V_8
IL_265c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2661: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2666: stloc.s V_9
IL_2668: ldloc.s V_10
IL_266a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_266f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2674: stloc.s V_6
IL_2676: ldloc.s V_8
IL_2678: ldloc.s V_9
IL_267a: beq.s IL_26c4
IL_267c: ldloc.s V_8
IL_267e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2683: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2688: stloc.s V_8
IL_268a: ldloc.s V_8
IL_268c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2691: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2696: stloc.s V_9
IL_2698: ldloc.s V_10
IL_269a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_269f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_26a4: stloc.s V_9
IL_26a6: ldloc.s V_7
IL_26a8: call string [mscorlib]System.Convert::ToString(int32)
IL_26ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_26b2: stloc.s V_7
IL_26b4: ldloc.s V_9
IL_26b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_26bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_26c0: stloc.s V_7
IL_26c2: br.s IL_270a
IL_26c4: ldloc.s V_7
IL_26c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_26cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_26d0: stloc.s V_10
IL_26d2: ldloc.s V_6
IL_26d4: call string [mscorlib]System.Convert::ToString(int32)
IL_26d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_26de: stloc.s V_10
IL_26e0: ldloc.s V_6
IL_26e2: call string [mscorlib]System.Convert::ToString(int32)
IL_26e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_26ec: stloc.s V_6
IL_26ee: ldloc.s V_8
IL_26f0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_26f5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_26fa: stloc.s V_10
IL_26fc: ldloc.s V_9
IL_26fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2703: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2708: stloc.s V_6
IL_270a: ldloc.s V_6
IL_270c: ldloc.s V_9
IL_270e: ble.s IL_2758
IL_2710: ldloc.s V_6
IL_2712: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2717: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_271c: stloc.s V_9
IL_271e: ldloc.s V_10
IL_2720: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2725: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_272a: stloc.s V_7
IL_272c: ldloc.s V_10
IL_272e: call string [mscorlib]System.Convert::ToString(int32)
IL_2733: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2738: stloc.s V_10
IL_273a: ldloc.s V_9
IL_273c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2741: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2746: stloc.s V_6
IL_2748: ldloc.s V_10
IL_274a: call string [mscorlib]System.Convert::ToString(int32)
IL_274f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2754: stloc.s V_7
IL_2756: br.s IL_279e
IL_2758: ldloc.s V_10
IL_275a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_275f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2764: stloc.s V_9
IL_2766: ldloc.s V_10
IL_2768: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_276d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2772: stloc.s V_9
IL_2774: ldloc.s V_9
IL_2776: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_277b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2780: stloc.s V_9
IL_2782: ldloc.s V_8
IL_2784: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2789: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_278e: stloc.s V_7
IL_2790: ldloc.s V_8
IL_2792: call string [mscorlib]System.Convert::ToString(int32)
IL_2797: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_279c: stloc.s V_10
IL_279e: ldloc.s V_6
IL_27a0: ldloc.s V_9
IL_27a2: bge.s IL_27ec
IL_27a4: ldloc.s V_6
IL_27a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_27ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_27b0: stloc.s V_9
IL_27b2: ldloc.s V_6
IL_27b4: call string [mscorlib]System.Convert::ToString(int32)
IL_27b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_27be: stloc.s V_9
IL_27c0: ldloc.s V_10
IL_27c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_27c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_27cc: stloc.s V_7
IL_27ce: ldloc.s V_9
IL_27d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_27d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_27da: stloc.s V_6
IL_27dc: ldloc.s V_8
IL_27de: call string [mscorlib]System.Convert::ToString(int32)
IL_27e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_27e8: stloc.s V_8
IL_27ea: br.s IL_2832
IL_27ec: ldloc.s V_9
IL_27ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_27f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_27f8: stloc.s V_9
IL_27fa: ldloc.s V_6
IL_27fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2801: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2806: stloc.s V_9
IL_2808: ldloc.s V_9
IL_280a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_280f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2814: stloc.s V_10
IL_2816: ldloc.s V_6
IL_2818: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_281d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2822: stloc.s V_7
IL_2824: ldloc.s V_7
IL_2826: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_282b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2830: stloc.s V_8
IL_2832: ldloc.s V_10
IL_2834: ldloc.s V_9
IL_2836: bgt.s IL_2880
IL_2838: ldloc.s V_6
IL_283a: call string [mscorlib]System.Convert::ToString(int32)
IL_283f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2844: stloc.s V_6
IL_2846: ldloc.s V_8
IL_2848: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_284d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2852: stloc.s V_10
IL_2854: ldloc.s V_10
IL_2856: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_285b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2860: stloc.s V_9
IL_2862: ldloc.s V_8
IL_2864: call string [mscorlib]System.Convert::ToString(int32)
IL_2869: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_286e: stloc.s V_10
IL_2870: ldloc.s V_7
IL_2872: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2877: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_287c: stloc.s V_6
IL_287e: br.s IL_28c6
IL_2880: ldloc.s V_6
IL_2882: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2887: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_288c: stloc.s V_10
IL_288e: ldloc.s V_10
IL_2890: call string [mscorlib]System.Convert::ToString(int32)
IL_2895: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_289a: stloc.s V_9
IL_289c: ldloc.s V_8
IL_289e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_28a8: stloc.s V_8
IL_28aa: ldloc.s V_8
IL_28ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_28b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_28b6: stloc.s V_8
IL_28b8: ldloc.s V_6
IL_28ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_28c4: stloc.s V_10
IL_28c6: ldloc.s V_8
IL_28c8: ldloc.s V_6
IL_28ca: bne.un.s IL_2914
IL_28cc: ldloc.s V_10
IL_28ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_28d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_28d8: stloc.s V_10
IL_28da: ldloc.s V_7
IL_28dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_28e6: stloc.s V_8
IL_28e8: ldloc.s V_10
IL_28ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_28ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_28f4: stloc.s V_6
IL_28f6: ldloc.s V_8
IL_28f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2902: stloc.s V_6
IL_2904: ldloc.s V_7
IL_2906: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_290b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2910: stloc.s V_6
IL_2912: br.s IL_295a
IL_2914: ldloc.s V_9
IL_2916: call string [mscorlib]System.Convert::ToString(int32)
IL_291b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2920: stloc.s V_10
IL_2922: ldloc.s V_7
IL_2924: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2929: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_292e: stloc.s V_6
IL_2930: ldloc.s V_9
IL_2932: call string [mscorlib]System.Convert::ToString(int32)
IL_2937: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_293c: stloc.s V_10
IL_293e: ldloc.s V_9
IL_2940: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2945: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_294a: stloc.s V_9
IL_294c: ldloc.s V_9
IL_294e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2953: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2958: stloc.s V_6
IL_295a: ldloc.s V_6
IL_295c: ldloc.s V_6
IL_295e: beq.s IL_29a8
IL_2960: ldloc.s V_8
IL_2962: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2967: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_296c: stloc.s V_8
IL_296e: ldloc.s V_8
IL_2970: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2975: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_297a: stloc.s V_7
IL_297c: ldloc.s V_8
IL_297e: call string [mscorlib]System.Convert::ToString(int32)
IL_2983: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2988: stloc.s V_10
IL_298a: ldloc.s V_10
IL_298c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2991: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2996: stloc.s V_10
IL_2998: ldloc.s V_7
IL_299a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_299f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_29a4: stloc.s V_10
IL_29a6: br.s IL_29ee
IL_29a8: ldloc.s V_6
IL_29aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_29af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_29b4: stloc.s V_7
IL_29b6: ldloc.s V_9
IL_29b8: call string [mscorlib]System.Convert::ToString(int32)
IL_29bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_29c2: stloc.s V_7
IL_29c4: ldloc.s V_10
IL_29c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_29cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_29d0: stloc.s V_9
IL_29d2: ldloc.s V_8
IL_29d4: call string [mscorlib]System.Convert::ToString(int32)
IL_29d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_29de: stloc.s V_7
IL_29e0: ldloc.s V_7
IL_29e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_29e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_29ec: stloc.s V_9
IL_29ee: ldloc.s V_7
IL_29f0: ldloc.s V_10
IL_29f2: bge.s IL_2a3c
IL_29f4: ldloc.s V_10
IL_29f6: call string [mscorlib]System.Convert::ToString(int32)
IL_29fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a00: stloc.s V_7
IL_2a02: ldloc.s V_6
IL_2a04: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2a09: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2a0e: stloc.s V_10
IL_2a10: ldloc.s V_7
IL_2a12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2a17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2a1c: stloc.s V_7
IL_2a1e: ldloc.s V_6
IL_2a20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2a25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2a2a: stloc.s V_10
IL_2a2c: ldloc.s V_10
IL_2a2e: call string [mscorlib]System.Convert::ToString(int32)
IL_2a33: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a38: stloc.s V_9
IL_2a3a: br.s IL_2a82
IL_2a3c: ldloc.s V_9
IL_2a3e: call string [mscorlib]System.Convert::ToString(int32)
IL_2a43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a48: stloc.s V_8
IL_2a4a: ldloc.s V_7
IL_2a4c: call string [mscorlib]System.Convert::ToString(int32)
IL_2a51: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a56: stloc.s V_8
IL_2a58: ldloc.s V_7
IL_2a5a: call string [mscorlib]System.Convert::ToString(int32)
IL_2a5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a64: stloc.s V_8
IL_2a66: ldloc.s V_9
IL_2a68: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2a6d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2a72: stloc.s V_9
IL_2a74: ldloc.s V_8
IL_2a76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2a7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2a80: stloc.s V_6
IL_2a82: ldloc.s V_9
IL_2a84: ldloc.s V_6
IL_2a86: bge.s IL_2ad0
IL_2a88: ldloc.s V_9
IL_2a8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2a8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2a94: stloc.s V_6
IL_2a96: ldloc.s V_9
IL_2a98: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2a9d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2aa2: stloc.s V_7
IL_2aa4: ldloc.s V_8
IL_2aa6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2aab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2ab0: stloc.s V_6
IL_2ab2: ldloc.s V_6
IL_2ab4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ab9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2abe: stloc.s V_7
IL_2ac0: ldloc.s V_6
IL_2ac2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2ac7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2acc: stloc.s V_9
IL_2ace: br.s IL_2b16
IL_2ad0: ldloc.s V_7
IL_2ad2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2ad7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2adc: stloc.s V_8
IL_2ade: ldloc.s V_9
IL_2ae0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ae5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2aea: stloc.s V_8
IL_2aec: ldloc.s V_10
IL_2aee: call string [mscorlib]System.Convert::ToString(int32)
IL_2af3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2af8: stloc.s V_8
IL_2afa: ldloc.s V_7
IL_2afc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2b01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2b06: stloc.s V_9
IL_2b08: ldloc.s V_10
IL_2b0a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b0f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b14: stloc.s V_7
IL_2b16: ldloc.s V_9
IL_2b18: ldloc.s V_7
IL_2b1a: bne.un.s IL_2b64
IL_2b1c: ldloc.s V_10
IL_2b1e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2b23: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2b28: stloc.s V_6
IL_2b2a: ldloc.s V_7
IL_2b2c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2b31: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2b36: stloc.s V_6
IL_2b38: ldloc.s V_8
IL_2b3a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b3f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b44: stloc.s V_6
IL_2b46: ldloc.s V_9
IL_2b48: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2b4d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2b52: stloc.s V_10
IL_2b54: ldloc.s V_9
IL_2b56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2b5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2b60: stloc.s V_7
IL_2b62: br.s IL_2baa
IL_2b64: ldloc.s V_6
IL_2b66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b70: stloc.s V_9
IL_2b72: ldloc.s V_9
IL_2b74: call string [mscorlib]System.Convert::ToString(int32)
IL_2b79: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2b7e: stloc.s V_6
IL_2b80: ldloc.s V_6
IL_2b82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b8c: stloc.s V_7
IL_2b8e: ldloc.s V_7
IL_2b90: call string [mscorlib]System.Convert::ToString(int32)
IL_2b95: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2b9a: stloc.s V_10
IL_2b9c: ldloc.s V_9
IL_2b9e: call string [mscorlib]System.Convert::ToString(int32)
IL_2ba3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ba8: stloc.s V_7
IL_2baa: ldloc.s V_8
IL_2bac: ldloc.s V_7
IL_2bae: blt.s IL_2bf8
IL_2bb0: ldloc.s V_9
IL_2bb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bbc: stloc.s V_9
IL_2bbe: ldloc.s V_6
IL_2bc0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bc5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bca: stloc.s V_6
IL_2bcc: ldloc.s V_7
IL_2bce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bd3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bd8: stloc.s V_6
IL_2bda: ldloc.s V_8
IL_2bdc: call string [mscorlib]System.Convert::ToString(int32)
IL_2be1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2be6: stloc.s V_7
IL_2be8: ldloc.s V_7
IL_2bea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bf4: stloc.s V_6
IL_2bf6: br.s IL_2c3e
IL_2bf8: ldloc.s V_10
IL_2bfa: call string [mscorlib]System.Convert::ToString(int32)
IL_2bff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c04: stloc.s V_9
IL_2c06: ldloc.s V_10
IL_2c08: call string [mscorlib]System.Convert::ToString(int32)
IL_2c0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c12: stloc.s V_10
IL_2c14: ldloc.s V_7
IL_2c16: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2c1b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2c20: stloc.s V_8
IL_2c22: ldloc.s V_7
IL_2c24: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2c29: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2c2e: stloc.s V_10
IL_2c30: ldloc.s V_10
IL_2c32: call string [mscorlib]System.Convert::ToString(int32)
IL_2c37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c3c: stloc.s V_10
IL_2c3e: ldloc.s V_8
IL_2c40: ldloc.s V_8
IL_2c42: beq.s IL_2c8c
IL_2c44: ldloc.s V_8
IL_2c46: call string [mscorlib]System.Convert::ToString(int32)
IL_2c4b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c50: stloc.s V_8
IL_2c52: ldloc.s V_6
IL_2c54: call string [mscorlib]System.Convert::ToString(int32)
IL_2c59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c5e: stloc.s V_10
IL_2c60: ldloc.s V_7
IL_2c62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2c67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2c6c: stloc.s V_10
IL_2c6e: ldloc.s V_10
IL_2c70: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2c75: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2c7a: stloc.s V_8
IL_2c7c: ldloc.s V_6
IL_2c7e: call string [mscorlib]System.Convert::ToString(int32)
IL_2c83: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c88: stloc.s V_8
IL_2c8a: br.s IL_2cd2
IL_2c8c: ldloc.s V_10
IL_2c8e: call string [mscorlib]System.Convert::ToString(int32)
IL_2c93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c98: stloc.s V_6
IL_2c9a: ldloc.s V_10
IL_2c9c: call string [mscorlib]System.Convert::ToString(int32)
IL_2ca1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ca6: stloc.s V_10
IL_2ca8: ldloc.s V_8
IL_2caa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2caf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2cb4: stloc.s V_7
IL_2cb6: ldloc.s V_6
IL_2cb8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2cbd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2cc2: stloc.s V_8
IL_2cc4: ldloc.s V_9
IL_2cc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2ccb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2cd0: stloc.s V_9
IL_2cd2: ldloc.s V_7
IL_2cd4: ldloc.s V_6
IL_2cd6: blt.s IL_2d20
IL_2cd8: ldloc.s V_10
IL_2cda: call string [mscorlib]System.Convert::ToString(int32)
IL_2cdf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ce4: stloc.s V_10
IL_2ce6: ldloc.s V_6
IL_2ce8: call string [mscorlib]System.Convert::ToString(int32)
IL_2ced: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2cf2: stloc.s V_10
IL_2cf4: ldloc.s V_8
IL_2cf6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2cfb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d00: stloc.s V_10
IL_2d02: ldloc.s V_10
IL_2d04: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d09: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d0e: stloc.s V_9
IL_2d10: ldloc.s V_9
IL_2d12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2d17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2d1c: stloc.s V_7
IL_2d1e: br.s IL_2d66
IL_2d20: ldloc.s V_6
IL_2d22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2d27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2d2c: stloc.s V_7
IL_2d2e: ldloc.s V_10
IL_2d30: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2d35: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2d3a: stloc.s V_10
IL_2d3c: ldloc.s V_8
IL_2d3e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d43: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d48: stloc.s V_9
IL_2d4a: ldloc.s V_7
IL_2d4c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2d51: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2d56: stloc.s V_10
IL_2d58: ldloc.s V_10
IL_2d5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d64: stloc.s V_10
IL_2d66: ldloc.s V_10
IL_2d68: ldloc.s V_9
IL_2d6a: blt.s IL_2db4
IL_2d6c: ldloc.s V_10
IL_2d6e: call string [mscorlib]System.Convert::ToString(int32)
IL_2d73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2d78: stloc.s V_9
IL_2d7a: ldloc.s V_6
IL_2d7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d86: stloc.s V_7
IL_2d88: ldloc.s V_8
IL_2d8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d94: stloc.s V_9
IL_2d96: ldloc.s V_10
IL_2d98: call string [mscorlib]System.Convert::ToString(int32)
IL_2d9d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2da2: stloc.s V_7
IL_2da4: ldloc.s V_10
IL_2da6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2dab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2db0: stloc.s V_9
IL_2db2: br.s IL_2dfa
IL_2db4: ldloc.s V_6
IL_2db6: call string [mscorlib]System.Convert::ToString(int32)
IL_2dbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2dc0: stloc.s V_8
IL_2dc2: ldloc.s V_8
IL_2dc4: call string [mscorlib]System.Convert::ToString(int32)
IL_2dc9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2dce: stloc.s V_9
IL_2dd0: ldloc.s V_9
IL_2dd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2dd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2ddc: stloc.s V_7
IL_2dde: ldloc.s V_6
IL_2de0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2de5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2dea: stloc.s V_8
IL_2dec: ldloc.s V_10
IL_2dee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2df3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2df8: stloc.s V_9
IL_2dfa: ldloc.s V_7
IL_2dfc: ldloc.s V_6
IL_2dfe: bgt.s IL_2e48
IL_2e00: ldloc.s V_8
IL_2e02: call string [mscorlib]System.Convert::ToString(int32)
IL_2e07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2e0c: stloc.s V_7
IL_2e0e: ldloc.s V_9
IL_2e10: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e15: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e1a: stloc.s V_9
IL_2e1c: ldloc.s V_10
IL_2e1e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2e23: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2e28: stloc.s V_10
IL_2e2a: ldloc.s V_8
IL_2e2c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2e31: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2e36: stloc.s V_8
IL_2e38: ldloc.s V_8
IL_2e3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2e3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2e44: stloc.s V_8
IL_2e46: br.s IL_2e8e
IL_2e48: ldloc.s V_8
IL_2e4a: call string [mscorlib]System.Convert::ToString(int32)
IL_2e4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2e54: stloc.s V_7
IL_2e56: ldloc.s V_8
IL_2e58: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e5d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e62: stloc.s V_9
IL_2e64: ldloc.s V_8
IL_2e66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2e6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2e70: stloc.s V_7
IL_2e72: ldloc.s V_7
IL_2e74: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e79: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e7e: stloc.s V_7
IL_2e80: ldloc.s V_6
IL_2e82: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e87: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e8c: stloc.s V_10
IL_2e8e: ldloc.s V_9
IL_2e90: ldloc.s V_8
IL_2e92: bgt.s IL_2edc
IL_2e94: ldloc.s V_8
IL_2e96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2e9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2ea0: stloc.s V_10
IL_2ea2: ldloc.s V_8
IL_2ea4: call string [mscorlib]System.Convert::ToString(int32)
IL_2ea9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2eae: stloc.s V_7
IL_2eb0: ldloc.s V_7
IL_2eb2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2eb7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2ebc: stloc.s V_7
IL_2ebe: ldloc.s V_10
IL_2ec0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ec5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2eca: stloc.s V_8
IL_2ecc: ldloc.s V_9
IL_2ece: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ed3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2ed8: stloc.s V_6
IL_2eda: br.s IL_2f22
IL_2edc: ldloc.s V_7
IL_2ede: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2ee3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2ee8: stloc.s V_9
IL_2eea: ldloc.s V_8
IL_2eec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ef1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2ef6: stloc.s V_7
IL_2ef8: ldloc.s V_6
IL_2efa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2eff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2f04: stloc.s V_9
IL_2f06: ldloc.s V_6
IL_2f08: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2f0d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2f12: stloc.s V_6
IL_2f14: ldloc.s V_6
IL_2f16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f20: stloc.s V_8
IL_2f22: ldloc.s V_10
IL_2f24: ldloc.s V_8
IL_2f26: bne.un.s IL_2f70
IL_2f28: ldloc.s V_9
IL_2f2a: call string [mscorlib]System.Convert::ToString(int32)
IL_2f2f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2f34: stloc.s V_6
IL_2f36: ldloc.s V_10
IL_2f38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2f3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2f42: stloc.s V_6
IL_2f44: ldloc.s V_6
IL_2f46: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2f4b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2f50: stloc.s V_10
IL_2f52: ldloc.s V_9
IL_2f54: call string [mscorlib]System.Convert::ToString(int32)
IL_2f59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2f5e: stloc.s V_6
IL_2f60: ldloc.s V_10
IL_2f62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f6c: stloc.s V_8
IL_2f6e: br.s IL_2fb6
IL_2f70: ldloc.s V_8
IL_2f72: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f77: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f7c: stloc.s V_8
IL_2f7e: ldloc.s V_10
IL_2f80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f8a: stloc.s V_10
IL_2f8c: ldloc.s V_8
IL_2f8e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f93: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f98: stloc.s V_10
IL_2f9a: ldloc.s V_6
IL_2f9c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2fa1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2fa6: stloc.s V_7
IL_2fa8: ldloc.s V_9
IL_2faa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2faf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2fb4: stloc.s V_8
IL_2fb6: ldloc.s V_10
IL_2fb8: ldloc.s V_10
IL_2fba: ble.s IL_3004
IL_2fbc: ldloc.s V_6
IL_2fbe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2fc3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2fc8: stloc.s V_7
IL_2fca: ldloc.s V_8
IL_2fcc: call string [mscorlib]System.Convert::ToString(int32)
IL_2fd1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2fd6: stloc.s V_6
IL_2fd8: ldloc.s V_8
IL_2fda: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2fdf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2fe4: stloc.s V_8
IL_2fe6: ldloc.s V_7
IL_2fe8: call string [mscorlib]System.Convert::ToString(int32)
IL_2fed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ff2: stloc.s V_8
IL_2ff4: ldloc.s V_7
IL_2ff6: call string [mscorlib]System.Convert::ToString(int32)
IL_2ffb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3000: stloc.s V_8
IL_3002: br.s IL_304a
IL_3004: ldloc.s V_10
IL_3006: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_300b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3010: stloc.s V_6
IL_3012: ldloc.s V_9
IL_3014: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3019: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_301e: stloc.s V_9
IL_3020: ldloc.s V_9
IL_3022: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3027: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_302c: stloc.s V_9
IL_302e: ldloc.s V_9
IL_3030: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3035: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_303a: stloc.s V_6
IL_303c: ldloc.s V_8
IL_303e: call string [mscorlib]System.Convert::ToString(int32)
IL_3043: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3048: stloc.s V_9
IL_304a: ldloc.s V_10
IL_304c: ldloc.s V_10
IL_304e: bge.s IL_3098
IL_3050: ldloc.s V_6
IL_3052: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3057: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_305c: stloc.s V_9
IL_305e: ldloc.s V_7
IL_3060: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3065: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_306a: stloc.s V_10
IL_306c: ldloc.s V_9
IL_306e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3073: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3078: stloc.s V_6
IL_307a: ldloc.s V_8
IL_307c: call string [mscorlib]System.Convert::ToString(int32)
IL_3081: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3086: stloc.s V_8
IL_3088: ldloc.s V_9
IL_308a: call string [mscorlib]System.Convert::ToString(int32)
IL_308f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3094: stloc.s V_7
IL_3096: br.s IL_30de
IL_3098: ldloc.s V_10
IL_309a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_309f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_30a4: stloc.s V_10
IL_30a6: ldloc.s V_10
IL_30a8: call string [mscorlib]System.Convert::ToString(int32)
IL_30ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_30b2: stloc.s V_9
IL_30b4: ldloc.s V_6
IL_30b6: call string [mscorlib]System.Convert::ToString(int32)
IL_30bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_30c0: stloc.s V_6
IL_30c2: ldloc.s V_10
IL_30c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_30c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_30ce: stloc.s V_8
IL_30d0: ldloc.s V_10
IL_30d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_30d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_30dc: stloc.s V_10
IL_30de: ldloc.s V_6
IL_30e0: ldloc.s V_8
IL_30e2: beq.s IL_312c
IL_30e4: ldloc.s V_8
IL_30e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_30eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_30f0: stloc.s V_7
IL_30f2: ldloc.s V_8
IL_30f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_30f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_30fe: stloc.s V_7
IL_3100: ldloc.s V_8
IL_3102: call string [mscorlib]System.Convert::ToString(int32)
IL_3107: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_310c: stloc.s V_8
IL_310e: ldloc.s V_8
IL_3110: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3115: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_311a: stloc.s V_6
IL_311c: ldloc.s V_6
IL_311e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3123: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3128: stloc.s V_6
IL_312a: br.s IL_3172
IL_312c: ldloc.s V_7
IL_312e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3133: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3138: stloc.s V_10
IL_313a: ldloc.s V_8
IL_313c: call string [mscorlib]System.Convert::ToString(int32)
IL_3141: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3146: stloc.s V_9
IL_3148: ldloc.s V_8
IL_314a: call string [mscorlib]System.Convert::ToString(int32)
IL_314f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3154: stloc.s V_10
IL_3156: ldloc.s V_9
IL_3158: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_315d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3162: stloc.s V_10
IL_3164: ldloc.s V_8
IL_3166: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_316b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3170: stloc.s V_8
IL_3172: ldloc.s V_8
IL_3174: ldloc.s V_8
IL_3176: beq.s IL_31c0
IL_3178: ldloc.s V_10
IL_317a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_317f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3184: stloc.s V_6
IL_3186: ldloc.s V_6
IL_3188: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_318d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3192: stloc.s V_6
IL_3194: ldloc.s V_10
IL_3196: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_319b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_31a0: stloc.s V_7
IL_31a2: ldloc.s V_7
IL_31a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_31a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_31ae: stloc.s V_7
IL_31b0: ldloc.s V_10
IL_31b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_31b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_31bc: stloc.s V_8
IL_31be: br.s IL_3206
IL_31c0: ldloc.s V_10
IL_31c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_31c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_31cc: stloc.s V_10
IL_31ce: ldloc.s V_8
IL_31d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_31d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_31da: stloc.s V_9
IL_31dc: ldloc.s V_7
IL_31de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_31e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_31e8: stloc.s V_6
IL_31ea: ldloc.s V_10
IL_31ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_31f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_31f6: stloc.s V_6
IL_31f8: ldloc.s V_7
IL_31fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_31ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3204: stloc.s V_10
IL_3206: ldloc.s V_6
IL_3208: ldloc.s V_9
IL_320a: ble.s IL_3254
IL_320c: ldloc.s V_6
IL_320e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3213: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3218: stloc.s V_6
IL_321a: ldloc.s V_8
IL_321c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3221: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3226: stloc.s V_6
IL_3228: ldloc.s V_8
IL_322a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_322f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3234: stloc.s V_6
IL_3236: ldloc.s V_8
IL_3238: call string [mscorlib]System.Convert::ToString(int32)
IL_323d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3242: stloc.s V_8
IL_3244: ldloc.s V_10
IL_3246: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_324b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3250: stloc.s V_6
IL_3252: br.s IL_329a
IL_3254: ldloc.s V_8
IL_3256: call string [mscorlib]System.Convert::ToString(int32)
IL_325b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3260: stloc.s V_9
IL_3262: ldloc.s V_7
IL_3264: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3269: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_326e: stloc.s V_9
IL_3270: ldloc.s V_8
IL_3272: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3277: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_327c: stloc.s V_10
IL_327e: ldloc.s V_6
IL_3280: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3285: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_328a: stloc.s V_9
IL_328c: ldloc.s V_6
IL_328e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3293: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3298: stloc.s V_6
IL_329a: ldloc.s V_7
IL_329c: ldloc.s V_6
IL_329e: bne.un.s IL_32e8
IL_32a0: ldloc.s V_8
IL_32a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_32a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_32ac: stloc.s V_8
IL_32ae: ldloc.s V_10
IL_32b0: call string [mscorlib]System.Convert::ToString(int32)
IL_32b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_32ba: stloc.s V_10
IL_32bc: ldloc.s V_10
IL_32be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_32c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_32c8: stloc.s V_8
IL_32ca: ldloc.s V_10
IL_32cc: call string [mscorlib]System.Convert::ToString(int32)
IL_32d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_32d6: stloc.s V_6
IL_32d8: ldloc.s V_10
IL_32da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_32df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_32e4: stloc.s V_10
IL_32e6: br.s IL_332e
IL_32e8: ldloc.s V_8
IL_32ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_32ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_32f4: stloc.s V_6
IL_32f6: ldloc.s V_10
IL_32f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_32fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3302: stloc.s V_10
IL_3304: ldloc.s V_6
IL_3306: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_330b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3310: stloc.s V_8
IL_3312: ldloc.s V_9
IL_3314: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3319: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_331e: stloc.s V_9
IL_3320: ldloc.s V_10
IL_3322: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3327: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_332c: stloc.s V_7
IL_332e: ldloc.s V_10
IL_3330: ldloc.s V_6
IL_3332: blt.s IL_337c
IL_3334: ldloc.s V_6
IL_3336: call string [mscorlib]System.Convert::ToString(int32)
IL_333b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3340: stloc.s V_7
IL_3342: ldloc.s V_10
IL_3344: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3349: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_334e: stloc.s V_7
IL_3350: ldloc.s V_9
IL_3352: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3357: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_335c: stloc.s V_8
IL_335e: ldloc.s V_7
IL_3360: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3365: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_336a: stloc.s V_8
IL_336c: ldloc.s V_6
IL_336e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3373: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3378: stloc.s V_8
IL_337a: br.s IL_33c2
IL_337c: ldloc.s V_6
IL_337e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3383: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3388: stloc.s V_6
IL_338a: ldloc.s V_6
IL_338c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3391: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3396: stloc.s V_8
IL_3398: ldloc.s V_6
IL_339a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_339f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_33a4: stloc.s V_6
IL_33a6: ldloc.s V_7
IL_33a8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_33ad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_33b2: stloc.s V_8
IL_33b4: ldloc.s V_8
IL_33b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_33bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_33c0: stloc.s V_7
IL_33c2: ldloc.s V_9
IL_33c4: ldloc.s V_9
IL_33c6: beq.s IL_3410
IL_33c8: ldloc.s V_8
IL_33ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_33cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_33d4: stloc.s V_9
IL_33d6: ldloc.s V_8
IL_33d8: call string [mscorlib]System.Convert::ToString(int32)
IL_33dd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_33e2: stloc.s V_10
IL_33e4: ldloc.s V_6
IL_33e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_33eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_33f0: stloc.s V_9
IL_33f2: ldloc.s V_8
IL_33f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_33f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_33fe: stloc.s V_6
IL_3400: ldloc.s V_9
IL_3402: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3407: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_340c: stloc.s V_9
IL_340e: br.s IL_3456
IL_3410: ldloc.s V_10
IL_3412: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3417: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_341c: stloc.s V_8
IL_341e: ldloc.s V_10
IL_3420: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3425: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_342a: stloc.s V_9
IL_342c: ldloc.s V_7
IL_342e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3433: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3438: stloc.s V_6
IL_343a: ldloc.s V_8
IL_343c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3441: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3446: stloc.s V_10
IL_3448: ldloc.s V_6
IL_344a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_344f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3454: stloc.s V_9
IL_3456: ldloc.s V_8
IL_3458: ldloc.s V_6
IL_345a: bge.s IL_34a4
IL_345c: ldloc.s V_8
IL_345e: call string [mscorlib]System.Convert::ToString(int32)
IL_3463: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3468: stloc.s V_8
IL_346a: ldloc.s V_8
IL_346c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3471: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3476: stloc.s V_9
IL_3478: ldloc.s V_8
IL_347a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_347f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3484: stloc.s V_9
IL_3486: ldloc.s V_6
IL_3488: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_348d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3492: stloc.s V_10
IL_3494: ldloc.s V_6
IL_3496: call string [mscorlib]System.Convert::ToString(int32)
IL_349b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_34a0: stloc.s V_9
IL_34a2: br.s IL_34ea
IL_34a4: ldloc.s V_10
IL_34a6: call string [mscorlib]System.Convert::ToString(int32)
IL_34ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_34b0: stloc.s V_8
IL_34b2: ldloc.s V_10
IL_34b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34be: stloc.s V_8
IL_34c0: ldloc.s V_6
IL_34c2: call string [mscorlib]System.Convert::ToString(int32)
IL_34c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_34cc: stloc.s V_10
IL_34ce: ldloc.s V_9
IL_34d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34da: stloc.s V_6
IL_34dc: ldloc.s V_7
IL_34de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34e8: stloc.s V_10
IL_34ea: ldloc.s V_10
IL_34ec: ldloc.s V_7
IL_34ee: ble.s IL_3538
IL_34f0: ldloc.s V_8
IL_34f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34fc: stloc.s V_7
IL_34fe: ldloc.s V_6
IL_3500: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3505: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_350a: stloc.s V_7
IL_350c: ldloc.s V_6
IL_350e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3513: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3518: stloc.s V_7
IL_351a: ldloc.s V_7
IL_351c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3521: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3526: stloc.s V_8
IL_3528: ldloc.s V_7
IL_352a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_352f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3534: stloc.s V_6
IL_3536: br.s IL_357e
IL_3538: ldloc.s V_8
IL_353a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_353f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3544: stloc.s V_7
IL_3546: ldloc.s V_7
IL_3548: call string [mscorlib]System.Convert::ToString(int32)
IL_354d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3552: stloc.s V_6
IL_3554: ldloc.s V_10
IL_3556: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_355b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3560: stloc.s V_7
IL_3562: ldloc.s V_6
IL_3564: call string [mscorlib]System.Convert::ToString(int32)
IL_3569: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_356e: stloc.s V_7
IL_3570: ldloc.s V_9
IL_3572: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3577: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_357c: stloc.s V_9
IL_357e: ldloc.s V_10
IL_3580: ldloc.s V_6
IL_3582: bge.s IL_35cc
IL_3584: ldloc.s V_8
IL_3586: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_358b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3590: stloc.s V_9
IL_3592: ldloc.s V_10
IL_3594: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3599: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_359e: stloc.s V_9
IL_35a0: ldloc.s V_6
IL_35a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_35a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_35ac: stloc.s V_10
IL_35ae: ldloc.s V_8
IL_35b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_35b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_35ba: stloc.s V_10
IL_35bc: ldloc.s V_10
IL_35be: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_35c3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_35c8: stloc.s V_9
IL_35ca: br.s IL_3612
IL_35cc: ldloc.s V_6
IL_35ce: call string [mscorlib]System.Convert::ToString(int32)
IL_35d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_35d8: stloc.s V_8
IL_35da: ldloc.s V_7
IL_35dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_35e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_35e6: stloc.s V_9
IL_35e8: ldloc.s V_8
IL_35ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_35ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_35f4: stloc.s V_6
IL_35f6: ldloc.s V_7
IL_35f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_35fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3602: stloc.s V_8
IL_3604: ldloc.s V_7
IL_3606: call string [mscorlib]System.Convert::ToString(int32)
IL_360b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3610: stloc.s V_10
IL_3612: ldloc.s V_6
IL_3614: ldloc.s V_7
IL_3616: bge.s IL_3660
IL_3618: ldloc.s V_10
IL_361a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_361f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3624: stloc.s V_7
IL_3626: ldloc.s V_9
IL_3628: call string [mscorlib]System.Convert::ToString(int32)
IL_362d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3632: stloc.s V_9
IL_3634: ldloc.s V_8
IL_3636: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_363b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3640: stloc.s V_8
IL_3642: ldloc.s V_7
IL_3644: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3649: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_364e: stloc.s V_7
IL_3650: ldloc.s V_9
IL_3652: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3657: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_365c: stloc.s V_8
IL_365e: br.s IL_36a6
IL_3660: ldloc.s V_6
IL_3662: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3667: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_366c: stloc.s V_7
IL_366e: ldloc.s V_6
IL_3670: call string [mscorlib]System.Convert::ToString(int32)
IL_3675: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_367a: stloc.s V_9
IL_367c: ldloc.s V_6
IL_367e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3683: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3688: stloc.s V_10
IL_368a: ldloc.s V_7
IL_368c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3691: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3696: stloc.s V_6
IL_3698: ldloc.s V_8
IL_369a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_369f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_36a4: stloc.s V_8
IL_36a6: ldloc.s V_9
IL_36a8: ldloc.s V_7
IL_36aa: beq.s IL_36f4
IL_36ac: ldloc.s V_8
IL_36ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_36b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_36b8: stloc.s V_6
IL_36ba: ldloc.s V_10
IL_36bc: call string [mscorlib]System.Convert::ToString(int32)
IL_36c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_36c6: stloc.s V_10
IL_36c8: ldloc.s V_8
IL_36ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_36cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_36d4: stloc.s V_7
IL_36d6: ldloc.s V_9
IL_36d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_36dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_36e2: stloc.s V_9
IL_36e4: ldloc.s V_8
IL_36e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_36eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_36f0: stloc.s V_6
IL_36f2: br.s IL_373a
IL_36f4: ldloc.s V_7
IL_36f6: call string [mscorlib]System.Convert::ToString(int32)
IL_36fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3700: stloc.s V_9
IL_3702: ldloc.s V_9
IL_3704: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3709: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_370e: stloc.s V_6
IL_3710: ldloc.s V_9
IL_3712: call string [mscorlib]System.Convert::ToString(int32)
IL_3717: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_371c: stloc.s V_7
IL_371e: ldloc.s V_7
IL_3720: call string [mscorlib]System.Convert::ToString(int32)
IL_3725: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_372a: stloc.s V_9
IL_372c: ldloc.s V_8
IL_372e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3733: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3738: stloc.s V_7
IL_373a: ldloc.s V_7
IL_373c: ldloc.s V_10
IL_373e: beq.s IL_3788
IL_3740: ldloc.s V_6
IL_3742: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3747: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_374c: stloc.s V_6
IL_374e: ldloc.s V_9
IL_3750: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3755: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_375a: stloc.s V_6
IL_375c: ldloc.s V_7
IL_375e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3763: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3768: stloc.s V_6
IL_376a: ldloc.s V_10
IL_376c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3771: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3776: stloc.s V_8
IL_3778: ldloc.s V_7
IL_377a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_377f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3784: stloc.s V_8
IL_3786: br.s IL_37ce
IL_3788: ldloc.s V_7
IL_378a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_378f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3794: stloc.s V_10
IL_3796: ldloc.s V_6
IL_3798: call string [mscorlib]System.Convert::ToString(int32)
IL_379d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_37a2: stloc.s V_7
IL_37a4: ldloc.s V_10
IL_37a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_37ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_37b0: stloc.s V_9
IL_37b2: ldloc.s V_10
IL_37b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_37b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_37be: stloc.s V_10
IL_37c0: ldloc.s V_7
IL_37c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_37c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_37cc: stloc.s V_9
IL_37ce: ldloc.s V_10
IL_37d0: ldloc.s V_8
IL_37d2: beq.s IL_381c
IL_37d4: ldloc.s V_8
IL_37d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_37db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_37e0: stloc.s V_10
IL_37e2: ldloc.s V_7
IL_37e4: call string [mscorlib]System.Convert::ToString(int32)
IL_37e9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_37ee: stloc.s V_8
IL_37f0: ldloc.s V_6
IL_37f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_37f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_37fc: stloc.s V_8
IL_37fe: ldloc.s V_8
IL_3800: call string [mscorlib]System.Convert::ToString(int32)
IL_3805: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_380a: stloc.s V_7
IL_380c: ldloc.s V_9
IL_380e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3813: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3818: stloc.s V_9
IL_381a: br.s IL_3862
IL_381c: ldloc.s V_6
IL_381e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3823: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3828: stloc.s V_6
IL_382a: ldloc.s V_9
IL_382c: call string [mscorlib]System.Convert::ToString(int32)
IL_3831: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3836: stloc.s V_7
IL_3838: ldloc.s V_8
IL_383a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_383f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3844: stloc.s V_9
IL_3846: ldloc.s V_7
IL_3848: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_384d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3852: stloc.s V_6
IL_3854: ldloc.s V_7
IL_3856: call string [mscorlib]System.Convert::ToString(int32)
IL_385b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3860: stloc.s V_9
IL_3862: ldloc.s V_9
IL_3864: ldloc.s V_7
IL_3866: ble.s IL_38b0
IL_3868: ldloc.s V_6
IL_386a: call string [mscorlib]System.Convert::ToString(int32)
IL_386f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3874: stloc.s V_8
IL_3876: ldloc.s V_7
IL_3878: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_387d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3882: stloc.s V_9
IL_3884: ldloc.s V_9
IL_3886: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_388b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3890: stloc.s V_10
IL_3892: ldloc.s V_7
IL_3894: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3899: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_389e: stloc.s V_6
IL_38a0: ldloc.s V_10
IL_38a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_38a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_38ac: stloc.s V_8
IL_38ae: br.s IL_38f6
IL_38b0: ldloc.s V_9
IL_38b2: call string [mscorlib]System.Convert::ToString(int32)
IL_38b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_38bc: stloc.s V_7
IL_38be: ldloc.s V_7
IL_38c0: call string [mscorlib]System.Convert::ToString(int32)
IL_38c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_38ca: stloc.s V_6
IL_38cc: ldloc.s V_8
IL_38ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_38d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_38d8: stloc.s V_9
IL_38da: ldloc.s V_7
IL_38dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_38e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_38e6: stloc.s V_6
IL_38e8: ldloc.s V_8
IL_38ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_38ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_38f4: stloc.s V_10
IL_38f6: ldloc.s V_7
IL_38f8: ldloc.s V_6
IL_38fa: bne.un.s IL_3944
IL_38fc: ldloc.s V_9
IL_38fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3903: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3908: stloc.s V_6
IL_390a: ldloc.s V_10
IL_390c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3911: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3916: stloc.s V_8
IL_3918: ldloc.s V_9
IL_391a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_391f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3924: stloc.s V_9
IL_3926: ldloc.s V_6
IL_3928: call string [mscorlib]System.Convert::ToString(int32)
IL_392d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3932: stloc.s V_10
IL_3934: ldloc.s V_6
IL_3936: call string [mscorlib]System.Convert::ToString(int32)
IL_393b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3940: stloc.s V_6
IL_3942: br.s IL_398a
IL_3944: ldloc.s V_10
IL_3946: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_394b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3950: stloc.s V_7
IL_3952: ldloc.s V_10
IL_3954: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3959: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_395e: stloc.s V_9
IL_3960: ldloc.s V_7
IL_3962: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3967: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_396c: stloc.s V_10
IL_396e: ldloc.s V_7
IL_3970: call string [mscorlib]System.Convert::ToString(int32)
IL_3975: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_397a: stloc.s V_9
IL_397c: ldloc.s V_6
IL_397e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3983: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3988: stloc.s V_6
IL_398a: ldloc.s V_7
IL_398c: ldloc.s V_6
IL_398e: bge.s IL_39d8
IL_3990: ldloc.s V_6
IL_3992: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3997: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_399c: stloc.s V_7
IL_399e: ldloc.s V_7
IL_39a0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_39a5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_39aa: stloc.s V_7
IL_39ac: ldloc.s V_7
IL_39ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_39b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_39b8: stloc.s V_9
IL_39ba: ldloc.s V_8
IL_39bc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_39c1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_39c6: stloc.s V_9
IL_39c8: ldloc.s V_8
IL_39ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_39cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_39d4: stloc.s V_7
IL_39d6: br.s IL_3a1e
IL_39d8: ldloc.s V_8
IL_39da: call string [mscorlib]System.Convert::ToString(int32)
IL_39df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_39e4: stloc.s V_6
IL_39e6: ldloc.s V_7
IL_39e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_39ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_39f2: stloc.s V_8
IL_39f4: ldloc.s V_7
IL_39f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_39fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3a00: stloc.s V_6
IL_3a02: ldloc.s V_9
IL_3a04: call string [mscorlib]System.Convert::ToString(int32)
IL_3a09: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3a0e: stloc.s V_7
IL_3a10: ldloc.s V_7
IL_3a12: call string [mscorlib]System.Convert::ToString(int32)
IL_3a17: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3a1c: stloc.s V_9
IL_3a1e: ldloc.s V_9
IL_3a20: ldloc.s V_7
IL_3a22: bgt.s IL_3a6c
IL_3a24: ldloc.s V_7
IL_3a26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3a2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3a30: stloc.s V_6
IL_3a32: ldloc.s V_8
IL_3a34: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3a39: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3a3e: stloc.s V_10
IL_3a40: ldloc.s V_8
IL_3a42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3a47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3a4c: stloc.s V_9
IL_3a4e: ldloc.s V_10
IL_3a50: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3a55: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3a5a: stloc.s V_8
IL_3a5c: ldloc.s V_9
IL_3a5e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3a63: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3a68: stloc.s V_9
IL_3a6a: br.s IL_3ab2
IL_3a6c: ldloc.s V_8
IL_3a6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3a73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3a78: stloc.s V_9
IL_3a7a: ldloc.s V_7
IL_3a7c: call string [mscorlib]System.Convert::ToString(int32)
IL_3a81: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3a86: stloc.s V_9
IL_3a88: ldloc.s V_6
IL_3a8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3a8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3a94: stloc.s V_9
IL_3a96: ldloc.s V_6
IL_3a98: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3a9d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3aa2: stloc.s V_9
IL_3aa4: ldloc.s V_9
IL_3aa6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3aab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ab0: stloc.s V_8
IL_3ab2: ldloc.s V_6
IL_3ab4: ldloc.s V_6
IL_3ab6: ble.s IL_3b00
IL_3ab8: ldloc.s V_10
IL_3aba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3abf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ac4: stloc.s V_7
IL_3ac6: ldloc.s V_8
IL_3ac8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3acd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ad2: stloc.s V_7
IL_3ad4: ldloc.s V_6
IL_3ad6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3adb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3ae0: stloc.s V_10
IL_3ae2: ldloc.s V_9
IL_3ae4: call string [mscorlib]System.Convert::ToString(int32)
IL_3ae9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3aee: stloc.s V_10
IL_3af0: ldloc.s V_7
IL_3af2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3af7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3afc: stloc.s V_7
IL_3afe: br.s IL_3b46
IL_3b00: ldloc.s V_9
IL_3b02: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3b07: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3b0c: stloc.s V_6
IL_3b0e: ldloc.s V_6
IL_3b10: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3b15: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3b1a: stloc.s V_10
IL_3b1c: ldloc.s V_10
IL_3b1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3b28: stloc.s V_6
IL_3b2a: ldloc.s V_6
IL_3b2c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3b31: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3b36: stloc.s V_7
IL_3b38: ldloc.s V_10
IL_3b3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3b3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3b44: stloc.s V_7
IL_3b46: ldloc.s V_8
IL_3b48: ldloc.s V_7
IL_3b4a: bne.un.s IL_3b94
IL_3b4c: ldloc.s V_7
IL_3b4e: call string [mscorlib]System.Convert::ToString(int32)
IL_3b53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3b58: stloc.s V_10
IL_3b5a: ldloc.s V_9
IL_3b5c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b61: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3b66: stloc.s V_9
IL_3b68: ldloc.s V_10
IL_3b6a: call string [mscorlib]System.Convert::ToString(int32)
IL_3b6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3b74: stloc.s V_10
IL_3b76: ldloc.s V_8
IL_3b78: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3b7d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3b82: stloc.s V_6
IL_3b84: ldloc.s V_8
IL_3b86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3b90: stloc.s V_7
IL_3b92: br.s IL_3bda
IL_3b94: ldloc.s V_10
IL_3b96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ba0: stloc.s V_10
IL_3ba2: ldloc.s V_6
IL_3ba4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3ba9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3bae: stloc.s V_6
IL_3bb0: ldloc.s V_9
IL_3bb2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3bb7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3bbc: stloc.s V_10
IL_3bbe: ldloc.s V_6
IL_3bc0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3bc5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3bca: stloc.s V_6
IL_3bcc: ldloc.s V_8
IL_3bce: call string [mscorlib]System.Convert::ToString(int32)
IL_3bd3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3bd8: stloc.s V_7
IL_3bda: ldloc.s V_6
IL_3bdc: ldloc.s V_6
IL_3bde: bge.s IL_3c28
IL_3be0: ldloc.s V_10
IL_3be2: call string [mscorlib]System.Convert::ToString(int32)
IL_3be7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3bec: stloc.s V_8
IL_3bee: ldloc.s V_9
IL_3bf0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3bf5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3bfa: stloc.s V_10
IL_3bfc: ldloc.s V_7
IL_3bfe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c03: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c08: stloc.s V_10
IL_3c0a: ldloc.s V_8
IL_3c0c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3c11: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3c16: stloc.s V_7
IL_3c18: ldloc.s V_9
IL_3c1a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c1f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c24: stloc.s V_8
IL_3c26: br.s IL_3c6e
IL_3c28: ldloc.s V_10
IL_3c2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3c2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3c34: stloc.s V_8
IL_3c36: ldloc.s V_7
IL_3c38: call string [mscorlib]System.Convert::ToString(int32)
IL_3c3d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3c42: stloc.s V_10
IL_3c44: ldloc.s V_7
IL_3c46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c50: stloc.s V_7
IL_3c52: ldloc.s V_8
IL_3c54: call string [mscorlib]System.Convert::ToString(int32)
IL_3c59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3c5e: stloc.s V_9
IL_3c60: ldloc.s V_10
IL_3c62: call string [mscorlib]System.Convert::ToString(int32)
IL_3c67: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3c6c: stloc.s V_8
IL_3c6e: ldloc.s V_9
IL_3c70: ldloc.s V_10
IL_3c72: bge.s IL_3cbc
IL_3c74: ldloc.s V_10
IL_3c76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c80: stloc.s V_7
IL_3c82: ldloc.s V_10
IL_3c84: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c89: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c8e: stloc.s V_9
IL_3c90: ldloc.s V_7
IL_3c92: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3c97: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3c9c: stloc.s V_7
IL_3c9e: ldloc.s V_6
IL_3ca0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3ca5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3caa: stloc.s V_10
IL_3cac: ldloc.s V_6
IL_3cae: call string [mscorlib]System.Convert::ToString(int32)
IL_3cb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3cb8: stloc.s V_6
IL_3cba: br.s IL_3d02
IL_3cbc: ldloc.s V_7
IL_3cbe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3cc3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3cc8: stloc.s V_7
IL_3cca: ldloc.s V_7
IL_3ccc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3cd1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3cd6: stloc.s V_9
IL_3cd8: ldloc.s V_9
IL_3cda: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3cdf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ce4: stloc.s V_9
IL_3ce6: ldloc.s V_10
IL_3ce8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3ced: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3cf2: stloc.s V_8
IL_3cf4: ldloc.s V_7
IL_3cf6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3cfb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3d00: stloc.s V_7
IL_3d02: ldloc.s V_10
IL_3d04: ldloc.s V_7
IL_3d06: bge.s IL_3d50
IL_3d08: ldloc.s V_10
IL_3d0a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3d0f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3d14: stloc.s V_9
IL_3d16: ldloc.s V_7
IL_3d18: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3d1d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3d22: stloc.s V_10
IL_3d24: ldloc.s V_8
IL_3d26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3d2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3d30: stloc.s V_10
IL_3d32: ldloc.s V_6
IL_3d34: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3d39: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3d3e: stloc.s V_6
IL_3d40: ldloc.s V_10
IL_3d42: call string [mscorlib]System.Convert::ToString(int32)
IL_3d47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3d4c: stloc.s V_7
IL_3d4e: br.s IL_3d96
IL_3d50: ldloc.s V_10
IL_3d52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3d57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3d5c: stloc.s V_7
IL_3d5e: ldloc.s V_8
IL_3d60: call string [mscorlib]System.Convert::ToString(int32)
IL_3d65: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3d6a: stloc.s V_8
IL_3d6c: ldloc.s V_9
IL_3d6e: call string [mscorlib]System.Convert::ToString(int32)
IL_3d73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3d78: stloc.s V_8
IL_3d7a: ldloc.s V_9
IL_3d7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3d81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3d86: stloc.s V_7
IL_3d88: ldloc.s V_9
IL_3d8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3d8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3d94: stloc.s V_10
IL_3d96: ldloc.s V_9
IL_3d98: ldloc.s V_10
IL_3d9a: ble.s IL_3de4
IL_3d9c: ldloc.s V_8
IL_3d9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3da3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3da8: stloc.s V_10
IL_3daa: ldloc.s V_10
IL_3dac: call string [mscorlib]System.Convert::ToString(int32)
IL_3db1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3db6: stloc.s V_7
IL_3db8: ldloc.s V_8
IL_3dba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3dbf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3dc4: stloc.s V_10
IL_3dc6: ldloc.s V_10
IL_3dc8: call string [mscorlib]System.Convert::ToString(int32)
IL_3dcd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3dd2: stloc.s V_10
IL_3dd4: ldloc.s V_8
IL_3dd6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3ddb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3de0: stloc.s V_8
IL_3de2: br.s IL_3e2a
IL_3de4: ldloc.s V_6
IL_3de6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3deb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3df0: stloc.s V_6
IL_3df2: ldloc.s V_8
IL_3df4: call string [mscorlib]System.Convert::ToString(int32)
IL_3df9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3dfe: stloc.s V_7
IL_3e00: ldloc.s V_8
IL_3e02: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3e07: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3e0c: stloc.s V_9
IL_3e0e: ldloc.s V_10
IL_3e10: call string [mscorlib]System.Convert::ToString(int32)
IL_3e15: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e1a: stloc.s V_7
IL_3e1c: ldloc.s V_10
IL_3e1e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3e23: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3e28: stloc.s V_9
IL_3e2a: ldloc.s V_6
IL_3e2c: ldloc.s V_9
IL_3e2e: bne.un.s IL_3e78
IL_3e30: ldloc.s V_7
IL_3e32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3e37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3e3c: stloc.s V_7
IL_3e3e: ldloc.s V_9
IL_3e40: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3e45: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3e4a: stloc.s V_7
IL_3e4c: ldloc.s V_9
IL_3e4e: call string [mscorlib]System.Convert::ToString(int32)
IL_3e53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e58: stloc.s V_6
IL_3e5a: ldloc.s V_10
IL_3e5c: call string [mscorlib]System.Convert::ToString(int32)
IL_3e61: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e66: stloc.s V_6
IL_3e68: ldloc.s V_9
IL_3e6a: call string [mscorlib]System.Convert::ToString(int32)
IL_3e6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e74: stloc.s V_9
IL_3e76: br.s IL_3ebe
IL_3e78: ldloc.s V_10
IL_3e7a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3e7f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3e84: stloc.s V_7
IL_3e86: ldloc.s V_6
IL_3e88: call string [mscorlib]System.Convert::ToString(int32)
IL_3e8d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e92: stloc.s V_9
IL_3e94: ldloc.s V_6
IL_3e96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3e9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ea0: stloc.s V_7
IL_3ea2: ldloc.s V_10
IL_3ea4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3ea9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3eae: stloc.s V_6
IL_3eb0: ldloc.s V_10
IL_3eb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3eb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ebc: stloc.s V_10
IL_3ebe: ldloc.s V_6
IL_3ec0: ldloc.s V_9
IL_3ec2: bgt.s IL_3f0c
IL_3ec4: ldloc.s V_10
IL_3ec6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3ecb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ed0: stloc.s V_7
IL_3ed2: ldloc.s V_6
IL_3ed4: call string [mscorlib]System.Convert::ToString(int32)
IL_3ed9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3ede: stloc.s V_7
IL_3ee0: ldloc.s V_6
IL_3ee2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3ee7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3eec: stloc.s V_8
IL_3eee: ldloc.s V_9
IL_3ef0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3ef5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3efa: stloc.s V_9
IL_3efc: ldloc.s V_10
IL_3efe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3f03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3f08: stloc.s V_8
IL_3f0a: br.s IL_3f52
IL_3f0c: ldloc.s V_6
IL_3f0e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3f13: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3f18: stloc.s V_6
IL_3f1a: ldloc.s V_7
IL_3f1c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3f21: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3f26: stloc.s V_10
IL_3f28: ldloc.s V_7
IL_3f2a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3f2f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3f34: stloc.s V_9
IL_3f36: ldloc.s V_6
IL_3f38: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3f3d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3f42: stloc.s V_6
IL_3f44: ldloc.s V_7
IL_3f46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3f4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3f50: stloc.s V_9
IL_3f52: ldloc.s V_7
IL_3f54: ldloc.s V_7
IL_3f56: bne.un.s IL_3fa0
IL_3f58: ldloc.s V_8
IL_3f5a: call string [mscorlib]System.Convert::ToString(int32)
IL_3f5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3f64: stloc.s V_7
IL_3f66: ldloc.s V_7
IL_3f68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3f6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3f72: stloc.s V_9
IL_3f74: ldloc.s V_8
IL_3f76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3f7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3f80: stloc.s V_10
IL_3f82: ldloc.s V_7
IL_3f84: call string [mscorlib]System.Convert::ToString(int32)
IL_3f89: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3f8e: stloc.s V_10
IL_3f90: ldloc.s V_8
IL_3f92: call string [mscorlib]System.Convert::ToString(int32)
IL_3f97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3f9c: stloc.s V_8
IL_3f9e: br.s IL_3fe6
IL_3fa0: ldloc.s V_10
IL_3fa2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3fa7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3fac: stloc.s V_6
IL_3fae: ldloc.s V_6
IL_3fb0: call string [mscorlib]System.Convert::ToString(int32)
IL_3fb5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3fba: stloc.s V_10
IL_3fbc: ldloc.s V_7
IL_3fbe: call string [mscorlib]System.Convert::ToString(int32)
IL_3fc3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3fc8: stloc.s V_7
IL_3fca: ldloc.s V_7
IL_3fcc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3fd1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3fd6: stloc.s V_9
IL_3fd8: ldloc.s V_7
IL_3fda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3fdf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3fe4: stloc.s V_10
IL_3fe6: ldloc.s V_10
IL_3fe8: ldloc.s V_7
IL_3fea: bne.un.s IL_4034
IL_3fec: ldloc.s V_10
IL_3fee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3ff3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ff8: stloc.s V_7
IL_3ffa: ldloc.s V_8
IL_3ffc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4001: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4006: stloc.s V_7
IL_4008: ldloc.s V_10
IL_400a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_400f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4014: stloc.s V_9
IL_4016: ldloc.s V_7
IL_4018: call string [mscorlib]System.Convert::ToString(int32)
IL_401d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4022: stloc.s V_10
IL_4024: ldloc.s V_8
IL_4026: call string [mscorlib]System.Convert::ToString(int32)
IL_402b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4030: stloc.s V_10
IL_4032: br.s IL_407a
IL_4034: ldloc.s V_7
IL_4036: call string [mscorlib]System.Convert::ToString(int32)
IL_403b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4040: stloc.s V_8
IL_4042: ldloc.s V_9
IL_4044: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4049: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_404e: stloc.s V_7
IL_4050: ldloc.s V_6
IL_4052: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4057: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_405c: stloc.s V_7
IL_405e: ldloc.s V_9
IL_4060: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4065: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_406a: stloc.s V_6
IL_406c: ldloc.s V_7
IL_406e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4073: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4078: stloc.s V_10
IL_407a: ldloc.s V_6
IL_407c: ldloc.s V_9
IL_407e: bge.s IL_40c8
IL_4080: ldloc.s V_8
IL_4082: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4087: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_408c: stloc.s V_10
IL_408e: ldloc.s V_8
IL_4090: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4095: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_409a: stloc.s V_8
IL_409c: ldloc.s V_8
IL_409e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_40a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_40a8: stloc.s V_8
IL_40aa: ldloc.s V_10
IL_40ac: call string [mscorlib]System.Convert::ToString(int32)
IL_40b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_40b6: stloc.s V_6
IL_40b8: ldloc.s V_7
IL_40ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_40bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_40c4: stloc.s V_6
IL_40c6: br.s IL_410e
IL_40c8: ldloc.s V_7
IL_40ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_40cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_40d4: stloc.s V_9
IL_40d6: ldloc.s V_10
IL_40d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_40dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_40e2: stloc.s V_10
IL_40e4: ldloc.s V_6
IL_40e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_40eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_40f0: stloc.s V_9
IL_40f2: ldloc.s V_7
IL_40f4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_40f9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_40fe: stloc.s V_10
IL_4100: ldloc.s V_7
IL_4102: call string [mscorlib]System.Convert::ToString(int32)
IL_4107: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_410c: stloc.s V_9
IL_410e: ldloc.s V_8
IL_4110: ldloc.s V_8
IL_4112: bne.un.s IL_415c
IL_4114: ldloc.s V_9
IL_4116: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_411b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4120: stloc.s V_9
IL_4122: ldloc.s V_9
IL_4124: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4129: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_412e: stloc.s V_6
IL_4130: ldloc.s V_10
IL_4132: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4137: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_413c: stloc.s V_9
IL_413e: ldloc.s V_8
IL_4140: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4145: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_414a: stloc.s V_7
IL_414c: ldloc.s V_7
IL_414e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4153: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4158: stloc.s V_6
IL_415a: br.s IL_41a2
IL_415c: ldloc.s V_8
IL_415e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4163: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4168: stloc.s V_7
IL_416a: ldloc.s V_9
IL_416c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4171: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4176: stloc.s V_10
IL_4178: ldloc.s V_6
IL_417a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_417f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4184: stloc.s V_9
IL_4186: ldloc.s V_8
IL_4188: call string [mscorlib]System.Convert::ToString(int32)
IL_418d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4192: stloc.s V_7
IL_4194: ldloc.s V_8
IL_4196: call string [mscorlib]System.Convert::ToString(int32)
IL_419b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_41a0: stloc.s V_6
IL_41a2: ldloc.s V_8
IL_41a4: ldloc.s V_10
IL_41a6: ble.s IL_41f0
IL_41a8: ldloc.s V_9
IL_41aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_41af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_41b4: stloc.s V_7
IL_41b6: ldloc.s V_8
IL_41b8: call string [mscorlib]System.Convert::ToString(int32)
IL_41bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_41c2: stloc.s V_9
IL_41c4: ldloc.s V_8
IL_41c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_41cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_41d0: stloc.s V_8
IL_41d2: ldloc.s V_10
IL_41d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_41d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_41de: stloc.s V_6
IL_41e0: ldloc.s V_6
IL_41e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_41e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_41ec: stloc.s V_9
IL_41ee: br.s IL_4236
IL_41f0: ldloc.s V_8
IL_41f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_41f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_41fc: stloc.s V_6
IL_41fe: ldloc.s V_7
IL_4200: call string [mscorlib]System.Convert::ToString(int32)
IL_4205: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_420a: stloc.s V_10
IL_420c: ldloc.s V_9
IL_420e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4213: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4218: stloc.s V_9
IL_421a: ldloc.s V_7
IL_421c: call string [mscorlib]System.Convert::ToString(int32)
IL_4221: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4226: stloc.s V_9
IL_4228: ldloc.s V_6
IL_422a: call string [mscorlib]System.Convert::ToString(int32)
IL_422f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4234: stloc.s V_6
IL_4236: ldloc.s V_6
IL_4238: ldloc.s V_9
IL_423a: blt.s IL_4284
IL_423c: ldloc.s V_9
IL_423e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4243: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4248: stloc.s V_8
IL_424a: ldloc.s V_8
IL_424c: call string [mscorlib]System.Convert::ToString(int32)
IL_4251: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4256: stloc.s V_8
IL_4258: ldloc.s V_6
IL_425a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_425f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4264: stloc.s V_6
IL_4266: ldloc.s V_10
IL_4268: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_426d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4272: stloc.s V_6
IL_4274: ldloc.s V_10
IL_4276: call string [mscorlib]System.Convert::ToString(int32)
IL_427b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4280: stloc.s V_6
IL_4282: br.s IL_42ca
IL_4284: ldloc.s V_7
IL_4286: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_428b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4290: stloc.s V_7
IL_4292: ldloc.s V_9
IL_4294: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4299: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_429e: stloc.s V_10
IL_42a0: ldloc.s V_7
IL_42a2: call string [mscorlib]System.Convert::ToString(int32)
IL_42a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_42ac: stloc.s V_9
IL_42ae: ldloc.s V_6
IL_42b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_42b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_42ba: stloc.s V_6
IL_42bc: ldloc.s V_8
IL_42be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_42c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_42c8: stloc.s V_6
IL_42ca: ldloc.s V_10
IL_42cc: ldloc.s V_6
IL_42ce: blt.s IL_4318
IL_42d0: ldloc.s V_10
IL_42d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_42d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_42dc: stloc.s V_6
IL_42de: ldloc.s V_9
IL_42e0: call string [mscorlib]System.Convert::ToString(int32)
IL_42e5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_42ea: stloc.s V_8
IL_42ec: ldloc.s V_7
IL_42ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_42f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_42f8: stloc.s V_6
IL_42fa: ldloc.s V_8
IL_42fc: call string [mscorlib]System.Convert::ToString(int32)
IL_4301: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4306: stloc.s V_7
IL_4308: ldloc.s V_10
IL_430a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_430f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4314: stloc.s V_9
IL_4316: br.s IL_435e
IL_4318: ldloc.s V_10
IL_431a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_431f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4324: stloc.s V_8
IL_4326: ldloc.s V_10
IL_4328: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_432d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4332: stloc.s V_9
IL_4334: ldloc.s V_6
IL_4336: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_433b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4340: stloc.s V_6
IL_4342: ldloc.s V_8
IL_4344: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4349: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_434e: stloc.s V_7
IL_4350: ldloc.s V_6
IL_4352: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4357: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_435c: stloc.s V_7
IL_435e: ldloc.s V_9
IL_4360: ldloc.s V_9
IL_4362: bgt.s IL_43ac
IL_4364: ldloc.s V_8
IL_4366: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_436b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4370: stloc.s V_10
IL_4372: ldloc.s V_7
IL_4374: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4379: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_437e: stloc.s V_10
IL_4380: ldloc.s V_7
IL_4382: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4387: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_438c: stloc.s V_9
IL_438e: ldloc.s V_10
IL_4390: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4395: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_439a: stloc.s V_8
IL_439c: ldloc.s V_9
IL_439e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_43a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_43a8: stloc.s V_10
IL_43aa: br.s IL_43f2
IL_43ac: ldloc.s V_9
IL_43ae: call string [mscorlib]System.Convert::ToString(int32)
IL_43b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_43b8: stloc.s V_6
IL_43ba: ldloc.s V_7
IL_43bc: call string [mscorlib]System.Convert::ToString(int32)
IL_43c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_43c6: stloc.s V_9
IL_43c8: ldloc.s V_7
IL_43ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_43cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_43d4: stloc.s V_7
IL_43d6: ldloc.s V_7
IL_43d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_43dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_43e2: stloc.s V_9
IL_43e4: ldloc.s V_10
IL_43e6: call string [mscorlib]System.Convert::ToString(int32)
IL_43eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_43f0: stloc.s V_7
IL_43f2: ldloc.s V_9
IL_43f4: ldloc.s V_10
IL_43f6: bge.s IL_4440
IL_43f8: ldloc.s V_8
IL_43fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_43ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4404: stloc.s V_10
IL_4406: ldloc.s V_10
IL_4408: call string [mscorlib]System.Convert::ToString(int32)
IL_440d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4412: stloc.s V_8
IL_4414: ldloc.s V_9
IL_4416: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_441b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4420: stloc.s V_8
IL_4422: ldloc.s V_7
IL_4424: call string [mscorlib]System.Convert::ToString(int32)
IL_4429: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_442e: stloc.s V_9
IL_4430: ldloc.s V_10
IL_4432: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4437: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_443c: stloc.s V_7
IL_443e: br.s IL_4486
IL_4440: ldloc.s V_7
IL_4442: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4447: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_444c: stloc.s V_10
IL_444e: ldloc.s V_6
IL_4450: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4455: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_445a: stloc.s V_8
IL_445c: ldloc.s V_10
IL_445e: call string [mscorlib]System.Convert::ToString(int32)
IL_4463: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4468: stloc.s V_7
IL_446a: ldloc.s V_9
IL_446c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4471: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4476: stloc.s V_6
IL_4478: ldloc.s V_6
IL_447a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_447f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4484: stloc.s V_10
IL_4486: ldloc.s V_6
IL_4488: ldloc.s V_9
IL_448a: blt.s IL_44d4
IL_448c: ldloc.s V_8
IL_448e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4493: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4498: stloc.s V_6
IL_449a: ldloc.s V_6
IL_449c: call string [mscorlib]System.Convert::ToString(int32)
IL_44a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44a6: stloc.s V_7
IL_44a8: ldloc.s V_8
IL_44aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_44af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_44b4: stloc.s V_9
IL_44b6: ldloc.s V_7
IL_44b8: call string [mscorlib]System.Convert::ToString(int32)
IL_44bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44c2: stloc.s V_8
IL_44c4: ldloc.s V_9
IL_44c6: call string [mscorlib]System.Convert::ToString(int32)
IL_44cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44d0: stloc.s V_6
IL_44d2: br.s IL_451a
IL_44d4: ldloc.s V_8
IL_44d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_44db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_44e0: stloc.s V_7
IL_44e2: ldloc.s V_10
IL_44e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_44e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_44ee: stloc.s V_8
IL_44f0: ldloc.s V_7
IL_44f2: call string [mscorlib]System.Convert::ToString(int32)
IL_44f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44fc: stloc.s V_10
IL_44fe: ldloc.s V_8
IL_4500: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4505: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_450a: stloc.s V_8
IL_450c: ldloc.s V_9
IL_450e: call string [mscorlib]System.Convert::ToString(int32)
IL_4513: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4518: stloc.s V_7
IL_451a: ldloc.s V_7
IL_451c: ldloc.s V_8
IL_451e: bne.un.s IL_4568
IL_4520: ldloc.s V_8
IL_4522: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4527: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_452c: stloc.s V_9
IL_452e: ldloc.s V_8
IL_4530: call string [mscorlib]System.Convert::ToString(int32)
IL_4535: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_453a: stloc.s V_8
IL_453c: ldloc.s V_9
IL_453e: call string [mscorlib]System.Convert::ToString(int32)
IL_4543: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4548: stloc.s V_7
IL_454a: ldloc.s V_6
IL_454c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4551: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4556: stloc.s V_8
IL_4558: ldloc.s V_8
IL_455a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_455f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4564: stloc.s V_8
IL_4566: br.s IL_45ae
IL_4568: ldloc.s V_6
IL_456a: call string [mscorlib]System.Convert::ToString(int32)
IL_456f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4574: stloc.s V_10
IL_4576: ldloc.s V_7
IL_4578: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_457d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4582: stloc.s V_8
IL_4584: ldloc.s V_7
IL_4586: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_458b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4590: stloc.s V_10
IL_4592: ldloc.s V_7
IL_4594: call string [mscorlib]System.Convert::ToString(int32)
IL_4599: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_459e: stloc.s V_7
IL_45a0: ldloc.s V_8
IL_45a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_45a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_45ac: stloc.s V_9
IL_45ae: ldloc.s V_10
IL_45b0: ldloc.s V_7
IL_45b2: bne.un.s IL_45fc
IL_45b4: ldloc.s V_7
IL_45b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_45bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_45c0: stloc.s V_10
IL_45c2: ldloc.s V_9
IL_45c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_45c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_45ce: stloc.s V_6
IL_45d0: ldloc.s V_6
IL_45d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_45d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_45dc: stloc.s V_10
IL_45de: ldloc.s V_9
IL_45e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_45e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_45ea: stloc.s V_6
IL_45ec: ldloc.s V_7
IL_45ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_45f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_45f8: stloc.s V_7
IL_45fa: br.s IL_4642
IL_45fc: ldloc.s V_6
IL_45fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4603: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4608: stloc.s V_10
IL_460a: ldloc.s V_7
IL_460c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4611: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4616: stloc.s V_9
IL_4618: ldloc.s V_10
IL_461a: call string [mscorlib]System.Convert::ToString(int32)
IL_461f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4624: stloc.s V_6
IL_4626: ldloc.s V_10
IL_4628: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_462d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4632: stloc.s V_6
IL_4634: ldloc.s V_7
IL_4636: call string [mscorlib]System.Convert::ToString(int32)
IL_463b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4640: stloc.s V_7
IL_4642: ldloc.s V_9
IL_4644: ldloc.s V_10
IL_4646: blt.s IL_4690
IL_4648: ldloc.s V_9
IL_464a: call string [mscorlib]System.Convert::ToString(int32)
IL_464f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4654: stloc.s V_9
IL_4656: ldloc.s V_9
IL_4658: call string [mscorlib]System.Convert::ToString(int32)
IL_465d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4662: stloc.s V_7
IL_4664: ldloc.s V_9
IL_4666: call string [mscorlib]System.Convert::ToString(int32)
IL_466b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4670: stloc.s V_7
IL_4672: ldloc.s V_10
IL_4674: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4679: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_467e: stloc.s V_7
IL_4680: ldloc.s V_9
IL_4682: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4687: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_468c: stloc.s V_8
IL_468e: br.s IL_46d6
IL_4690: ldloc.s V_6
IL_4692: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4697: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_469c: stloc.s V_10
IL_469e: ldloc.s V_10
IL_46a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_46a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_46aa: stloc.s V_8
IL_46ac: ldloc.s V_9
IL_46ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_46b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_46b8: stloc.s V_6
IL_46ba: ldloc.s V_9
IL_46bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_46c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_46c6: stloc.s V_8
IL_46c8: ldloc.s V_8
IL_46ca: call string [mscorlib]System.Convert::ToString(int32)
IL_46cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_46d4: stloc.s V_10
IL_46d6: ldloc.s V_9
IL_46d8: ldloc.s V_8
IL_46da: beq.s IL_4724
IL_46dc: ldloc.s V_7
IL_46de: call string [mscorlib]System.Convert::ToString(int32)
IL_46e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_46e8: stloc.s V_10
IL_46ea: ldloc.s V_9
IL_46ec: call string [mscorlib]System.Convert::ToString(int32)
IL_46f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_46f6: stloc.s V_9
IL_46f8: ldloc.s V_8
IL_46fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_46ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4704: stloc.s V_7
IL_4706: ldloc.s V_10
IL_4708: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_470d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4712: stloc.s V_9
IL_4714: ldloc.s V_6
IL_4716: call string [mscorlib]System.Convert::ToString(int32)
IL_471b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4720: stloc.s V_10
IL_4722: br.s IL_476a
IL_4724: ldloc.s V_10
IL_4726: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_472b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4730: stloc.s V_6
IL_4732: ldloc.s V_8
IL_4734: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4739: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_473e: stloc.s V_6
IL_4740: ldloc.s V_10
IL_4742: call string [mscorlib]System.Convert::ToString(int32)
IL_4747: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_474c: stloc.s V_6
IL_474e: ldloc.s V_9
IL_4750: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4755: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_475a: stloc.s V_10
IL_475c: ldloc.s V_6
IL_475e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4763: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4768: stloc.s V_6
IL_476a: ldloc.s V_7
IL_476c: ldloc.s V_6
IL_476e: ble.s IL_47b8
IL_4770: ldloc.s V_8
IL_4772: call string [mscorlib]System.Convert::ToString(int32)
IL_4777: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_477c: stloc.s V_8
IL_477e: ldloc.s V_7
IL_4780: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4785: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_478a: stloc.s V_8
IL_478c: ldloc.s V_10
IL_478e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4793: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4798: stloc.s V_8
IL_479a: ldloc.s V_10
IL_479c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_47a1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_47a6: stloc.s V_7
IL_47a8: ldloc.s V_8
IL_47aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_47af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_47b4: stloc.s V_10
IL_47b6: br.s IL_47fe
IL_47b8: ldloc.s V_7
IL_47ba: call string [mscorlib]System.Convert::ToString(int32)
IL_47bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_47c4: stloc.s V_9
IL_47c6: ldloc.s V_9
IL_47c8: call string [mscorlib]System.Convert::ToString(int32)
IL_47cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_47d2: stloc.s V_9
IL_47d4: ldloc.s V_6
IL_47d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_47db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_47e0: stloc.s V_10
IL_47e2: ldloc.s V_9
IL_47e4: call string [mscorlib]System.Convert::ToString(int32)
IL_47e9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_47ee: stloc.s V_7
IL_47f0: ldloc.s V_9
IL_47f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_47f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_47fc: stloc.s V_10
IL_47fe: ldloc.s V_9
IL_4800: ldloc.s V_8
IL_4802: blt.s IL_484c
IL_4804: ldloc.s V_10
IL_4806: call string [mscorlib]System.Convert::ToString(int32)
IL_480b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4810: stloc.s V_9
IL_4812: ldloc.s V_6
IL_4814: call string [mscorlib]System.Convert::ToString(int32)
IL_4819: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_481e: stloc.s V_8
IL_4820: ldloc.s V_9
IL_4822: call string [mscorlib]System.Convert::ToString(int32)
IL_4827: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_482c: stloc.s V_8
IL_482e: ldloc.s V_7
IL_4830: call string [mscorlib]System.Convert::ToString(int32)
IL_4835: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_483a: stloc.s V_9
IL_483c: ldloc.s V_7
IL_483e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4843: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4848: stloc.s V_6
IL_484a: br.s IL_4892
IL_484c: ldloc.s V_9
IL_484e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4853: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4858: stloc.s V_7
IL_485a: ldloc.s V_9
IL_485c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4861: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4866: stloc.s V_10
IL_4868: ldloc.s V_9
IL_486a: call string [mscorlib]System.Convert::ToString(int32)
IL_486f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4874: stloc.s V_7
IL_4876: ldloc.s V_8
IL_4878: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_487d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4882: stloc.s V_8
IL_4884: ldloc.s V_6
IL_4886: call string [mscorlib]System.Convert::ToString(int32)
IL_488b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4890: stloc.s V_8
IL_4892: ldloc.s V_10
IL_4894: ldloc.s V_9
IL_4896: ble.s IL_48e0
IL_4898: ldloc.s V_10
IL_489a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_489f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48a4: stloc.s V_7
IL_48a6: ldloc.s V_6
IL_48a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_48ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48b2: stloc.s V_8
IL_48b4: ldloc.s V_10
IL_48b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_48bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48c0: stloc.s V_7
IL_48c2: ldloc.s V_7
IL_48c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_48c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48ce: stloc.s V_6
IL_48d0: ldloc.s V_9
IL_48d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_48d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_48dc: stloc.s V_9
IL_48de: br.s IL_4926
IL_48e0: ldloc.s V_9
IL_48e2: call string [mscorlib]System.Convert::ToString(int32)
IL_48e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_48ec: stloc.s V_8
IL_48ee: ldloc.s V_7
IL_48f0: call string [mscorlib]System.Convert::ToString(int32)
IL_48f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_48fa: stloc.s V_6
IL_48fc: ldloc.s V_10
IL_48fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4903: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4908: stloc.s V_9
IL_490a: ldloc.s V_8
IL_490c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4911: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4916: stloc.s V_7
IL_4918: ldloc.s V_6
IL_491a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_491f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4924: stloc.s V_8
IL_4926: ldloc.s V_8
IL_4928: ldloc.s V_9
IL_492a: bne.un.s IL_4974
IL_492c: ldloc.s V_10
IL_492e: call string [mscorlib]System.Convert::ToString(int32)
IL_4933: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4938: stloc.s V_8
IL_493a: ldloc.s V_7
IL_493c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4941: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4946: stloc.s V_8
IL_4948: ldloc.s V_6
IL_494a: call string [mscorlib]System.Convert::ToString(int32)
IL_494f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4954: stloc.s V_9
IL_4956: ldloc.s V_7
IL_4958: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_495d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4962: stloc.s V_9
IL_4964: ldloc.s V_10
IL_4966: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_496b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4970: stloc.s V_7
IL_4972: br.s IL_49ba
IL_4974: ldloc.s V_10
IL_4976: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_497b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4980: stloc.s V_10
IL_4982: ldloc.s V_7
IL_4984: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4989: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_498e: stloc.s V_7
IL_4990: ldloc.s V_10
IL_4992: call string [mscorlib]System.Convert::ToString(int32)
IL_4997: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_499c: stloc.s V_7
IL_499e: ldloc.s V_6
IL_49a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_49aa: stloc.s V_6
IL_49ac: ldloc.s V_6
IL_49ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_49b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_49b8: stloc.s V_9
IL_49ba: ldloc.s V_7
IL_49bc: ldloc.s V_9
IL_49be: beq.s IL_4a08
IL_49c0: ldloc.s V_8
IL_49c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_49cc: stloc.s V_8
IL_49ce: ldloc.s V_9
IL_49d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_49d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_49da: stloc.s V_9
IL_49dc: ldloc.s V_6
IL_49de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_49e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_49e8: stloc.s V_7
IL_49ea: ldloc.s V_10
IL_49ec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49f1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_49f6: stloc.s V_6
IL_49f8: ldloc.s V_7
IL_49fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4a04: stloc.s V_8
IL_4a06: br.s IL_4a4e
IL_4a08: ldloc.s V_6
IL_4a0a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a0f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a14: stloc.s V_9
IL_4a16: ldloc.s V_8
IL_4a18: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a1d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a22: stloc.s V_6
IL_4a24: ldloc.s V_7
IL_4a26: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a2b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a30: stloc.s V_8
IL_4a32: ldloc.s V_9
IL_4a34: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a39: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a3e: stloc.s V_6
IL_4a40: ldloc.s V_9
IL_4a42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4a47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4a4c: stloc.s V_7
IL_4a4e: ldloc.s V_10
IL_4a50: ldloc.s V_6
IL_4a52: ble.s IL_4a9c
IL_4a54: ldloc.s V_9
IL_4a56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4a5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4a60: stloc.s V_9
IL_4a62: ldloc.s V_6
IL_4a64: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4a69: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4a6e: stloc.s V_7
IL_4a70: ldloc.s V_9
IL_4a72: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4a77: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4a7c: stloc.s V_6
IL_4a7e: ldloc.s V_8
IL_4a80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4a85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4a8a: stloc.s V_7
IL_4a8c: ldloc.s V_6
IL_4a8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a98: stloc.s V_10
IL_4a9a: br.s IL_4ae2
IL_4a9c: ldloc.s V_7
IL_4a9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4aa3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4aa8: stloc.s V_10
IL_4aaa: ldloc.s V_10
IL_4aac: call string [mscorlib]System.Convert::ToString(int32)
IL_4ab1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ab6: stloc.s V_10
IL_4ab8: ldloc.s V_10
IL_4aba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4abf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4ac4: stloc.s V_7
IL_4ac6: ldloc.s V_8
IL_4ac8: call string [mscorlib]System.Convert::ToString(int32)
IL_4acd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ad2: stloc.s V_7
IL_4ad4: ldloc.s V_8
IL_4ad6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4adb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4ae0: stloc.s V_6
IL_4ae2: ldloc.s V_6
IL_4ae4: ldloc.s V_6
IL_4ae6: bge.s IL_4b30
IL_4ae8: ldloc.s V_7
IL_4aea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4aef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4af4: stloc.s V_10
IL_4af6: ldloc.s V_7
IL_4af8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4afd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4b02: stloc.s V_9
IL_4b04: ldloc.s V_7
IL_4b06: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b0b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b10: stloc.s V_6
IL_4b12: ldloc.s V_6
IL_4b14: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b19: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b1e: stloc.s V_9
IL_4b20: ldloc.s V_6
IL_4b22: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b27: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b2c: stloc.s V_9
IL_4b2e: br.s IL_4b76
IL_4b30: ldloc.s V_6
IL_4b32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4b37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4b3c: stloc.s V_9
IL_4b3e: ldloc.s V_6
IL_4b40: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b45: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b4a: stloc.s V_8
IL_4b4c: ldloc.s V_9
IL_4b4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4b53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4b58: stloc.s V_6
IL_4b5a: ldloc.s V_8
IL_4b5c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4b61: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4b66: stloc.s V_9
IL_4b68: ldloc.s V_10
IL_4b6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b74: stloc.s V_8
IL_4b76: ldloc.s V_6
IL_4b78: ldloc.s V_6
IL_4b7a: bge.s IL_4bc4
IL_4b7c: ldloc.s V_8
IL_4b7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4b83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4b88: stloc.s V_7
IL_4b8a: ldloc.s V_8
IL_4b8c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b91: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b96: stloc.s V_10
IL_4b98: ldloc.s V_9
IL_4b9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4b9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ba4: stloc.s V_10
IL_4ba6: ldloc.s V_10
IL_4ba8: call string [mscorlib]System.Convert::ToString(int32)
IL_4bad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4bb2: stloc.s V_8
IL_4bb4: ldloc.s V_8
IL_4bb6: call string [mscorlib]System.Convert::ToString(int32)
IL_4bbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4bc0: stloc.s V_10
IL_4bc2: br.s IL_4c0a
IL_4bc4: ldloc.s V_9
IL_4bc6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4bcb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4bd0: stloc.s V_8
IL_4bd2: ldloc.s V_10
IL_4bd4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4bd9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4bde: stloc.s V_8
IL_4be0: ldloc.s V_9
IL_4be2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4be7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4bec: stloc.s V_10
IL_4bee: ldloc.s V_9
IL_4bf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4bf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4bfa: stloc.s V_8
IL_4bfc: ldloc.s V_10
IL_4bfe: call string [mscorlib]System.Convert::ToString(int32)
IL_4c03: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4c08: stloc.s V_10
IL_4c0a: ldloc.s V_8
IL_4c0c: ldloc.s V_6
IL_4c0e: blt.s IL_4c58
IL_4c10: ldloc.s V_6
IL_4c12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4c17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4c1c: stloc.s V_10
IL_4c1e: ldloc.s V_6
IL_4c20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c2a: stloc.s V_8
IL_4c2c: ldloc.s V_7
IL_4c2e: call string [mscorlib]System.Convert::ToString(int32)
IL_4c33: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4c38: stloc.s V_8
IL_4c3a: ldloc.s V_10
IL_4c3c: call string [mscorlib]System.Convert::ToString(int32)
IL_4c41: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4c46: stloc.s V_8
IL_4c48: ldloc.s V_7
IL_4c4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c54: stloc.s V_9
IL_4c56: br.s IL_4c9e
IL_4c58: ldloc.s V_9
IL_4c5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c64: stloc.s V_10
IL_4c66: ldloc.s V_7
IL_4c68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c72: stloc.s V_6
IL_4c74: ldloc.s V_7
IL_4c76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4c7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4c80: stloc.s V_7
IL_4c82: ldloc.s V_7
IL_4c84: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4c89: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4c8e: stloc.s V_10
IL_4c90: ldloc.s V_7
IL_4c92: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4c97: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4c9c: stloc.s V_10
IL_4c9e: ldloc.s V_6
IL_4ca0: ldloc.s V_6
IL_4ca2: bne.un.s IL_4cec
IL_4ca4: ldloc.s V_6
IL_4ca6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4cab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4cb0: stloc.s V_9
IL_4cb2: ldloc.s V_8
IL_4cb4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4cb9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4cbe: stloc.s V_7
IL_4cc0: ldloc.s V_7
IL_4cc2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4cc7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ccc: stloc.s V_8
IL_4cce: ldloc.s V_6
IL_4cd0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4cd5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4cda: stloc.s V_8
IL_4cdc: ldloc.s V_6
IL_4cde: call string [mscorlib]System.Convert::ToString(int32)
IL_4ce3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ce8: stloc.s V_10
IL_4cea: br.s IL_4d32
IL_4cec: ldloc.s V_9
IL_4cee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4cf3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4cf8: stloc.s V_8
IL_4cfa: ldloc.s V_9
IL_4cfc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4d01: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4d06: stloc.s V_7
IL_4d08: ldloc.s V_6
IL_4d0a: call string [mscorlib]System.Convert::ToString(int32)
IL_4d0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d14: stloc.s V_10
IL_4d16: ldloc.s V_8
IL_4d18: call string [mscorlib]System.Convert::ToString(int32)
IL_4d1d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d22: stloc.s V_10
IL_4d24: ldloc.s V_7
IL_4d26: call string [mscorlib]System.Convert::ToString(int32)
IL_4d2b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d30: stloc.s V_10
IL_4d32: ldloc.s V_10
IL_4d34: ldloc.s V_8
IL_4d36: beq.s IL_4d80
IL_4d38: ldloc.s V_10
IL_4d3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4d3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4d44: stloc.s V_9
IL_4d46: ldloc.s V_10
IL_4d48: call string [mscorlib]System.Convert::ToString(int32)
IL_4d4d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d52: stloc.s V_6
IL_4d54: ldloc.s V_10
IL_4d56: call string [mscorlib]System.Convert::ToString(int32)
IL_4d5b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d60: stloc.s V_6
IL_4d62: ldloc.s V_10
IL_4d64: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4d69: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4d6e: stloc.s V_10
IL_4d70: ldloc.s V_9
IL_4d72: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4d77: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4d7c: stloc.s V_6
IL_4d7e: br.s IL_4dc6
IL_4d80: ldloc.s V_7
IL_4d82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4d87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4d8c: stloc.s V_7
IL_4d8e: ldloc.s V_9
IL_4d90: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4d95: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4d9a: stloc.s V_9
IL_4d9c: ldloc.s V_7
IL_4d9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4da3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4da8: stloc.s V_8
IL_4daa: ldloc.s V_7
IL_4dac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4db1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4db6: stloc.s V_6
IL_4db8: ldloc.s V_7
IL_4dba: call string [mscorlib]System.Convert::ToString(int32)
IL_4dbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4dc4: stloc.s V_6
IL_4dc6: ldloc.s V_9
IL_4dc8: ldloc.s V_8
IL_4dca: beq.s IL_4e14
IL_4dcc: ldloc.s V_9
IL_4dce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4dd3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4dd8: stloc.s V_9
IL_4dda: ldloc.s V_7
IL_4ddc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4de1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4de6: stloc.s V_6
IL_4de8: ldloc.s V_9
IL_4dea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4def: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4df4: stloc.s V_9
IL_4df6: ldloc.s V_9
IL_4df8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4dfd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e02: stloc.s V_9
IL_4e04: ldloc.s V_9
IL_4e06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e10: stloc.s V_7
IL_4e12: br.s IL_4e5a
IL_4e14: ldloc.s V_6
IL_4e16: call string [mscorlib]System.Convert::ToString(int32)
IL_4e1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4e20: stloc.s V_9
IL_4e22: ldloc.s V_8
IL_4e24: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e29: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e2e: stloc.s V_6
IL_4e30: ldloc.s V_6
IL_4e32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4e37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4e3c: stloc.s V_10
IL_4e3e: ldloc.s V_6
IL_4e40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e4a: stloc.s V_8
IL_4e4c: ldloc.s V_10
IL_4e4e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e53: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e58: stloc.s V_9
IL_4e5a: ldloc.s V_6
IL_4e5c: ldloc.s V_6
IL_4e5e: bgt.s IL_4ea8
IL_4e60: ldloc.s V_6
IL_4e62: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4e67: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4e6c: stloc.s V_7
IL_4e6e: ldloc.s V_6
IL_4e70: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e75: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e7a: stloc.s V_10
IL_4e7c: ldloc.s V_7
IL_4e7e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e83: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e88: stloc.s V_10
IL_4e8a: ldloc.s V_10
IL_4e8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e96: stloc.s V_10
IL_4e98: ldloc.s V_8
IL_4e9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ea4: stloc.s V_9
IL_4ea6: br.s IL_4eee
IL_4ea8: ldloc.s V_10
IL_4eaa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4eaf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4eb4: stloc.s V_9
IL_4eb6: ldloc.s V_9
IL_4eb8: call string [mscorlib]System.Convert::ToString(int32)
IL_4ebd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ec2: stloc.s V_6
IL_4ec4: ldloc.s V_9
IL_4ec6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4ecb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ed0: stloc.s V_6
IL_4ed2: ldloc.s V_8
IL_4ed4: call string [mscorlib]System.Convert::ToString(int32)
IL_4ed9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ede: stloc.s V_8
IL_4ee0: ldloc.s V_6
IL_4ee2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4ee7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4eec: stloc.s V_6
IL_4eee: ldloc.s V_10
IL_4ef0: ldloc.s V_10
IL_4ef2: bne.un.s IL_4f3c
IL_4ef4: ldloc.s V_8
IL_4ef6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4efb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f00: stloc.s V_9
IL_4f02: ldloc.s V_8
IL_4f04: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f09: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f0e: stloc.s V_9
IL_4f10: ldloc.s V_10
IL_4f12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4f17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4f1c: stloc.s V_6
IL_4f1e: ldloc.s V_8
IL_4f20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f2a: stloc.s V_6
IL_4f2c: ldloc.s V_7
IL_4f2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f38: stloc.s V_7
IL_4f3a: br.s IL_4f82
IL_4f3c: ldloc.s V_9
IL_4f3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f48: stloc.s V_9
IL_4f4a: ldloc.s V_7
IL_4f4c: call string [mscorlib]System.Convert::ToString(int32)
IL_4f51: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4f56: stloc.s V_6
IL_4f58: ldloc.s V_8
IL_4f5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4f5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4f64: stloc.s V_7
IL_4f66: ldloc.s V_8
IL_4f68: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4f6d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4f72: stloc.s V_7
IL_4f74: ldloc.s V_6
IL_4f76: call string [mscorlib]System.Convert::ToString(int32)
IL_4f7b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4f80: stloc.s V_9
IL_4f82: ldloc.s V_6
IL_4f84: ldloc.s V_9
IL_4f86: bge.s IL_4fd0
IL_4f88: ldloc.s V_10
IL_4f8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f94: stloc.s V_10
IL_4f96: ldloc.s V_8
IL_4f98: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f9d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4fa2: stloc.s V_6
IL_4fa4: ldloc.s V_8
IL_4fa6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4fab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4fb0: stloc.s V_7
IL_4fb2: ldloc.s V_10
IL_4fb4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4fb9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4fbe: stloc.s V_9
IL_4fc0: ldloc.s V_8
IL_4fc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4fc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4fcc: stloc.s V_6
IL_4fce: br.s IL_5016
IL_4fd0: ldloc.s V_6
IL_4fd2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4fd7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4fdc: stloc.s V_6
IL_4fde: ldloc.s V_8
IL_4fe0: call string [mscorlib]System.Convert::ToString(int32)
IL_4fe5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4fea: stloc.s V_7
IL_4fec: ldloc.s V_9
IL_4fee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4ff3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4ff8: stloc.s V_8
IL_4ffa: ldloc.s V_8
IL_4ffc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5001: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5006: stloc.s V_10
IL_5008: ldloc.s V_8
IL_500a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_500f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5014: stloc.s V_6
IL_5016: ldloc.s V_10
IL_5018: ldloc.s V_9
IL_501a: beq.s IL_5064
IL_501c: ldloc.s V_6
IL_501e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5023: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5028: stloc.s V_10
IL_502a: ldloc.s V_6
IL_502c: call string [mscorlib]System.Convert::ToString(int32)
IL_5031: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5036: stloc.s V_8
IL_5038: ldloc.s V_7
IL_503a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_503f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5044: stloc.s V_6
IL_5046: ldloc.s V_7
IL_5048: call string [mscorlib]System.Convert::ToString(int32)
IL_504d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5052: stloc.s V_10
IL_5054: ldloc.s V_7
IL_5056: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_505b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5060: stloc.s V_8
IL_5062: br.s IL_50aa
IL_5064: ldloc.s V_7
IL_5066: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_506b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5070: stloc.s V_6
IL_5072: ldloc.s V_8
IL_5074: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5079: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_507e: stloc.s V_10
IL_5080: ldloc.s V_7
IL_5082: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5087: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_508c: stloc.s V_7
IL_508e: ldloc.s V_9
IL_5090: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5095: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_509a: stloc.s V_6
IL_509c: ldloc.s V_9
IL_509e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_50a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_50a8: stloc.s V_6
IL_50aa: ldloc.s V_10
IL_50ac: ldloc.s V_6
IL_50ae: beq.s IL_50f8
IL_50b0: ldloc.s V_9
IL_50b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_50b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_50bc: stloc.s V_7
IL_50be: ldloc.s V_9
IL_50c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_50c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_50ca: stloc.s V_8
IL_50cc: ldloc.s V_10
IL_50ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_50d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_50d8: stloc.s V_6
IL_50da: ldloc.s V_10
IL_50dc: call string [mscorlib]System.Convert::ToString(int32)
IL_50e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_50e6: stloc.s V_6
IL_50e8: ldloc.s V_6
IL_50ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_50ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_50f4: stloc.s V_8
IL_50f6: br.s IL_513e
IL_50f8: ldloc.s V_10
IL_50fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_50ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5104: stloc.s V_7
IL_5106: ldloc.s V_10
IL_5108: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_510d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5112: stloc.s V_7
IL_5114: ldloc.s V_6
IL_5116: call string [mscorlib]System.Convert::ToString(int32)
IL_511b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5120: stloc.s V_7
IL_5122: ldloc.s V_9
IL_5124: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5129: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_512e: stloc.s V_9
IL_5130: ldloc.s V_8
IL_5132: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5137: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_513c: stloc.s V_7
IL_513e: ldloc.s V_6
IL_5140: ldloc.s V_9
IL_5142: bgt.s IL_518c
IL_5144: ldloc.s V_10
IL_5146: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_514b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5150: stloc.s V_6
IL_5152: ldloc.s V_9
IL_5154: call string [mscorlib]System.Convert::ToString(int32)
IL_5159: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_515e: stloc.s V_8
IL_5160: ldloc.s V_9
IL_5162: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5167: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_516c: stloc.s V_8
IL_516e: ldloc.s V_9
IL_5170: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5175: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_517a: stloc.s V_8
IL_517c: ldloc.s V_9
IL_517e: call string [mscorlib]System.Convert::ToString(int32)
IL_5183: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5188: stloc.s V_8
IL_518a: br.s IL_51d2
IL_518c: ldloc.s V_7
IL_518e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5193: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5198: stloc.s V_8
IL_519a: ldloc.s V_10
IL_519c: call string [mscorlib]System.Convert::ToString(int32)
IL_51a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51a6: stloc.s V_10
IL_51a8: ldloc.s V_9
IL_51aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_51af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_51b4: stloc.s V_7
IL_51b6: ldloc.s V_8
IL_51b8: call string [mscorlib]System.Convert::ToString(int32)
IL_51bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51c2: stloc.s V_9
IL_51c4: ldloc.s V_6
IL_51c6: call string [mscorlib]System.Convert::ToString(int32)
IL_51cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51d0: stloc.s V_6
IL_51d2: ldloc.s V_8
IL_51d4: ldloc.s V_8
IL_51d6: blt.s IL_5220
IL_51d8: ldloc.s V_6
IL_51da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_51df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_51e4: stloc.s V_7
IL_51e6: ldloc.s V_8
IL_51e8: call string [mscorlib]System.Convert::ToString(int32)
IL_51ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51f2: stloc.s V_6
IL_51f4: ldloc.s V_10
IL_51f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_51fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5200: stloc.s V_6
IL_5202: ldloc.s V_7
IL_5204: call string [mscorlib]System.Convert::ToString(int32)
IL_5209: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_520e: stloc.s V_7
IL_5210: ldloc.s V_10
IL_5212: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5217: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_521c: stloc.s V_7
IL_521e: br.s IL_5266
IL_5220: ldloc.s V_7
IL_5222: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5227: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_522c: stloc.s V_10
IL_522e: ldloc.s V_8
IL_5230: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5235: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_523a: stloc.s V_7
IL_523c: ldloc.s V_7
IL_523e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5243: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5248: stloc.s V_9
IL_524a: ldloc.s V_10
IL_524c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5251: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5256: stloc.s V_6
IL_5258: ldloc.s V_7
IL_525a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_525f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5264: stloc.s V_7
IL_5266: ldloc.s V_6
IL_5268: ldloc.s V_9
IL_526a: bgt.s IL_52b4
IL_526c: ldloc.s V_6
IL_526e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5273: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5278: stloc.s V_6
IL_527a: ldloc.s V_6
IL_527c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5281: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5286: stloc.s V_9
IL_5288: ldloc.s V_9
IL_528a: call string [mscorlib]System.Convert::ToString(int32)
IL_528f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5294: stloc.s V_10
IL_5296: ldloc.s V_7
IL_5298: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_529d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_52a2: stloc.s V_6
IL_52a4: ldloc.s V_7
IL_52a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_52ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_52b0: stloc.s V_8
IL_52b2: br.s IL_52fa
IL_52b4: ldloc.s V_10
IL_52b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_52bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_52c0: stloc.s V_9
IL_52c2: ldloc.s V_9
IL_52c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_52c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_52ce: stloc.s V_10
IL_52d0: ldloc.s V_9
IL_52d2: call string [mscorlib]System.Convert::ToString(int32)
IL_52d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_52dc: stloc.s V_6
IL_52de: ldloc.s V_10
IL_52e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_52e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_52ea: stloc.s V_9
IL_52ec: ldloc.s V_8
IL_52ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_52f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_52f8: stloc.s V_8
IL_52fa: ldloc.s V_9
IL_52fc: ldloc.s V_8
IL_52fe: bne.un.s IL_5348
IL_5300: ldloc.s V_6
IL_5302: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5307: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_530c: stloc.s V_8
IL_530e: ldloc.s V_8
IL_5310: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5315: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_531a: stloc.s V_9
IL_531c: ldloc.s V_6
IL_531e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5323: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5328: stloc.s V_6
IL_532a: ldloc.s V_10
IL_532c: call string [mscorlib]System.Convert::ToString(int32)
IL_5331: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5336: stloc.s V_9
IL_5338: ldloc.s V_8
IL_533a: call string [mscorlib]System.Convert::ToString(int32)
IL_533f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5344: stloc.s V_6
IL_5346: br.s IL_538e
IL_5348: ldloc.s V_7
IL_534a: call string [mscorlib]System.Convert::ToString(int32)
IL_534f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5354: stloc.s V_9
IL_5356: ldloc.s V_6
IL_5358: call string [mscorlib]System.Convert::ToString(int32)
IL_535d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5362: stloc.s V_7
IL_5364: ldloc.s V_9
IL_5366: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_536b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5370: stloc.s V_6
IL_5372: ldloc.s V_7
IL_5374: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5379: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_537e: stloc.s V_8
IL_5380: ldloc.s V_9
IL_5382: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5387: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_538c: stloc.s V_7
IL_538e: ldloc.s V_7
IL_5390: ldloc.s V_7
IL_5392: bge.s IL_53dc
IL_5394: ldloc.s V_7
IL_5396: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_539b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53a0: stloc.s V_9
IL_53a2: ldloc.s V_9
IL_53a4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_53a9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53ae: stloc.s V_6
IL_53b0: ldloc.s V_9
IL_53b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_53b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53bc: stloc.s V_8
IL_53be: ldloc.s V_9
IL_53c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_53c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_53ca: stloc.s V_8
IL_53cc: ldloc.s V_7
IL_53ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_53d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_53d8: stloc.s V_10
IL_53da: br.s IL_5422
IL_53dc: ldloc.s V_7
IL_53de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_53e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53e8: stloc.s V_8
IL_53ea: ldloc.s V_6
IL_53ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_53f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_53f6: stloc.s V_7
IL_53f8: ldloc.s V_6
IL_53fa: call string [mscorlib]System.Convert::ToString(int32)
IL_53ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5404: stloc.s V_8
IL_5406: ldloc.s V_8
IL_5408: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_540d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5412: stloc.s V_7
IL_5414: ldloc.s V_6
IL_5416: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_541b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5420: stloc.s V_6
IL_5422: ldloc.s V_8
IL_5424: ldloc.s V_8
IL_5426: blt.s IL_5470
IL_5428: ldloc.s V_10
IL_542a: call string [mscorlib]System.Convert::ToString(int32)
IL_542f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5434: stloc.s V_8
IL_5436: ldloc.s V_9
IL_5438: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_543d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5442: stloc.s V_6
IL_5444: ldloc.s V_9
IL_5446: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_544b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5450: stloc.s V_8
IL_5452: ldloc.s V_9
IL_5454: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5459: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_545e: stloc.s V_7
IL_5460: ldloc.s V_8
IL_5462: call string [mscorlib]System.Convert::ToString(int32)
IL_5467: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_546c: stloc.s V_10
IL_546e: br.s IL_54b6
IL_5470: ldloc.s V_8
IL_5472: call string [mscorlib]System.Convert::ToString(int32)
IL_5477: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_547c: stloc.s V_6
IL_547e: ldloc.s V_10
IL_5480: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5485: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_548a: stloc.s V_7
IL_548c: ldloc.s V_7
IL_548e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5493: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5498: stloc.s V_6
IL_549a: ldloc.s V_9
IL_549c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_54a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_54a6: stloc.s V_6
IL_54a8: ldloc.s V_10
IL_54aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54b4: stloc.s V_7
IL_54b6: ldloc.s V_6
IL_54b8: ldloc.s V_10
IL_54ba: bne.un.s IL_5504
IL_54bc: ldloc.s V_10
IL_54be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54c8: stloc.s V_7
IL_54ca: ldloc.s V_8
IL_54cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54d6: stloc.s V_8
IL_54d8: ldloc.s V_9
IL_54da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_54df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_54e4: stloc.s V_9
IL_54e6: ldloc.s V_6
IL_54e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54f2: stloc.s V_7
IL_54f4: ldloc.s V_9
IL_54f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5500: stloc.s V_7
IL_5502: br.s IL_554a
IL_5504: ldloc.s V_6
IL_5506: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_550b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5510: stloc.s V_10
IL_5512: ldloc.s V_8
IL_5514: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5519: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_551e: stloc.s V_8
IL_5520: ldloc.s V_8
IL_5522: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5527: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_552c: stloc.s V_9
IL_552e: ldloc.s V_9
IL_5530: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5535: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_553a: stloc.s V_8
IL_553c: ldloc.s V_7
IL_553e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5543: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5548: stloc.s V_6
IL_554a: ldloc.s V_8
IL_554c: ldloc.s V_7
IL_554e: bne.un.s IL_5598
IL_5550: ldloc.s V_7
IL_5552: call string [mscorlib]System.Convert::ToString(int32)
IL_5557: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_555c: stloc.s V_10
IL_555e: ldloc.s V_7
IL_5560: call string [mscorlib]System.Convert::ToString(int32)
IL_5565: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_556a: stloc.s V_8
IL_556c: ldloc.s V_7
IL_556e: call string [mscorlib]System.Convert::ToString(int32)
IL_5573: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5578: stloc.s V_6
IL_557a: ldloc.s V_10
IL_557c: call string [mscorlib]System.Convert::ToString(int32)
IL_5581: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5586: stloc.s V_6
IL_5588: ldloc.s V_7
IL_558a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_558f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5594: stloc.s V_7
IL_5596: br.s IL_55de
IL_5598: ldloc.s V_8
IL_559a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_559f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55a4: stloc.s V_10
IL_55a6: ldloc.s V_6
IL_55a8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_55ad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55b2: stloc.s V_10
IL_55b4: ldloc.s V_9
IL_55b6: call string [mscorlib]System.Convert::ToString(int32)
IL_55bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_55c0: stloc.s V_8
IL_55c2: ldloc.s V_7
IL_55c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_55c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_55ce: stloc.s V_8
IL_55d0: ldloc.s V_9
IL_55d2: call string [mscorlib]System.Convert::ToString(int32)
IL_55d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_55dc: stloc.s V_9
IL_55de: ldloc.s V_8
IL_55e0: ldloc.s V_10
IL_55e2: bge.s IL_562c
IL_55e4: ldloc.s V_10
IL_55e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_55eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55f0: stloc.s V_9
IL_55f2: ldloc.s V_8
IL_55f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_55f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55fe: stloc.s V_8
IL_5600: ldloc.s V_7
IL_5602: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5607: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_560c: stloc.s V_9
IL_560e: ldloc.s V_9
IL_5610: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5615: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_561a: stloc.s V_6
IL_561c: ldloc.s V_6
IL_561e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5623: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5628: stloc.s V_9
IL_562a: br.s IL_5672
IL_562c: ldloc.s V_9
IL_562e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5633: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5638: stloc.s V_7
IL_563a: ldloc.s V_7
IL_563c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5641: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5646: stloc.s V_10
IL_5648: ldloc.s V_10
IL_564a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_564f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5654: stloc.s V_6
IL_5656: ldloc.s V_8
IL_5658: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_565d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5662: stloc.s V_8
IL_5664: ldloc.s V_6
IL_5666: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_566b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5670: stloc.s V_10
IL_5672: ldloc.s V_10
IL_5674: ldloc.s V_6
IL_5676: bgt.s IL_56c0
IL_5678: ldloc.s V_8
IL_567a: call string [mscorlib]System.Convert::ToString(int32)
IL_567f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5684: stloc.s V_6
IL_5686: ldloc.s V_10
IL_5688: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_568d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5692: stloc.s V_8
IL_5694: ldloc.s V_10
IL_5696: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_569b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_56a0: stloc.s V_10
IL_56a2: ldloc.s V_7
IL_56a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_56a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_56ae: stloc.s V_10
IL_56b0: ldloc.s V_9
IL_56b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_56b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_56bc: stloc.s V_6
IL_56be: br.s IL_5706
IL_56c0: ldloc.s V_7
IL_56c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_56c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_56cc: stloc.s V_7
IL_56ce: ldloc.s V_8
IL_56d0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_56d5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_56da: stloc.s V_6
IL_56dc: ldloc.s V_10
IL_56de: call string [mscorlib]System.Convert::ToString(int32)
IL_56e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_56e8: stloc.s V_8
IL_56ea: ldloc.s V_8
IL_56ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_56f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_56f6: stloc.s V_6
IL_56f8: ldloc.s V_6
IL_56fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_56ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5704: stloc.s V_10
IL_5706: ldloc.s V_9
IL_5708: ldloc.s V_8
IL_570a: ble.s IL_5754
IL_570c: ldloc.s V_9
IL_570e: call string [mscorlib]System.Convert::ToString(int32)
IL_5713: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5718: stloc.s V_9
IL_571a: ldloc.s V_10
IL_571c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5721: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5726: stloc.s V_9
IL_5728: ldloc.s V_10
IL_572a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_572f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5734: stloc.s V_9
IL_5736: ldloc.s V_6
IL_5738: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_573d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5742: stloc.s V_8
IL_5744: ldloc.s V_6
IL_5746: call string [mscorlib]System.Convert::ToString(int32)
IL_574b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5750: stloc.s V_8
IL_5752: br.s IL_579a
IL_5754: ldloc.s V_9
IL_5756: call string [mscorlib]System.Convert::ToString(int32)
IL_575b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5760: stloc.s V_10
IL_5762: ldloc.s V_8
IL_5764: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5769: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_576e: stloc.s V_10
IL_5770: ldloc.s V_10
IL_5772: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5777: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_577c: stloc.s V_9
IL_577e: ldloc.s V_8
IL_5780: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5785: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_578a: stloc.s V_8
IL_578c: ldloc.s V_7
IL_578e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5793: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5798: stloc.s V_8
IL_579a: ldloc.s V_10
IL_579c: ldloc.s V_9
IL_579e: bgt.s IL_57e8
IL_57a0: ldloc.s V_7
IL_57a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_57a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_57ac: stloc.s V_9
IL_57ae: ldloc.s V_9
IL_57b0: call string [mscorlib]System.Convert::ToString(int32)
IL_57b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_57ba: stloc.s V_10
IL_57bc: ldloc.s V_8
IL_57be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_57c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_57c8: stloc.s V_8
IL_57ca: ldloc.s V_8
IL_57cc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_57d1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_57d6: stloc.s V_8
IL_57d8: ldloc.s V_8
IL_57da: call string [mscorlib]System.Convert::ToString(int32)
IL_57df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_57e4: stloc.s V_9
IL_57e6: br.s IL_582e
IL_57e8: ldloc.s V_6
IL_57ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_57ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_57f4: stloc.s V_7
IL_57f6: ldloc.s V_6
IL_57f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_57fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5802: stloc.s V_8
IL_5804: ldloc.s V_7
IL_5806: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_580b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5810: stloc.s V_6
IL_5812: ldloc.s V_8
IL_5814: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5819: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_581e: stloc.s V_10
IL_5820: ldloc.s V_10
IL_5822: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5827: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_582c: stloc.s V_7
IL_582e: ldloc.s V_9
IL_5830: ldloc.s V_7
IL_5832: bne.un.s IL_587c
IL_5834: ldloc.s V_6
IL_5836: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_583b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5840: stloc.s V_8
IL_5842: ldloc.s V_6
IL_5844: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5849: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_584e: stloc.s V_10
IL_5850: ldloc.s V_7
IL_5852: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5857: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_585c: stloc.s V_6
IL_585e: ldloc.s V_7
IL_5860: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5865: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_586a: stloc.s V_6
IL_586c: ldloc.s V_10
IL_586e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5873: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5878: stloc.s V_8
IL_587a: br.s IL_58c2
IL_587c: ldloc.s V_6
IL_587e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5883: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5888: stloc.s V_6
IL_588a: ldloc.s V_9
IL_588c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5891: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5896: stloc.s V_6
IL_5898: ldloc.s V_8
IL_589a: call string [mscorlib]System.Convert::ToString(int32)
IL_589f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_58a4: stloc.s V_8
IL_58a6: ldloc.s V_9
IL_58a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_58ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_58b2: stloc.s V_6
IL_58b4: ldloc.s V_10
IL_58b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_58bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_58c0: stloc.s V_6
IL_58c2: ldloc.s V_10
IL_58c4: ldloc.s V_8
IL_58c6: bgt.s IL_5910
IL_58c8: ldloc.s V_9
IL_58ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_58cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_58d4: stloc.s V_6
IL_58d6: ldloc.s V_6
IL_58d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_58dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_58e2: stloc.s V_7
IL_58e4: ldloc.s V_9
IL_58e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_58eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_58f0: stloc.s V_6
IL_58f2: ldloc.s V_10
IL_58f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_58f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_58fe: stloc.s V_10
IL_5900: ldloc.s V_6
IL_5902: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5907: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_590c: stloc.s V_10
IL_590e: br.s IL_5956
IL_5910: ldloc.s V_6
IL_5912: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5917: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_591c: stloc.s V_9
IL_591e: ldloc.s V_9
IL_5920: call string [mscorlib]System.Convert::ToString(int32)
IL_5925: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_592a: stloc.s V_9
IL_592c: ldloc.s V_6
IL_592e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5933: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5938: stloc.s V_9
IL_593a: ldloc.s V_9
IL_593c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5941: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5946: stloc.s V_9
IL_5948: ldloc.s V_7
IL_594a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_594f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5954: stloc.s V_8
IL_5956: ldloc.s V_7
IL_5958: ldloc.s V_7
IL_595a: bge.s IL_59a4
IL_595c: ldloc.s V_9
IL_595e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5963: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5968: stloc.s V_10
IL_596a: ldloc.s V_9
IL_596c: call string [mscorlib]System.Convert::ToString(int32)
IL_5971: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5976: stloc.s V_6
IL_5978: ldloc.s V_10
IL_597a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_597f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5984: stloc.s V_10
IL_5986: ldloc.s V_9
IL_5988: call string [mscorlib]System.Convert::ToString(int32)
IL_598d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5992: stloc.s V_10
IL_5994: ldloc.s V_9
IL_5996: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_599b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_59a0: stloc.s V_8
IL_59a2: br.s IL_59ea
IL_59a4: ldloc.s V_9
IL_59a6: call string [mscorlib]System.Convert::ToString(int32)
IL_59ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_59b0: stloc.s V_8
IL_59b2: ldloc.s V_7
IL_59b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_59b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_59be: stloc.s V_9
IL_59c0: ldloc.s V_7
IL_59c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_59c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_59cc: stloc.s V_9
IL_59ce: ldloc.s V_8
IL_59d0: call string [mscorlib]System.Convert::ToString(int32)
IL_59d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_59da: stloc.s V_9
IL_59dc: ldloc.s V_7
IL_59de: call string [mscorlib]System.Convert::ToString(int32)
IL_59e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_59e8: stloc.s V_7
IL_59ea: ldloc.s V_9
IL_59ec: ldloc.s V_8
IL_59ee: blt.s IL_5a38
IL_59f0: ldloc.s V_6
IL_59f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_59f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_59fc: stloc.s V_9
IL_59fe: ldloc.s V_9
IL_5a00: call string [mscorlib]System.Convert::ToString(int32)
IL_5a05: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5a0a: stloc.s V_8
IL_5a0c: ldloc.s V_8
IL_5a0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5a13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5a18: stloc.s V_8
IL_5a1a: ldloc.s V_7
IL_5a1c: call string [mscorlib]System.Convert::ToString(int32)
IL_5a21: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5a26: stloc.s V_9
IL_5a28: ldloc.s V_10
IL_5a2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5a2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5a34: stloc.s V_7
IL_5a36: br.s IL_5a7e
IL_5a38: ldloc.s V_8
IL_5a3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5a3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5a44: stloc.s V_6
IL_5a46: ldloc.s V_8
IL_5a48: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5a4d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5a52: stloc.s V_9
IL_5a54: ldloc.s V_10
IL_5a56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5a5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5a60: stloc.s V_10
IL_5a62: ldloc.s V_10
IL_5a64: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5a69: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5a6e: stloc.s V_7
IL_5a70: ldloc.s V_8
IL_5a72: call string [mscorlib]System.Convert::ToString(int32)
IL_5a77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5a7c: stloc.s V_7
IL_5a7e: ldloc.s V_8
IL_5a80: ldloc.s V_6
IL_5a82: blt.s IL_5acc
IL_5a84: ldloc.s V_10
IL_5a86: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5a8b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5a90: stloc.s V_6
IL_5a92: ldloc.s V_10
IL_5a94: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5a99: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5a9e: stloc.s V_9
IL_5aa0: ldloc.s V_6
IL_5aa2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5aa7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5aac: stloc.s V_10
IL_5aae: ldloc.s V_9
IL_5ab0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5ab5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5aba: stloc.s V_10
IL_5abc: ldloc.s V_9
IL_5abe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5ac3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5ac8: stloc.s V_10
IL_5aca: br.s IL_5b12
IL_5acc: ldloc.s V_9
IL_5ace: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5ad3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5ad8: stloc.s V_9
IL_5ada: ldloc.s V_6
IL_5adc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5ae1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ae6: stloc.s V_10
IL_5ae8: ldloc.s V_6
IL_5aea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5aef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5af4: stloc.s V_6
IL_5af6: ldloc.s V_7
IL_5af8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5afd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b02: stloc.s V_6
IL_5b04: ldloc.s V_6
IL_5b06: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b0b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b10: stloc.s V_9
IL_5b12: ldloc.s V_7
IL_5b14: ldloc.s V_6
IL_5b16: beq.s IL_5b60
IL_5b18: ldloc.s V_6
IL_5b1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b24: stloc.s V_7
IL_5b26: ldloc.s V_6
IL_5b28: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5b2d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5b32: stloc.s V_10
IL_5b34: ldloc.s V_6
IL_5b36: call string [mscorlib]System.Convert::ToString(int32)
IL_5b3b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b40: stloc.s V_8
IL_5b42: ldloc.s V_6
IL_5b44: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5b49: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5b4e: stloc.s V_7
IL_5b50: ldloc.s V_10
IL_5b52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5b57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5b5c: stloc.s V_6
IL_5b5e: br.s IL_5ba6
IL_5b60: ldloc.s V_7
IL_5b62: call string [mscorlib]System.Convert::ToString(int32)
IL_5b67: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b6c: stloc.s V_7
IL_5b6e: ldloc.s V_9
IL_5b70: call string [mscorlib]System.Convert::ToString(int32)
IL_5b75: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b7a: stloc.s V_10
IL_5b7c: ldloc.s V_6
IL_5b7e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b83: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b88: stloc.s V_10
IL_5b8a: ldloc.s V_9
IL_5b8c: call string [mscorlib]System.Convert::ToString(int32)
IL_5b91: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b96: stloc.s V_9
IL_5b98: ldloc.s V_7
IL_5b9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ba4: stloc.s V_9
IL_5ba6: ldloc.s V_6
IL_5ba8: ldloc.s V_9
IL_5baa: ble.s IL_5bf4
IL_5bac: ldloc.s V_7
IL_5bae: call string [mscorlib]System.Convert::ToString(int32)
IL_5bb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5bb8: stloc.s V_9
IL_5bba: ldloc.s V_10
IL_5bbc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5bc1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5bc6: stloc.s V_8
IL_5bc8: ldloc.s V_6
IL_5bca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5bcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5bd4: stloc.s V_8
IL_5bd6: ldloc.s V_10
IL_5bd8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5bdd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5be2: stloc.s V_6
IL_5be4: ldloc.s V_9
IL_5be6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5beb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5bf0: stloc.s V_6
IL_5bf2: br.s IL_5c3a
IL_5bf4: ldloc.s V_9
IL_5bf6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5bfb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c00: stloc.s V_7
IL_5c02: ldloc.s V_9
IL_5c04: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5c09: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5c0e: stloc.s V_10
IL_5c10: ldloc.s V_6
IL_5c12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5c17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c1c: stloc.s V_8
IL_5c1e: ldloc.s V_9
IL_5c20: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5c25: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5c2a: stloc.s V_6
IL_5c2c: ldloc.s V_8
IL_5c2e: call string [mscorlib]System.Convert::ToString(int32)
IL_5c33: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5c38: stloc.s V_8
IL_5c3a: ldloc.s V_7
IL_5c3c: ldloc.s V_10
IL_5c3e: beq.s IL_5c88
IL_5c40: ldloc.s V_9
IL_5c42: call string [mscorlib]System.Convert::ToString(int32)
IL_5c47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5c4c: stloc.s V_7
IL_5c4e: ldloc.s V_9
IL_5c50: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5c55: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5c5a: stloc.s V_9
IL_5c5c: ldloc.s V_6
IL_5c5e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5c63: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c68: stloc.s V_7
IL_5c6a: ldloc.s V_6
IL_5c6c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5c71: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5c76: stloc.s V_8
IL_5c78: ldloc.s V_9
IL_5c7a: call string [mscorlib]System.Convert::ToString(int32)
IL_5c7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5c84: stloc.s V_6
IL_5c86: br.s IL_5cce
IL_5c88: ldloc.s V_10
IL_5c8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5c8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c94: stloc.s V_10
IL_5c96: ldloc.s V_10
IL_5c98: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5c9d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ca2: stloc.s V_8
IL_5ca4: ldloc.s V_7
IL_5ca6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5cab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5cb0: stloc.s V_6
IL_5cb2: ldloc.s V_8
IL_5cb4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5cb9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5cbe: stloc.s V_7
IL_5cc0: ldloc.s V_9
IL_5cc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5cc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ccc: stloc.s V_7
IL_5cce: ldloc.s V_7
IL_5cd0: ldloc.s V_8
IL_5cd2: bne.un.s IL_5d1c
IL_5cd4: ldloc.s V_8
IL_5cd6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5cdb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ce0: stloc.s V_6
IL_5ce2: ldloc.s V_8
IL_5ce4: call string [mscorlib]System.Convert::ToString(int32)
IL_5ce9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5cee: stloc.s V_6
IL_5cf0: ldloc.s V_9
IL_5cf2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5cf7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5cfc: stloc.s V_10
IL_5cfe: ldloc.s V_9
IL_5d00: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5d05: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5d0a: stloc.s V_8
IL_5d0c: ldloc.s V_8
IL_5d0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5d13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5d18: stloc.s V_10
IL_5d1a: br.s IL_5d62
IL_5d1c: ldloc.s V_7
IL_5d1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d28: stloc.s V_6
IL_5d2a: ldloc.s V_6
IL_5d2c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d31: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d36: stloc.s V_9
IL_5d38: ldloc.s V_7
IL_5d3a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d3f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d44: stloc.s V_10
IL_5d46: ldloc.s V_8
IL_5d48: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d4d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d52: stloc.s V_7
IL_5d54: ldloc.s V_7
IL_5d56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5d5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5d60: stloc.s V_7
IL_5d62: ldloc.s V_10
IL_5d64: ldloc.s V_8
IL_5d66: blt.s IL_5db0
IL_5d68: ldloc.s V_10
IL_5d6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5d6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5d74: stloc.s V_9
IL_5d76: ldloc.s V_10
IL_5d78: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5d7d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5d82: stloc.s V_7
IL_5d84: ldloc.s V_9
IL_5d86: call string [mscorlib]System.Convert::ToString(int32)
IL_5d8b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5d90: stloc.s V_7
IL_5d92: ldloc.s V_7
IL_5d94: call string [mscorlib]System.Convert::ToString(int32)
IL_5d99: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5d9e: stloc.s V_6
IL_5da0: ldloc.s V_7
IL_5da2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5da7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5dac: stloc.s V_9
IL_5dae: br.s IL_5df6
IL_5db0: ldloc.s V_8
IL_5db2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5db7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5dbc: stloc.s V_6
IL_5dbe: ldloc.s V_10
IL_5dc0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5dc5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5dca: stloc.s V_8
IL_5dcc: ldloc.s V_8
IL_5dce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5dd3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5dd8: stloc.s V_8
IL_5dda: ldloc.s V_7
IL_5ddc: call string [mscorlib]System.Convert::ToString(int32)
IL_5de1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5de6: stloc.s V_6
IL_5de8: ldloc.s V_7
IL_5dea: call string [mscorlib]System.Convert::ToString(int32)
IL_5def: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5df4: stloc.s V_6
IL_5df6: ldloc.s V_6
IL_5df8: ldloc.s V_6
IL_5dfa: bgt.s IL_5e44
IL_5dfc: ldloc.s V_10
IL_5dfe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5e03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5e08: stloc.s V_6
IL_5e0a: ldloc.s V_8
IL_5e0c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5e11: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5e16: stloc.s V_9
IL_5e18: ldloc.s V_9
IL_5e1a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5e1f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5e24: stloc.s V_8
IL_5e26: ldloc.s V_9
IL_5e28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5e2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5e32: stloc.s V_7
IL_5e34: ldloc.s V_6
IL_5e36: call string [mscorlib]System.Convert::ToString(int32)
IL_5e3b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5e40: stloc.s V_6
IL_5e42: br.s IL_5e8a
IL_5e44: ldloc.s V_10
IL_5e46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e50: stloc.s V_6
IL_5e52: ldloc.s V_9
IL_5e54: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e59: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e5e: stloc.s V_9
IL_5e60: ldloc.s V_10
IL_5e62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e6c: stloc.s V_8
IL_5e6e: ldloc.s V_7
IL_5e70: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e75: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e7a: stloc.s V_7
IL_5e7c: ldloc.s V_10
IL_5e7e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5e83: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5e88: stloc.s V_8
IL_5e8a: ldloc.s V_9
IL_5e8c: ldloc.s V_8
IL_5e8e: blt.s IL_5ed8
IL_5e90: ldloc.s V_6
IL_5e92: call string [mscorlib]System.Convert::ToString(int32)
IL_5e97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5e9c: stloc.s V_7
IL_5e9e: ldloc.s V_7
IL_5ea0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5ea5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5eaa: stloc.s V_8
IL_5eac: ldloc.s V_9
IL_5eae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5eb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5eb8: stloc.s V_6
IL_5eba: ldloc.s V_7
IL_5ebc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5ec1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ec6: stloc.s V_7
IL_5ec8: ldloc.s V_10
IL_5eca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5ecf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ed4: stloc.s V_9
IL_5ed6: br.s IL_5f1e
IL_5ed8: ldloc.s V_8
IL_5eda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5edf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ee4: stloc.s V_7
IL_5ee6: ldloc.s V_10
IL_5ee8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5eed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ef2: stloc.s V_7
IL_5ef4: ldloc.s V_6
IL_5ef6: call string [mscorlib]System.Convert::ToString(int32)
IL_5efb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f00: stloc.s V_7
IL_5f02: ldloc.s V_9
IL_5f04: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5f09: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5f0e: stloc.s V_6
IL_5f10: ldloc.s V_6
IL_5f12: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5f17: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5f1c: stloc.s V_7
IL_5f1e: ldloc.s V_10
IL_5f20: ldloc.s V_7
IL_5f22: bgt.s IL_5f6c
IL_5f24: ldloc.s V_6
IL_5f26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5f2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5f30: stloc.s V_7
IL_5f32: ldloc.s V_10
IL_5f34: call string [mscorlib]System.Convert::ToString(int32)
IL_5f39: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f3e: stloc.s V_10
IL_5f40: ldloc.s V_6
IL_5f42: call string [mscorlib]System.Convert::ToString(int32)
IL_5f47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f4c: stloc.s V_9
IL_5f4e: ldloc.s V_6
IL_5f50: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f55: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f5a: stloc.s V_10
IL_5f5c: ldloc.s V_6
IL_5f5e: call string [mscorlib]System.Convert::ToString(int32)
IL_5f63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f68: stloc.s V_8
IL_5f6a: br.s IL_5fb2
IL_5f6c: ldloc.s V_8
IL_5f6e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f73: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f78: stloc.s V_7
IL_5f7a: ldloc.s V_9
IL_5f7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f86: stloc.s V_8
IL_5f88: ldloc.s V_10
IL_5f8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f94: stloc.s V_8
IL_5f96: ldloc.s V_10
IL_5f98: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5f9d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5fa2: stloc.s V_10
IL_5fa4: ldloc.s V_10
IL_5fa6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5fab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5fb0: stloc.s V_8
IL_5fb2: ldloc.s V_9
IL_5fb4: ldloc.s V_6
IL_5fb6: bne.un.s IL_6000
IL_5fb8: ldloc.s V_6
IL_5fba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5fbf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5fc4: stloc.s V_6
IL_5fc6: ldloc.s V_6
IL_5fc8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5fcd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5fd2: stloc.s V_10
IL_5fd4: ldloc.s V_7
IL_5fd6: call string [mscorlib]System.Convert::ToString(int32)
IL_5fdb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5fe0: stloc.s V_8
IL_5fe2: ldloc.s V_8
IL_5fe4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5fe9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5fee: stloc.s V_10
IL_5ff0: ldloc.s V_10
IL_5ff2: call string [mscorlib]System.Convert::ToString(int32)
IL_5ff7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5ffc: stloc.s V_6
IL_5ffe: br.s IL_6046
IL_6000: ldloc.s V_9
IL_6002: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6007: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_600c: stloc.s V_8
IL_600e: ldloc.s V_10
IL_6010: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6015: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_601a: stloc.s V_8
IL_601c: ldloc.s V_10
IL_601e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6023: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6028: stloc.s V_8
IL_602a: ldloc.s V_7
IL_602c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6031: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6036: stloc.s V_6
IL_6038: ldloc.s V_10
IL_603a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_603f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6044: stloc.s V_6
IL_6046: ldloc.s V_7
IL_6048: ldloc.s V_7
IL_604a: ble.s IL_6094
IL_604c: ldloc.s V_6
IL_604e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6053: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6058: stloc.s V_10
IL_605a: ldloc.s V_10
IL_605c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6061: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6066: stloc.s V_6
IL_6068: ldloc.s V_8
IL_606a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_606f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6074: stloc.s V_7
IL_6076: ldloc.s V_9
IL_6078: call string [mscorlib]System.Convert::ToString(int32)
IL_607d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6082: stloc.s V_8
IL_6084: ldloc.s V_9
IL_6086: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_608b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6090: stloc.s V_8
IL_6092: br.s IL_60da
IL_6094: ldloc.s V_9
IL_6096: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_609b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_60a0: stloc.s V_10
IL_60a2: ldloc.s V_9
IL_60a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_60a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_60ae: stloc.s V_7
IL_60b0: ldloc.s V_9
IL_60b2: call string [mscorlib]System.Convert::ToString(int32)
IL_60b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_60bc: stloc.s V_7
IL_60be: ldloc.s V_7
IL_60c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_60c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_60ca: stloc.s V_7
IL_60cc: ldloc.s V_9
IL_60ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_60d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_60d8: stloc.s V_9
IL_60da: ldloc.s V_9
IL_60dc: ldloc.s V_6
IL_60de: blt.s IL_6128
IL_60e0: ldloc.s V_6
IL_60e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_60e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_60ec: stloc.s V_6
IL_60ee: ldloc.s V_9
IL_60f0: call string [mscorlib]System.Convert::ToString(int32)
IL_60f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_60fa: stloc.s V_10
IL_60fc: ldloc.s V_6
IL_60fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6103: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6108: stloc.s V_10
IL_610a: ldloc.s V_6
IL_610c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6111: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6116: stloc.s V_8
IL_6118: ldloc.s V_6
IL_611a: call string [mscorlib]System.Convert::ToString(int32)
IL_611f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6124: stloc.s V_6
IL_6126: br.s IL_616e
IL_6128: ldloc.s V_6
IL_612a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_612f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6134: stloc.s V_9
IL_6136: ldloc.s V_6
IL_6138: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_613d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6142: stloc.s V_6
IL_6144: ldloc.s V_10
IL_6146: call string [mscorlib]System.Convert::ToString(int32)
IL_614b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6150: stloc.s V_9
IL_6152: ldloc.s V_9
IL_6154: call string [mscorlib]System.Convert::ToString(int32)
IL_6159: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_615e: stloc.s V_7
IL_6160: ldloc.s V_8
IL_6162: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6167: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_616c: stloc.s V_8
IL_616e: ldloc.s V_6
IL_6170: ldloc.s V_6
IL_6172: bne.un.s IL_61bc
IL_6174: ldloc.s V_9
IL_6176: call string [mscorlib]System.Convert::ToString(int32)
IL_617b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6180: stloc.s V_9
IL_6182: ldloc.s V_8
IL_6184: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6189: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_618e: stloc.s V_9
IL_6190: ldloc.s V_10
IL_6192: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6197: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_619c: stloc.s V_6
IL_619e: ldloc.s V_9
IL_61a0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_61a5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_61aa: stloc.s V_8
IL_61ac: ldloc.s V_6
IL_61ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_61b8: stloc.s V_9
IL_61ba: br.s IL_6202
IL_61bc: ldloc.s V_7
IL_61be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_61c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_61c8: stloc.s V_6
IL_61ca: ldloc.s V_9
IL_61cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_61d6: stloc.s V_9
IL_61d8: ldloc.s V_9
IL_61da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_61e4: stloc.s V_6
IL_61e6: ldloc.s V_10
IL_61e8: call string [mscorlib]System.Convert::ToString(int32)
IL_61ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_61f2: stloc.s V_7
IL_61f4: ldloc.s V_10
IL_61f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6200: stloc.s V_6
IL_6202: ldloc.s V_9
IL_6204: ldloc.s V_9
IL_6206: bgt.s IL_6250
IL_6208: ldloc.s V_6
IL_620a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_620f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6214: stloc.s V_6
IL_6216: ldloc.s V_6
IL_6218: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_621d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6222: stloc.s V_8
IL_6224: ldloc.s V_8
IL_6226: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_622b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6230: stloc.s V_8
IL_6232: ldloc.s V_9
IL_6234: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6239: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_623e: stloc.s V_6
IL_6240: ldloc.s V_8
IL_6242: call string [mscorlib]System.Convert::ToString(int32)
IL_6247: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_624c: stloc.s V_6
IL_624e: br.s IL_6296
IL_6250: ldloc.s V_7
IL_6252: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6257: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_625c: stloc.s V_8
IL_625e: ldloc.s V_10
IL_6260: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6265: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_626a: stloc.s V_6
IL_626c: ldloc.s V_6
IL_626e: call string [mscorlib]System.Convert::ToString(int32)
IL_6273: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6278: stloc.s V_7
IL_627a: ldloc.s V_8
IL_627c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6281: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6286: stloc.s V_6
IL_6288: ldloc.s V_10
IL_628a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_628f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6294: stloc.s V_8
IL_6296: ldloc.s V_10
IL_6298: ldloc.s V_7
IL_629a: beq.s IL_62e4
IL_629c: ldloc.s V_6
IL_629e: call string [mscorlib]System.Convert::ToString(int32)
IL_62a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62a8: stloc.s V_10
IL_62aa: ldloc.s V_6
IL_62ac: call string [mscorlib]System.Convert::ToString(int32)
IL_62b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62b6: stloc.s V_6
IL_62b8: ldloc.s V_7
IL_62ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_62bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_62c4: stloc.s V_7
IL_62c6: ldloc.s V_6
IL_62c8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_62cd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_62d2: stloc.s V_7
IL_62d4: ldloc.s V_10
IL_62d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_62db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_62e0: stloc.s V_10
IL_62e2: br.s IL_632a
IL_62e4: ldloc.s V_6
IL_62e6: call string [mscorlib]System.Convert::ToString(int32)
IL_62eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62f0: stloc.s V_8
IL_62f2: ldloc.s V_8
IL_62f4: call string [mscorlib]System.Convert::ToString(int32)
IL_62f9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62fe: stloc.s V_9
IL_6300: ldloc.s V_8
IL_6302: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6307: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_630c: stloc.s V_10
IL_630e: ldloc.s V_9
IL_6310: call string [mscorlib]System.Convert::ToString(int32)
IL_6315: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_631a: stloc.s V_10
IL_631c: ldloc.s V_10
IL_631e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6323: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6328: stloc.s V_8
IL_632a: ldloc.s V_7
IL_632c: ldloc.s V_7
IL_632e: bgt.s IL_6378
IL_6330: ldloc.s V_6
IL_6332: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6337: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_633c: stloc.s V_8
IL_633e: ldloc.s V_9
IL_6340: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6345: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_634a: stloc.s V_8
IL_634c: ldloc.s V_6
IL_634e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6353: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6358: stloc.s V_6
IL_635a: ldloc.s V_10
IL_635c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6361: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6366: stloc.s V_8
IL_6368: ldloc.s V_6
IL_636a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_636f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6374: stloc.s V_6
IL_6376: br.s IL_63be
IL_6378: ldloc.s V_8
IL_637a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_637f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6384: stloc.s V_9
IL_6386: ldloc.s V_7
IL_6388: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_638d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6392: stloc.s V_10
IL_6394: ldloc.s V_10
IL_6396: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_639b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_63a0: stloc.s V_9
IL_63a2: ldloc.s V_6
IL_63a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_63a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_63ae: stloc.s V_8
IL_63b0: ldloc.s V_6
IL_63b2: call string [mscorlib]System.Convert::ToString(int32)
IL_63b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_63bc: stloc.s V_8
IL_63be: ldloc.s V_9
IL_63c0: ldloc.s V_8
IL_63c2: blt.s IL_640c
IL_63c4: ldloc.s V_6
IL_63c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_63cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_63d0: stloc.s V_10
IL_63d2: ldloc.s V_7
IL_63d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_63d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_63de: stloc.s V_10
IL_63e0: ldloc.s V_9
IL_63e2: call string [mscorlib]System.Convert::ToString(int32)
IL_63e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_63ec: stloc.s V_7
IL_63ee: ldloc.s V_9
IL_63f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_63f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_63fa: stloc.s V_7
IL_63fc: ldloc.s V_8
IL_63fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6403: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6408: stloc.s V_9
IL_640a: br.s IL_6452
IL_640c: ldloc.s V_10
IL_640e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6413: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6418: stloc.s V_8
IL_641a: ldloc.s V_6
IL_641c: call string [mscorlib]System.Convert::ToString(int32)
IL_6421: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6426: stloc.s V_7
IL_6428: ldloc.s V_6
IL_642a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_642f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6434: stloc.s V_10
IL_6436: ldloc.s V_6
IL_6438: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_643d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6442: stloc.s V_7
IL_6444: ldloc.s V_6
IL_6446: call string [mscorlib]System.Convert::ToString(int32)
IL_644b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6450: stloc.s V_9
IL_6452: ldloc.s V_6
IL_6454: ldloc.s V_7
IL_6456: ble.s IL_64a0
IL_6458: ldloc.s V_9
IL_645a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_645f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6464: stloc.s V_7
IL_6466: ldloc.s V_6
IL_6468: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_646d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6472: stloc.s V_6
IL_6474: ldloc.s V_9
IL_6476: call string [mscorlib]System.Convert::ToString(int32)
IL_647b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6480: stloc.s V_7
IL_6482: ldloc.s V_10
IL_6484: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6489: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_648e: stloc.s V_9
IL_6490: ldloc.s V_7
IL_6492: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6497: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_649c: stloc.s V_6
IL_649e: br.s IL_64e6
IL_64a0: ldloc.s V_9
IL_64a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_64a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_64ac: stloc.s V_9
IL_64ae: ldloc.s V_6
IL_64b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_64b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_64ba: stloc.s V_7
IL_64bc: ldloc.s V_9
IL_64be: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_64c3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_64c8: stloc.s V_8
IL_64ca: ldloc.s V_6
IL_64cc: call string [mscorlib]System.Convert::ToString(int32)
IL_64d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_64d6: stloc.s V_10
IL_64d8: ldloc.s V_6
IL_64da: call string [mscorlib]System.Convert::ToString(int32)
IL_64df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_64e4: stloc.s V_6
IL_64e6: ldloc.s V_7
IL_64e8: ldloc.s V_7
IL_64ea: bgt.s IL_6534
IL_64ec: ldloc.s V_9
IL_64ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_64f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_64f8: stloc.s V_8
IL_64fa: ldloc.s V_6
IL_64fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6501: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6506: stloc.s V_9
IL_6508: ldloc.s V_10
IL_650a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_650f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6514: stloc.s V_9
IL_6516: ldloc.s V_8
IL_6518: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_651d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6522: stloc.s V_7
IL_6524: ldloc.s V_6
IL_6526: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_652b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6530: stloc.s V_7
IL_6532: br.s IL_657a
IL_6534: ldloc.s V_8
IL_6536: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_653b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6540: stloc.s V_10
IL_6542: ldloc.s V_10
IL_6544: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6549: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_654e: stloc.s V_8
IL_6550: ldloc.s V_7
IL_6552: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6557: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_655c: stloc.s V_7
IL_655e: ldloc.s V_6
IL_6560: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6565: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_656a: stloc.s V_6
IL_656c: ldloc.s V_6
IL_656e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6573: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6578: stloc.s V_6
IL_657a: ldloc.s V_6
IL_657c: ldloc.s V_6
IL_657e: bne.un.s IL_65c8
IL_6580: ldloc.s V_9
IL_6582: call string [mscorlib]System.Convert::ToString(int32)
IL_6587: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_658c: stloc.s V_8
IL_658e: ldloc.s V_9
IL_6590: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6595: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_659a: stloc.s V_9
IL_659c: ldloc.s V_6
IL_659e: call string [mscorlib]System.Convert::ToString(int32)
IL_65a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_65a8: stloc.s V_9
IL_65aa: ldloc.s V_9
IL_65ac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65b1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65b6: stloc.s V_6
IL_65b8: ldloc.s V_8
IL_65ba: call string [mscorlib]System.Convert::ToString(int32)
IL_65bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_65c4: stloc.s V_6
IL_65c6: br.s IL_660e
IL_65c8: ldloc.s V_8
IL_65ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65d4: stloc.s V_6
IL_65d6: ldloc.s V_7
IL_65d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65e2: stloc.s V_8
IL_65e4: ldloc.s V_8
IL_65e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65f0: stloc.s V_7
IL_65f2: ldloc.s V_6
IL_65f4: call string [mscorlib]System.Convert::ToString(int32)
IL_65f9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_65fe: stloc.s V_7
IL_6600: ldloc.s V_9
IL_6602: call string [mscorlib]System.Convert::ToString(int32)
IL_6607: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_660c: stloc.s V_10
IL_660e: ldloc.s V_9
IL_6610: ldloc.s V_6
IL_6612: bne.un.s IL_665c
IL_6614: ldloc.s V_8
IL_6616: call string [mscorlib]System.Convert::ToString(int32)
IL_661b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6620: stloc.s V_7
IL_6622: ldloc.s V_7
IL_6624: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6629: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_662e: stloc.s V_8
IL_6630: ldloc.s V_7
IL_6632: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6637: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_663c: stloc.s V_9
IL_663e: ldloc.s V_9
IL_6640: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6645: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_664a: stloc.s V_9
IL_664c: ldloc.s V_8
IL_664e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6653: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6658: stloc.s V_9
IL_665a: br.s IL_66a2
IL_665c: ldloc.s V_10
IL_665e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6663: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6668: stloc.s V_9
IL_666a: ldloc.s V_6
IL_666c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6671: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6676: stloc.s V_9
IL_6678: ldloc.s V_8
IL_667a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_667f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6684: stloc.s V_9
IL_6686: ldloc.s V_6
IL_6688: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_668d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6692: stloc.s V_6
IL_6694: ldloc.s V_6
IL_6696: call string [mscorlib]System.Convert::ToString(int32)
IL_669b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66a0: stloc.s V_8
IL_66a2: ldloc.s V_7
IL_66a4: ldloc.s V_8
IL_66a6: blt.s IL_66f0
IL_66a8: ldloc.s V_6
IL_66aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_66af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_66b4: stloc.s V_8
IL_66b6: ldloc.s V_6
IL_66b8: call string [mscorlib]System.Convert::ToString(int32)
IL_66bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66c2: stloc.s V_10
IL_66c4: ldloc.s V_7
IL_66c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_66cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_66d0: stloc.s V_6
IL_66d2: ldloc.s V_9
IL_66d4: call string [mscorlib]System.Convert::ToString(int32)
IL_66d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66de: stloc.s V_6
IL_66e0: ldloc.s V_10
IL_66e2: call string [mscorlib]System.Convert::ToString(int32)
IL_66e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66ec: stloc.s V_10
IL_66ee: br.s IL_6736
IL_66f0: ldloc.s V_8
IL_66f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_66f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_66fc: stloc.s V_9
IL_66fe: ldloc.s V_8
IL_6700: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6705: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_670a: stloc.s V_9
IL_670c: ldloc.s V_8
IL_670e: call string [mscorlib]System.Convert::ToString(int32)
IL_6713: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6718: stloc.s V_6
IL_671a: ldloc.s V_9
IL_671c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6721: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6726: stloc.s V_10
IL_6728: ldloc.s V_6
IL_672a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_672f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6734: stloc.s V_6
IL_6736: ldloc.s V_7
IL_6738: ldloc.s V_6
IL_673a: bge.s IL_6784
IL_673c: ldloc.s V_6
IL_673e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6743: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6748: stloc.s V_6
IL_674a: ldloc.s V_8
IL_674c: call string [mscorlib]System.Convert::ToString(int32)
IL_6751: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6756: stloc.s V_7
IL_6758: ldloc.s V_7
IL_675a: call string [mscorlib]System.Convert::ToString(int32)
IL_675f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6764: stloc.s V_10
IL_6766: ldloc.s V_8
IL_6768: call string [mscorlib]System.Convert::ToString(int32)
IL_676d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6772: stloc.s V_9
IL_6774: ldloc.s V_9
IL_6776: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_677b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6780: stloc.s V_10
IL_6782: br.s IL_67ca
IL_6784: ldloc.s V_8
IL_6786: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_678b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6790: stloc.s V_7
IL_6792: ldloc.s V_6
IL_6794: call string [mscorlib]System.Convert::ToString(int32)
IL_6799: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_679e: stloc.s V_8
IL_67a0: ldloc.s V_6
IL_67a2: call string [mscorlib]System.Convert::ToString(int32)
IL_67a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_67ac: stloc.s V_10
IL_67ae: ldloc.s V_7
IL_67b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_67b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_67ba: stloc.s V_9
IL_67bc: ldloc.s V_9
IL_67be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_67c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_67c8: stloc.s V_8
IL_67ca: ldloc.s V_10
IL_67cc: ldloc.s V_7
IL_67ce: bge.s IL_6818
IL_67d0: ldloc.s V_9
IL_67d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_67d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_67dc: stloc.s V_9
IL_67de: ldloc.s V_8
IL_67e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_67e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_67ea: stloc.s V_10
IL_67ec: ldloc.s V_8
IL_67ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_67f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_67f8: stloc.s V_6
IL_67fa: ldloc.s V_6
IL_67fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6801: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6806: stloc.s V_7
IL_6808: ldloc.s V_10
IL_680a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_680f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6814: stloc.s V_10
IL_6816: br.s IL_685e
IL_6818: ldloc.s V_7
IL_681a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_681f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6824: stloc.s V_6
IL_6826: ldloc.s V_9
IL_6828: call string [mscorlib]System.Convert::ToString(int32)
IL_682d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6832: stloc.s V_8
IL_6834: ldloc.s V_8
IL_6836: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_683b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6840: stloc.s V_10
IL_6842: ldloc.s V_9
IL_6844: call string [mscorlib]System.Convert::ToString(int32)
IL_6849: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_684e: stloc.s V_10
IL_6850: ldloc.s V_8
IL_6852: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6857: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_685c: stloc.s V_6
IL_685e: ldloc.s V_8
IL_6860: ldloc.s V_9
IL_6862: blt.s IL_68ac
IL_6864: ldloc.s V_8
IL_6866: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_686b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6870: stloc.s V_7
IL_6872: ldloc.s V_8
IL_6874: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6879: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_687e: stloc.s V_10
IL_6880: ldloc.s V_9
IL_6882: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6887: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_688c: stloc.s V_6
IL_688e: ldloc.s V_7
IL_6890: call string [mscorlib]System.Convert::ToString(int32)
IL_6895: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_689a: stloc.s V_8
IL_689c: ldloc.s V_10
IL_689e: call string [mscorlib]System.Convert::ToString(int32)
IL_68a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_68a8: stloc.s V_10
IL_68aa: br.s IL_68f2
IL_68ac: ldloc.s V_6
IL_68ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_68b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_68b8: stloc.s V_7
IL_68ba: ldloc.s V_6
IL_68bc: call string [mscorlib]System.Convert::ToString(int32)
IL_68c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_68c6: stloc.s V_8
IL_68c8: ldloc.s V_9
IL_68ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_68cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_68d4: stloc.s V_8
IL_68d6: ldloc.s V_9
IL_68d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_68dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_68e2: stloc.s V_6
IL_68e4: ldloc.s V_8
IL_68e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_68eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_68f0: stloc.s V_9
IL_68f2: ldloc.s V_10
IL_68f4: ldloc.s V_10
IL_68f6: ble.s IL_6940
IL_68f8: ldloc.s V_10
IL_68fa: call string [mscorlib]System.Convert::ToString(int32)
IL_68ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6904: stloc.s V_8
IL_6906: ldloc.s V_8
IL_6908: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_690d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6912: stloc.s V_8
IL_6914: ldloc.s V_7
IL_6916: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_691b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6920: stloc.s V_9
IL_6922: ldloc.s V_7
IL_6924: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6929: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_692e: stloc.s V_6
IL_6930: ldloc.s V_10
IL_6932: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6937: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_693c: stloc.s V_7
IL_693e: br.s IL_6986
IL_6940: ldloc.s V_6
IL_6942: call string [mscorlib]System.Convert::ToString(int32)
IL_6947: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_694c: stloc.s V_9
IL_694e: ldloc.s V_9
IL_6950: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6955: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_695a: stloc.s V_8
IL_695c: ldloc.s V_7
IL_695e: call string [mscorlib]System.Convert::ToString(int32)
IL_6963: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6968: stloc.s V_9
IL_696a: ldloc.s V_8
IL_696c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6971: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6976: stloc.s V_10
IL_6978: ldloc.s V_7
IL_697a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_697f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6984: stloc.s V_10
IL_6986: ldloc.s V_8
IL_6988: ldloc.s V_10
IL_698a: ble.s IL_69d4
IL_698c: ldloc.s V_6
IL_698e: call string [mscorlib]System.Convert::ToString(int32)
IL_6993: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6998: stloc.s V_8
IL_699a: ldloc.s V_6
IL_699c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69a6: stloc.s V_10
IL_69a8: ldloc.s V_7
IL_69aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69b4: stloc.s V_8
IL_69b6: ldloc.s V_8
IL_69b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_69bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_69c2: stloc.s V_9
IL_69c4: ldloc.s V_9
IL_69c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69d0: stloc.s V_7
IL_69d2: br.s IL_6a1a
IL_69d4: ldloc.s V_7
IL_69d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_69db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_69e0: stloc.s V_9
IL_69e2: ldloc.s V_10
IL_69e4: call string [mscorlib]System.Convert::ToString(int32)
IL_69e9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_69ee: stloc.s V_7
IL_69f0: ldloc.s V_10
IL_69f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69fc: stloc.s V_6
IL_69fe: ldloc.s V_7
IL_6a00: call string [mscorlib]System.Convert::ToString(int32)
IL_6a05: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6a0a: stloc.s V_9
IL_6a0c: ldloc.s V_6
IL_6a0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a18: stloc.s V_6
IL_6a1a: ldloc.s V_10
IL_6a1c: ldloc.s V_9
IL_6a1e: beq.s IL_6a68
IL_6a20: ldloc.s V_8
IL_6a22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a2c: stloc.s V_8
IL_6a2e: ldloc.s V_9
IL_6a30: call string [mscorlib]System.Convert::ToString(int32)
IL_6a35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6a3a: stloc.s V_10
IL_6a3c: ldloc.s V_6
IL_6a3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a48: stloc.s V_6
IL_6a4a: ldloc.s V_6
IL_6a4c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a51: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a56: stloc.s V_8
IL_6a58: ldloc.s V_6
IL_6a5a: call string [mscorlib]System.Convert::ToString(int32)
IL_6a5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6a64: stloc.s V_9
IL_6a66: br.s IL_6aae
IL_6a68: ldloc.s V_6
IL_6a6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6a6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6a74: stloc.s V_9
IL_6a76: ldloc.s V_10
IL_6a78: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a7d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a82: stloc.s V_6
IL_6a84: ldloc.s V_9
IL_6a86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6a8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6a90: stloc.s V_6
IL_6a92: ldloc.s V_8
IL_6a94: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6a99: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6a9e: stloc.s V_6
IL_6aa0: ldloc.s V_10
IL_6aa2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6aa7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6aac: stloc.s V_9
IL_6aae: ldloc.s V_10
IL_6ab0: ldloc.s V_8
IL_6ab2: ble.s IL_6afc
IL_6ab4: ldloc.s V_10
IL_6ab6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6abb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6ac0: stloc.s V_10
IL_6ac2: ldloc.s V_7
IL_6ac4: call string [mscorlib]System.Convert::ToString(int32)
IL_6ac9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ace: stloc.s V_6
IL_6ad0: ldloc.s V_9
IL_6ad2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6ad7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6adc: stloc.s V_8
IL_6ade: ldloc.s V_10
IL_6ae0: call string [mscorlib]System.Convert::ToString(int32)
IL_6ae5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6aea: stloc.s V_9
IL_6aec: ldloc.s V_10
IL_6aee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6af3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6af8: stloc.s V_10
IL_6afa: br.s IL_6b42
IL_6afc: ldloc.s V_9
IL_6afe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6b03: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6b08: stloc.s V_7
IL_6b0a: ldloc.s V_6
IL_6b0c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6b11: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6b16: stloc.s V_6
IL_6b18: ldloc.s V_8
IL_6b1a: call string [mscorlib]System.Convert::ToString(int32)
IL_6b1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6b24: stloc.s V_10
IL_6b26: ldloc.s V_8
IL_6b28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6b2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6b32: stloc.s V_10
IL_6b34: ldloc.s V_8
IL_6b36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b40: stloc.s V_7
IL_6b42: ldloc.s V_7
IL_6b44: ldloc.s V_10
IL_6b46: bge.s IL_6b90
IL_6b48: ldloc.s V_9
IL_6b4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6b4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6b54: stloc.s V_9
IL_6b56: ldloc.s V_8
IL_6b58: call string [mscorlib]System.Convert::ToString(int32)
IL_6b5d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6b62: stloc.s V_6
IL_6b64: ldloc.s V_8
IL_6b66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b70: stloc.s V_9
IL_6b72: ldloc.s V_9
IL_6b74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b7e: stloc.s V_6
IL_6b80: ldloc.s V_6
IL_6b82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b8c: stloc.s V_9
IL_6b8e: br.s IL_6bd6
IL_6b90: ldloc.s V_7
IL_6b92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b9c: stloc.s V_8
IL_6b9e: ldloc.s V_10
IL_6ba0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6ba5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6baa: stloc.s V_7
IL_6bac: ldloc.s V_7
IL_6bae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6bb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6bb8: stloc.s V_7
IL_6bba: ldloc.s V_10
IL_6bbc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6bc1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6bc6: stloc.s V_7
IL_6bc8: ldloc.s V_10
IL_6bca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6bcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6bd4: stloc.s V_10
IL_6bd6: ldloc.s V_8
IL_6bd8: ldloc.s V_7
IL_6bda: bge.s IL_6c24
IL_6bdc: ldloc.s V_7
IL_6bde: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6be3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6be8: stloc.s V_6
IL_6bea: ldloc.s V_9
IL_6bec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6bf1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6bf6: stloc.s V_7
IL_6bf8: ldloc.s V_8
IL_6bfa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6bff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6c04: stloc.s V_6
IL_6c06: ldloc.s V_7
IL_6c08: call string [mscorlib]System.Convert::ToString(int32)
IL_6c0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6c12: stloc.s V_9
IL_6c14: ldloc.s V_8
IL_6c16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6c1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6c20: stloc.s V_10
IL_6c22: br.s IL_6c6a
IL_6c24: ldloc.s V_6
IL_6c26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c30: stloc.s V_7
IL_6c32: ldloc.s V_7
IL_6c34: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c39: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c3e: stloc.s V_7
IL_6c40: ldloc.s V_9
IL_6c42: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6c47: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6c4c: stloc.s V_6
IL_6c4e: ldloc.s V_7
IL_6c50: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c55: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c5a: stloc.s V_8
IL_6c5c: ldloc.s V_6
IL_6c5e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c63: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c68: stloc.s V_9
IL_6c6a: ldloc.s V_10
IL_6c6c: ldloc.s V_10
IL_6c6e: bgt.s IL_6cb8
IL_6c70: ldloc.s V_6
IL_6c72: call string [mscorlib]System.Convert::ToString(int32)
IL_6c77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6c7c: stloc.s V_8
IL_6c7e: ldloc.s V_6
IL_6c80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6c85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6c8a: stloc.s V_9
IL_6c8c: ldloc.s V_10
IL_6c8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6c93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6c98: stloc.s V_9
IL_6c9a: ldloc.s V_7
IL_6c9c: call string [mscorlib]System.Convert::ToString(int32)
IL_6ca1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ca6: stloc.s V_8
IL_6ca8: ldloc.s V_6
IL_6caa: call string [mscorlib]System.Convert::ToString(int32)
IL_6caf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6cb4: stloc.s V_6
IL_6cb6: br.s IL_6cfe
IL_6cb8: ldloc.s V_8
IL_6cba: call string [mscorlib]System.Convert::ToString(int32)
IL_6cbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6cc4: stloc.s V_7
IL_6cc6: ldloc.s V_8
IL_6cc8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ccd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6cd2: stloc.s V_10
IL_6cd4: ldloc.s V_10
IL_6cd6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6cdb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6ce0: stloc.s V_10
IL_6ce2: ldloc.s V_8
IL_6ce4: call string [mscorlib]System.Convert::ToString(int32)
IL_6ce9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6cee: stloc.s V_8
IL_6cf0: ldloc.s V_8
IL_6cf2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6cf7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6cfc: stloc.s V_7
IL_6cfe: ldloc.s V_6
IL_6d00: ldloc.s V_9
IL_6d02: bge.s IL_6d4c
IL_6d04: ldloc.s V_8
IL_6d06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d10: stloc.s V_7
IL_6d12: ldloc.s V_9
IL_6d14: call string [mscorlib]System.Convert::ToString(int32)
IL_6d19: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d1e: stloc.s V_8
IL_6d20: ldloc.s V_8
IL_6d22: call string [mscorlib]System.Convert::ToString(int32)
IL_6d27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d2c: stloc.s V_10
IL_6d2e: ldloc.s V_9
IL_6d30: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d35: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d3a: stloc.s V_8
IL_6d3c: ldloc.s V_7
IL_6d3e: call string [mscorlib]System.Convert::ToString(int32)
IL_6d43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d48: stloc.s V_8
IL_6d4a: br.s IL_6d92
IL_6d4c: ldloc.s V_7
IL_6d4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d58: stloc.s V_6
IL_6d5a: ldloc.s V_6
IL_6d5c: call string [mscorlib]System.Convert::ToString(int32)
IL_6d61: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d66: stloc.s V_9
IL_6d68: ldloc.s V_9
IL_6d6a: call string [mscorlib]System.Convert::ToString(int32)
IL_6d6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d74: stloc.s V_7
IL_6d76: ldloc.s V_8
IL_6d78: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6d7d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6d82: stloc.s V_7
IL_6d84: ldloc.s V_10
IL_6d86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d90: stloc.s V_9
IL_6d92: ldloc.s V_7
IL_6d94: ldloc.s V_8
IL_6d96: blt.s IL_6de0
IL_6d98: ldloc.s V_7
IL_6d9a: call string [mscorlib]System.Convert::ToString(int32)
IL_6d9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6da4: stloc.s V_9
IL_6da6: ldloc.s V_10
IL_6da8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6dad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6db2: stloc.s V_9
IL_6db4: ldloc.s V_7
IL_6db6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6dbb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6dc0: stloc.s V_10
IL_6dc2: ldloc.s V_8
IL_6dc4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6dc9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6dce: stloc.s V_10
IL_6dd0: ldloc.s V_6
IL_6dd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6dd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6ddc: stloc.s V_6
IL_6dde: br.s IL_6e26
IL_6de0: ldloc.s V_6
IL_6de2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6de7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6dec: stloc.s V_7
IL_6dee: ldloc.s V_8
IL_6df0: call string [mscorlib]System.Convert::ToString(int32)
IL_6df5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6dfa: stloc.s V_6
IL_6dfc: ldloc.s V_9
IL_6dfe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e03: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e08: stloc.s V_9
IL_6e0a: ldloc.s V_8
IL_6e0c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e11: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e16: stloc.s V_10
IL_6e18: ldloc.s V_7
IL_6e1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e24: stloc.s V_6
IL_6e26: ldloc.s V_6
IL_6e28: ldloc.s V_7
IL_6e2a: bne.un.s IL_6e74
IL_6e2c: ldloc.s V_9
IL_6e2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6e33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6e38: stloc.s V_7
IL_6e3a: ldloc.s V_7
IL_6e3c: call string [mscorlib]System.Convert::ToString(int32)
IL_6e41: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6e46: stloc.s V_10
IL_6e48: ldloc.s V_9
IL_6e4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6e4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6e54: stloc.s V_7
IL_6e56: ldloc.s V_6
IL_6e58: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6e5d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6e62: stloc.s V_9
IL_6e64: ldloc.s V_6
IL_6e66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e70: stloc.s V_6
IL_6e72: br.s IL_6eba
IL_6e74: ldloc.s V_6
IL_6e76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6e7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6e80: stloc.s V_8
IL_6e82: ldloc.s V_9
IL_6e84: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6e89: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6e8e: stloc.s V_9
IL_6e90: ldloc.s V_9
IL_6e92: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6e97: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6e9c: stloc.s V_10
IL_6e9e: ldloc.s V_9
IL_6ea0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ea5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6eaa: stloc.s V_8
IL_6eac: ldloc.s V_10
IL_6eae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6eb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6eb8: stloc.s V_8
IL_6eba: ldloc.s V_7
IL_6ebc: ldloc.s V_7
IL_6ebe: beq.s IL_6f08
IL_6ec0: ldloc.s V_6
IL_6ec2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ec7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6ecc: stloc.s V_7
IL_6ece: ldloc.s V_8
IL_6ed0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6ed5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6eda: stloc.s V_7
IL_6edc: ldloc.s V_9
IL_6ede: call string [mscorlib]System.Convert::ToString(int32)
IL_6ee3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ee8: stloc.s V_10
IL_6eea: ldloc.s V_9
IL_6eec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ef1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6ef6: stloc.s V_10
IL_6ef8: ldloc.s V_6
IL_6efa: call string [mscorlib]System.Convert::ToString(int32)
IL_6eff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6f04: stloc.s V_8
IL_6f06: br.s IL_6f4e
IL_6f08: ldloc.s V_9
IL_6f0a: call string [mscorlib]System.Convert::ToString(int32)
IL_6f0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6f14: stloc.s V_7
IL_6f16: ldloc.s V_10
IL_6f18: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6f1d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6f22: stloc.s V_6
IL_6f24: ldloc.s V_10
IL_6f26: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6f2b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6f30: stloc.s V_9
IL_6f32: ldloc.s V_9
IL_6f34: call string [mscorlib]System.Convert::ToString(int32)
IL_6f39: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6f3e: stloc.s V_6
IL_6f40: ldloc.s V_6
IL_6f42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f4c: stloc.s V_8
IL_6f4e: ldloc.s V_10
IL_6f50: ldloc.s V_6
IL_6f52: bne.un.s IL_6f9c
IL_6f54: ldloc.s V_7
IL_6f56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f60: stloc.s V_10
IL_6f62: ldloc.s V_7
IL_6f64: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6f69: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6f6e: stloc.s V_10
IL_6f70: ldloc.s V_8
IL_6f72: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f77: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f7c: stloc.s V_9
IL_6f7e: ldloc.s V_6
IL_6f80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f8a: stloc.s V_10
IL_6f8c: ldloc.s V_6
IL_6f8e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f93: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f98: stloc.s V_10
IL_6f9a: br.s IL_6fe2
IL_6f9c: ldloc.s V_6
IL_6f9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6fa3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6fa8: stloc.s V_9
IL_6faa: ldloc.s V_6
IL_6fac: call string [mscorlib]System.Convert::ToString(int32)
IL_6fb1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6fb6: stloc.s V_6
IL_6fb8: ldloc.s V_8
IL_6fba: call string [mscorlib]System.Convert::ToString(int32)
IL_6fbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6fc4: stloc.s V_8
IL_6fc6: ldloc.s V_9
IL_6fc8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6fcd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6fd2: stloc.s V_7
IL_6fd4: ldloc.s V_10
IL_6fd6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6fdb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6fe0: stloc.s V_10
IL_6fe2: ldloc.s V_6
IL_6fe4: ldloc.s V_10
IL_6fe6: bne.un.s IL_7030
IL_6fe8: ldloc.s V_10
IL_6fea: call string [mscorlib]System.Convert::ToString(int32)
IL_6fef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ff4: stloc.s V_9
IL_6ff6: ldloc.s V_8
IL_6ff8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6ffd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7002: stloc.s V_9
IL_7004: ldloc.s V_7
IL_7006: call string [mscorlib]System.Convert::ToString(int32)
IL_700b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7010: stloc.s V_8
IL_7012: ldloc.s V_8
IL_7014: call string [mscorlib]System.Convert::ToString(int32)
IL_7019: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_701e: stloc.s V_7
IL_7020: ldloc.s V_8
IL_7022: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7027: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_702c: stloc.s V_10
IL_702e: br.s IL_7076
IL_7030: ldloc.s V_8
IL_7032: call string [mscorlib]System.Convert::ToString(int32)
IL_7037: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_703c: stloc.s V_9
IL_703e: ldloc.s V_6
IL_7040: call string [mscorlib]System.Convert::ToString(int32)
IL_7045: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_704a: stloc.s V_10
IL_704c: ldloc.s V_6
IL_704e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7053: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7058: stloc.s V_6
IL_705a: ldloc.s V_10
IL_705c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7061: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7066: stloc.s V_10
IL_7068: ldloc.s V_8
IL_706a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_706f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7074: stloc.s V_8
IL_7076: ldloc.s V_7
IL_7078: ldloc.s V_10
IL_707a: bgt.s IL_70c4
IL_707c: ldloc.s V_7
IL_707e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7083: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7088: stloc.s V_6
IL_708a: ldloc.s V_10
IL_708c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7091: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7096: stloc.s V_6
IL_7098: ldloc.s V_6
IL_709a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_709f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_70a4: stloc.s V_9
IL_70a6: ldloc.s V_10
IL_70a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_70ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_70b2: stloc.s V_9
IL_70b4: ldloc.s V_10
IL_70b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_70bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_70c0: stloc.s V_10
IL_70c2: br.s IL_710a
IL_70c4: ldloc.s V_8
IL_70c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_70cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_70d0: stloc.s V_6
IL_70d2: ldloc.s V_8
IL_70d4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_70d9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_70de: stloc.s V_7
IL_70e0: ldloc.s V_6
IL_70e2: call string [mscorlib]System.Convert::ToString(int32)
IL_70e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_70ec: stloc.s V_9
IL_70ee: ldloc.s V_8
IL_70f0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_70f5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_70fa: stloc.s V_9
IL_70fc: ldloc.s V_9
IL_70fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7103: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7108: stloc.s V_9
IL_710a: ldloc.s V_9
IL_710c: ldloc.s V_8
IL_710e: beq.s IL_7158
IL_7110: ldloc.s V_6
IL_7112: call string [mscorlib]System.Convert::ToString(int32)
IL_7117: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_711c: stloc.s V_8
IL_711e: ldloc.s V_9
IL_7120: call string [mscorlib]System.Convert::ToString(int32)
IL_7125: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_712a: stloc.s V_7
IL_712c: ldloc.s V_10
IL_712e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7133: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7138: stloc.s V_9
IL_713a: ldloc.s V_7
IL_713c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7141: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7146: stloc.s V_6
IL_7148: ldloc.s V_7
IL_714a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_714f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7154: stloc.s V_7
IL_7156: br.s IL_719e
IL_7158: ldloc.s V_9
IL_715a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_715f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7164: stloc.s V_10
IL_7166: ldloc.s V_8
IL_7168: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_716d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7172: stloc.s V_10
IL_7174: ldloc.s V_8
IL_7176: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_717b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7180: stloc.s V_8
IL_7182: ldloc.s V_7
IL_7184: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7189: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_718e: stloc.s V_6
IL_7190: ldloc.s V_10
IL_7192: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7197: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_719c: stloc.s V_8
IL_719e: ldloc.s V_9
IL_71a0: ldloc.s V_8
IL_71a2: blt.s IL_71ec
IL_71a4: ldloc.s V_9
IL_71a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_71ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_71b0: stloc.s V_8
IL_71b2: ldloc.s V_8
IL_71b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_71b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_71be: stloc.s V_10
IL_71c0: ldloc.s V_9
IL_71c2: call string [mscorlib]System.Convert::ToString(int32)
IL_71c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_71cc: stloc.s V_10
IL_71ce: ldloc.s V_7
IL_71d0: call string [mscorlib]System.Convert::ToString(int32)
IL_71d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_71da: stloc.s V_8
IL_71dc: ldloc.s V_10
IL_71de: call string [mscorlib]System.Convert::ToString(int32)
IL_71e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_71e8: stloc.s V_10
IL_71ea: br.s IL_7232
IL_71ec: ldloc.s V_8
IL_71ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_71f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_71f8: stloc.s V_6
IL_71fa: ldloc.s V_7
IL_71fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7201: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7206: stloc.s V_6
IL_7208: ldloc.s V_7
IL_720a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_720f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7214: stloc.s V_6
IL_7216: ldloc.s V_6
IL_7218: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_721d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7222: stloc.s V_8
IL_7224: ldloc.s V_7
IL_7226: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_722b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7230: stloc.s V_8
IL_7232: ldloc.s V_9
IL_7234: ldloc.s V_9
IL_7236: beq.s IL_7280
IL_7238: ldloc.s V_8
IL_723a: call string [mscorlib]System.Convert::ToString(int32)
IL_723f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7244: stloc.s V_10
IL_7246: ldloc.s V_9
IL_7248: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_724d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7252: stloc.s V_8
IL_7254: ldloc.s V_9
IL_7256: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_725b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7260: stloc.s V_7
IL_7262: ldloc.s V_9
IL_7264: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7269: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_726e: stloc.s V_9
IL_7270: ldloc.s V_10
IL_7272: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7277: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_727c: stloc.s V_7
IL_727e: br.s IL_72c6
IL_7280: ldloc.s V_6
IL_7282: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7287: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_728c: stloc.s V_7
IL_728e: ldloc.s V_8
IL_7290: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7295: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_729a: stloc.s V_8
IL_729c: ldloc.s V_7
IL_729e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_72a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_72a8: stloc.s V_6
IL_72aa: ldloc.s V_8
IL_72ac: call string [mscorlib]System.Convert::ToString(int32)
IL_72b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_72b6: stloc.s V_8
IL_72b8: ldloc.s V_8
IL_72ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_72bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_72c4: stloc.s V_7
IL_72c6: ldloc.s V_8
IL_72c8: ldloc.s V_6
IL_72ca: blt.s IL_7314
IL_72cc: ldloc.s V_10
IL_72ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_72d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_72d8: stloc.s V_8
IL_72da: ldloc.s V_10
IL_72dc: call string [mscorlib]System.Convert::ToString(int32)
IL_72e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_72e6: stloc.s V_7
IL_72e8: ldloc.s V_6
IL_72ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_72ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_72f4: stloc.s V_10
IL_72f6: ldloc.s V_7
IL_72f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_72fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7302: stloc.s V_9
IL_7304: ldloc.s V_6
IL_7306: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_730b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7310: stloc.s V_9
IL_7312: br.s IL_735a
IL_7314: ldloc.s V_10
IL_7316: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_731b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7320: stloc.s V_7
IL_7322: ldloc.s V_7
IL_7324: call string [mscorlib]System.Convert::ToString(int32)
IL_7329: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_732e: stloc.s V_6
IL_7330: ldloc.s V_7
IL_7332: call string [mscorlib]System.Convert::ToString(int32)
IL_7337: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_733c: stloc.s V_6
IL_733e: ldloc.s V_7
IL_7340: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7345: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_734a: stloc.s V_7
IL_734c: ldloc.s V_8
IL_734e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7353: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7358: stloc.s V_6
IL_735a: ldloc.s V_8
IL_735c: ldloc.s V_7
IL_735e: ble.s IL_73a8
IL_7360: ldloc.s V_6
IL_7362: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7367: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_736c: stloc.s V_8
IL_736e: ldloc.s V_9
IL_7370: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7375: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_737a: stloc.s V_6
IL_737c: ldloc.s V_8
IL_737e: call string [mscorlib]System.Convert::ToString(int32)
IL_7383: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7388: stloc.s V_6
IL_738a: ldloc.s V_6
IL_738c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7391: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7396: stloc.s V_8
IL_7398: ldloc.s V_8
IL_739a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_739f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_73a4: stloc.s V_10
IL_73a6: br.s IL_73ee
IL_73a8: ldloc.s V_7
IL_73aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_73af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_73b4: stloc.s V_8
IL_73b6: ldloc.s V_6
IL_73b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_73bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_73c2: stloc.s V_9
IL_73c4: ldloc.s V_7
IL_73c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_73cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_73d0: stloc.s V_9
IL_73d2: ldloc.s V_8
IL_73d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_73d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_73de: stloc.s V_8
IL_73e0: ldloc.s V_10
IL_73e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_73e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_73ec: stloc.s V_9
IL_73ee: ldloc.s V_9
IL_73f0: ldloc.s V_10
IL_73f2: bgt.s IL_743c
IL_73f4: ldloc.s V_7
IL_73f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_73fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7400: stloc.s V_10
IL_7402: ldloc.s V_6
IL_7404: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7409: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_740e: stloc.s V_10
IL_7410: ldloc.s V_10
IL_7412: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7417: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_741c: stloc.s V_7
IL_741e: ldloc.s V_6
IL_7420: call string [mscorlib]System.Convert::ToString(int32)
IL_7425: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_742a: stloc.s V_9
IL_742c: ldloc.s V_7
IL_742e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7433: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7438: stloc.s V_6
IL_743a: br.s IL_7482
IL_743c: ldloc.s V_10
IL_743e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7443: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7448: stloc.s V_10
IL_744a: ldloc.s V_6
IL_744c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7451: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7456: stloc.s V_6
IL_7458: ldloc.s V_7
IL_745a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_745f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7464: stloc.s V_7
IL_7466: ldloc.s V_10
IL_7468: call string [mscorlib]System.Convert::ToString(int32)
IL_746d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7472: stloc.s V_10
IL_7474: ldloc.s V_10
IL_7476: call string [mscorlib]System.Convert::ToString(int32)
IL_747b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7480: stloc.s V_6
IL_7482: ldloc.s V_10
IL_7484: ldloc.s V_10
IL_7486: bne.un.s IL_74d0
IL_7488: ldloc.s V_10
IL_748a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_748f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7494: stloc.s V_7
IL_7496: ldloc.s V_9
IL_7498: call string [mscorlib]System.Convert::ToString(int32)
IL_749d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74a2: stloc.s V_6
IL_74a4: ldloc.s V_7
IL_74a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_74ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_74b0: stloc.s V_7
IL_74b2: ldloc.s V_9
IL_74b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_74b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_74be: stloc.s V_7
IL_74c0: ldloc.s V_9
IL_74c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_74c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_74cc: stloc.s V_7
IL_74ce: br.s IL_7516
IL_74d0: ldloc.s V_7
IL_74d2: call string [mscorlib]System.Convert::ToString(int32)
IL_74d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74dc: stloc.s V_7
IL_74de: ldloc.s V_6
IL_74e0: call string [mscorlib]System.Convert::ToString(int32)
IL_74e5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74ea: stloc.s V_10
IL_74ec: ldloc.s V_7
IL_74ee: call string [mscorlib]System.Convert::ToString(int32)
IL_74f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74f8: stloc.s V_9
IL_74fa: ldloc.s V_9
IL_74fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7501: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7506: stloc.s V_6
IL_7508: ldloc.s V_8
IL_750a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_750f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7514: stloc.s V_6
IL_7516: ldloc.s V_6
IL_7518: ldloc.s V_10
IL_751a: beq.s IL_7564
IL_751c: ldloc.s V_7
IL_751e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7523: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7528: stloc.s V_7
IL_752a: ldloc.s V_9
IL_752c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7531: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7536: stloc.s V_8
IL_7538: ldloc.s V_10
IL_753a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_753f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7544: stloc.s V_6
IL_7546: ldloc.s V_9
IL_7548: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_754d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7552: stloc.s V_10
IL_7554: ldloc.s V_6
IL_7556: call string [mscorlib]System.Convert::ToString(int32)
IL_755b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7560: stloc.s V_8
IL_7562: br.s IL_75aa
IL_7564: ldloc.s V_9
IL_7566: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_756b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7570: stloc.s V_6
IL_7572: ldloc.s V_7
IL_7574: call string [mscorlib]System.Convert::ToString(int32)
IL_7579: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_757e: stloc.s V_8
IL_7580: ldloc.s V_7
IL_7582: call string [mscorlib]System.Convert::ToString(int32)
IL_7587: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_758c: stloc.s V_9
IL_758e: ldloc.s V_9
IL_7590: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7595: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_759a: stloc.s V_8
IL_759c: ldloc.s V_8
IL_759e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_75a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_75a8: stloc.s V_6
IL_75aa: ldloc.s V_7
IL_75ac: ldloc.s V_10
IL_75ae: bne.un.s IL_75f8
IL_75b0: ldloc.s V_8
IL_75b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_75b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_75bc: stloc.s V_10
IL_75be: ldloc.s V_10
IL_75c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_75c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_75ca: stloc.s V_8
IL_75cc: ldloc.s V_9
IL_75ce: call string [mscorlib]System.Convert::ToString(int32)
IL_75d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_75d8: stloc.s V_8
IL_75da: ldloc.s V_9
IL_75dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_75e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_75e6: stloc.s V_7
IL_75e8: ldloc.s V_8
IL_75ea: call string [mscorlib]System.Convert::ToString(int32)
IL_75ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_75f4: stloc.s V_8
IL_75f6: br.s IL_763e
IL_75f8: ldloc.s V_6
IL_75fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_75ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7604: stloc.s V_8
IL_7606: ldloc.s V_7
IL_7608: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_760d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7612: stloc.s V_9
IL_7614: ldloc.s V_7
IL_7616: call string [mscorlib]System.Convert::ToString(int32)
IL_761b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7620: stloc.s V_8
IL_7622: ldloc.s V_10
IL_7624: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7629: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_762e: stloc.s V_10
IL_7630: ldloc.s V_10
IL_7632: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7637: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_763c: stloc.s V_6
IL_763e: ldloc.s V_6
IL_7640: ldloc.s V_9
IL_7642: bgt.s IL_768c
IL_7644: ldloc.s V_9
IL_7646: call string [mscorlib]System.Convert::ToString(int32)
IL_764b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7650: stloc.s V_10
IL_7652: ldloc.s V_6
IL_7654: call string [mscorlib]System.Convert::ToString(int32)
IL_7659: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_765e: stloc.s V_9
IL_7660: ldloc.s V_10
IL_7662: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7667: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_766c: stloc.s V_10
IL_766e: ldloc.s V_9
IL_7670: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7675: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_767a: stloc.s V_9
IL_767c: ldloc.s V_8
IL_767e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7683: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7688: stloc.s V_8
IL_768a: br.s IL_76d2
IL_768c: ldloc.s V_6
IL_768e: call string [mscorlib]System.Convert::ToString(int32)
IL_7693: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7698: stloc.s V_7
IL_769a: ldloc.s V_10
IL_769c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_76a1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_76a6: stloc.s V_7
IL_76a8: ldloc.s V_7
IL_76aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_76af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_76b4: stloc.s V_8
IL_76b6: ldloc.s V_10
IL_76b8: call string [mscorlib]System.Convert::ToString(int32)
IL_76bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_76c2: stloc.s V_6
IL_76c4: ldloc.s V_9
IL_76c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_76cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_76d0: stloc.s V_6
IL_76d2: ldloc.s V_9
IL_76d4: ldloc.s V_10
IL_76d6: beq.s IL_7720
IL_76d8: ldloc.s V_10
IL_76da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_76df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_76e4: stloc.s V_10
IL_76e6: ldloc.s V_7
IL_76e8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_76ed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_76f2: stloc.s V_9
IL_76f4: ldloc.s V_7
IL_76f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_76fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7700: stloc.s V_10
IL_7702: ldloc.s V_6
IL_7704: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7709: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_770e: stloc.s V_7
IL_7710: ldloc.s V_10
IL_7712: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7717: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_771c: stloc.s V_9
IL_771e: br.s IL_7766
IL_7720: ldloc.s V_9
IL_7722: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7727: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_772c: stloc.s V_8
IL_772e: ldloc.s V_10
IL_7730: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7735: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_773a: stloc.s V_9
IL_773c: ldloc.s V_6
IL_773e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7743: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7748: stloc.s V_10
IL_774a: ldloc.s V_6
IL_774c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7751: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7756: stloc.s V_7
IL_7758: ldloc.s V_8
IL_775a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_775f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7764: stloc.s V_6
IL_7766: ldloc.s V_10
IL_7768: ldloc.s V_9
IL_776a: blt.s IL_77b4
IL_776c: ldloc.s V_6
IL_776e: call string [mscorlib]System.Convert::ToString(int32)
IL_7773: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7778: stloc.s V_10
IL_777a: ldloc.s V_9
IL_777c: call string [mscorlib]System.Convert::ToString(int32)
IL_7781: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7786: stloc.s V_8
IL_7788: ldloc.s V_7
IL_778a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_778f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7794: stloc.s V_9
IL_7796: ldloc.s V_8
IL_7798: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_779d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_77a2: stloc.s V_8
IL_77a4: ldloc.s V_6
IL_77a6: call string [mscorlib]System.Convert::ToString(int32)
IL_77ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_77b0: stloc.s V_6
IL_77b2: br.s IL_77fa
IL_77b4: ldloc.s V_9
IL_77b6: call string [mscorlib]System.Convert::ToString(int32)
IL_77bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_77c0: stloc.s V_6
IL_77c2: ldloc.s V_8
IL_77c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_77c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_77ce: stloc.s V_10
IL_77d0: ldloc.s V_8
IL_77d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_77d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_77dc: stloc.s V_10
IL_77de: ldloc.s V_8
IL_77e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_77e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_77ea: stloc.s V_10
IL_77ec: ldloc.s V_10
IL_77ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_77f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_77f8: stloc.s V_7
IL_77fa: ldloc.s V_10
IL_77fc: ldloc.s V_6
IL_77fe: bne.un.s IL_7848
IL_7800: ldloc.s V_9
IL_7802: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7807: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_780c: stloc.s V_8
IL_780e: ldloc.s V_6
IL_7810: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7815: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_781a: stloc.s V_9
IL_781c: ldloc.s V_9
IL_781e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7823: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7828: stloc.s V_6
IL_782a: ldloc.s V_6
IL_782c: call string [mscorlib]System.Convert::ToString(int32)
IL_7831: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7836: stloc.s V_8
IL_7838: ldloc.s V_10
IL_783a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_783f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7844: stloc.s V_9
IL_7846: br.s IL_788e
IL_7848: ldloc.s V_7
IL_784a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_784f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7854: stloc.s V_6
IL_7856: ldloc.s V_9
IL_7858: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_785d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7862: stloc.s V_10
IL_7864: ldloc.s V_9
IL_7866: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_786b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7870: stloc.s V_6
IL_7872: ldloc.s V_6
IL_7874: call string [mscorlib]System.Convert::ToString(int32)
IL_7879: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_787e: stloc.s V_9
IL_7880: ldloc.s V_8
IL_7882: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7887: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_788c: stloc.s V_7
IL_788e: ldloc.s V_9
IL_7890: ldloc.s V_7
IL_7892: blt.s IL_78dc
IL_7894: ldloc.s V_9
IL_7896: call string [mscorlib]System.Convert::ToString(int32)
IL_789b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_78a0: stloc.s V_7
IL_78a2: ldloc.s V_9
IL_78a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_78a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_78ae: stloc.s V_7
IL_78b0: ldloc.s V_10
IL_78b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_78b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_78bc: stloc.s V_8
IL_78be: ldloc.s V_7
IL_78c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_78c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_78ca: stloc.s V_10
IL_78cc: ldloc.s V_6
IL_78ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_78d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_78d8: stloc.s V_8
IL_78da: br.s IL_7922
IL_78dc: ldloc.s V_9
IL_78de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_78e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_78e8: stloc.s V_8
IL_78ea: ldloc.s V_8
IL_78ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_78f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_78f6: stloc.s V_9
IL_78f8: ldloc.s V_10
IL_78fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_78ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7904: stloc.s V_7
IL_7906: ldloc.s V_7
IL_7908: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_790d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7912: stloc.s V_6
IL_7914: ldloc.s V_9
IL_7916: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_791b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7920: stloc.s V_6
IL_7922: ldloc.s V_6
IL_7924: ldloc.s V_10
IL_7926: bge.s IL_7970
IL_7928: ldloc.s V_8
IL_792a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_792f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7934: stloc.s V_10
IL_7936: ldloc.s V_10
IL_7938: call string [mscorlib]System.Convert::ToString(int32)
IL_793d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7942: stloc.s V_7
IL_7944: ldloc.s V_8
IL_7946: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_794b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7950: stloc.s V_9
IL_7952: ldloc.s V_8
IL_7954: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7959: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_795e: stloc.s V_9
IL_7960: ldloc.s V_8
IL_7962: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7967: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_796c: stloc.s V_7
IL_796e: br.s IL_79b6
IL_7970: ldloc.s V_7
IL_7972: call string [mscorlib]System.Convert::ToString(int32)
IL_7977: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_797c: stloc.s V_6
IL_797e: ldloc.s V_9
IL_7980: call string [mscorlib]System.Convert::ToString(int32)
IL_7985: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_798a: stloc.s V_9
IL_798c: ldloc.s V_8
IL_798e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7993: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7998: stloc.s V_9
IL_799a: ldloc.s V_7
IL_799c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_79a1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_79a6: stloc.s V_9
IL_79a8: ldloc.s V_6
IL_79aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_79af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_79b4: stloc.s V_7
IL_79b6: ldloc.s V_9
IL_79b8: ldloc.s V_6
IL_79ba: bge.s IL_7a04
IL_79bc: ldloc.s V_9
IL_79be: call string [mscorlib]System.Convert::ToString(int32)
IL_79c3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_79c8: stloc.s V_8
IL_79ca: ldloc.s V_8
IL_79cc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_79d1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_79d6: stloc.s V_9
IL_79d8: ldloc.s V_8
IL_79da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_79df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_79e4: stloc.s V_10
IL_79e6: ldloc.s V_10
IL_79e8: call string [mscorlib]System.Convert::ToString(int32)
IL_79ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_79f2: stloc.s V_6
IL_79f4: ldloc.s V_10
IL_79f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_79fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a00: stloc.s V_8
IL_7a02: br.s IL_7a4a
IL_7a04: ldloc.s V_6
IL_7a06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7a0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a10: stloc.s V_9
IL_7a12: ldloc.s V_8
IL_7a14: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a19: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7a1e: stloc.s V_7
IL_7a20: ldloc.s V_7
IL_7a22: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7a27: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7a2c: stloc.s V_6
IL_7a2e: ldloc.s V_8
IL_7a30: call string [mscorlib]System.Convert::ToString(int32)
IL_7a35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7a3a: stloc.s V_10
IL_7a3c: ldloc.s V_10
IL_7a3e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a43: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7a48: stloc.s V_8
IL_7a4a: ldloc.s V_8
IL_7a4c: ldloc.s V_9
IL_7a4e: bge.s IL_7a98
IL_7a50: ldloc.s V_8
IL_7a52: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7a57: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a5c: stloc.s V_7
IL_7a5e: ldloc.s V_8
IL_7a60: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a65: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7a6a: stloc.s V_9
IL_7a6c: ldloc.s V_9
IL_7a6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7a73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a78: stloc.s V_10
IL_7a7a: ldloc.s V_7
IL_7a7c: call string [mscorlib]System.Convert::ToString(int32)
IL_7a81: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7a86: stloc.s V_7
IL_7a88: ldloc.s V_8
IL_7a8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7a8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7a94: stloc.s V_9
IL_7a96: br.s IL_7ade
IL_7a98: ldloc.s V_8
IL_7a9a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a9f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7aa4: stloc.s V_7
IL_7aa6: ldloc.s V_6
IL_7aa8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7aad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7ab2: stloc.s V_6
IL_7ab4: ldloc.s V_8
IL_7ab6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7abb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7ac0: stloc.s V_9
IL_7ac2: ldloc.s V_9
IL_7ac4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ac9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7ace: stloc.s V_8
IL_7ad0: ldloc.s V_9
IL_7ad2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7ad7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7adc: stloc.s V_10
IL_7ade: ldloc.s V_10
IL_7ae0: ldloc.s V_6
IL_7ae2: bgt.s IL_7b2c
IL_7ae4: ldloc.s V_10
IL_7ae6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7aeb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7af0: stloc.s V_6
IL_7af2: ldloc.s V_9
IL_7af4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7af9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7afe: stloc.s V_7
IL_7b00: ldloc.s V_9
IL_7b02: call string [mscorlib]System.Convert::ToString(int32)
IL_7b07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7b0c: stloc.s V_8
IL_7b0e: ldloc.s V_8
IL_7b10: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7b15: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7b1a: stloc.s V_10
IL_7b1c: ldloc.s V_7
IL_7b1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7b23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7b28: stloc.s V_10
IL_7b2a: br.s IL_7b72
IL_7b2c: ldloc.s V_10
IL_7b2e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7b33: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7b38: stloc.s V_6
IL_7b3a: ldloc.s V_8
IL_7b3c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7b41: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7b46: stloc.s V_7
IL_7b48: ldloc.s V_8
IL_7b4a: call string [mscorlib]System.Convert::ToString(int32)
IL_7b4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7b54: stloc.s V_9
IL_7b56: ldloc.s V_8
IL_7b58: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7b5d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7b62: stloc.s V_6
IL_7b64: ldloc.s V_8
IL_7b66: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7b6b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7b70: stloc.s V_9
IL_7b72: ldloc.s V_9
IL_7b74: ldloc.s V_9
IL_7b76: beq.s IL_7bc0
IL_7b78: ldloc.s V_6
IL_7b7a: call string [mscorlib]System.Convert::ToString(int32)
IL_7b7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7b84: stloc.s V_7
IL_7b86: ldloc.s V_8
IL_7b88: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7b8d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7b92: stloc.s V_8
IL_7b94: ldloc.s V_8
IL_7b96: call string [mscorlib]System.Convert::ToString(int32)
IL_7b9b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ba0: stloc.s V_10
IL_7ba2: ldloc.s V_7
IL_7ba4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ba9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7bae: stloc.s V_8
IL_7bb0: ldloc.s V_8
IL_7bb2: call string [mscorlib]System.Convert::ToString(int32)
IL_7bb7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7bbc: stloc.s V_10
IL_7bbe: br.s IL_7c06
IL_7bc0: ldloc.s V_6
IL_7bc2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7bc7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7bcc: stloc.s V_8
IL_7bce: ldloc.s V_9
IL_7bd0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7bd5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7bda: stloc.s V_10
IL_7bdc: ldloc.s V_9
IL_7bde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7be3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7be8: stloc.s V_9
IL_7bea: ldloc.s V_9
IL_7bec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7bf1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7bf6: stloc.s V_7
IL_7bf8: ldloc.s V_9
IL_7bfa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7bff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7c04: stloc.s V_6
IL_7c06: ldloc.s V_6
IL_7c08: ldloc.s V_7
IL_7c0a: bge.s IL_7c54
IL_7c0c: ldloc.s V_9
IL_7c0e: call string [mscorlib]System.Convert::ToString(int32)
IL_7c13: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c18: stloc.s V_10
IL_7c1a: ldloc.s V_7
IL_7c1c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7c21: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7c26: stloc.s V_7
IL_7c28: ldloc.s V_8
IL_7c2a: call string [mscorlib]System.Convert::ToString(int32)
IL_7c2f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c34: stloc.s V_8
IL_7c36: ldloc.s V_10
IL_7c38: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c3d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c42: stloc.s V_6
IL_7c44: ldloc.s V_10
IL_7c46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c50: stloc.s V_7
IL_7c52: br.s IL_7c9a
IL_7c54: ldloc.s V_10
IL_7c56: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7c5b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7c60: stloc.s V_6
IL_7c62: ldloc.s V_7
IL_7c64: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c69: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c6e: stloc.s V_7
IL_7c70: ldloc.s V_6
IL_7c72: call string [mscorlib]System.Convert::ToString(int32)
IL_7c77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c7c: stloc.s V_6
IL_7c7e: ldloc.s V_9
IL_7c80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c8a: stloc.s V_8
IL_7c8c: ldloc.s V_10
IL_7c8e: call string [mscorlib]System.Convert::ToString(int32)
IL_7c93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c98: stloc.s V_9
IL_7c9a: ldloc.s V_7
IL_7c9c: ldloc.s V_9
IL_7c9e: bgt.s IL_7ce8
IL_7ca0: ldloc.s V_10
IL_7ca2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7ca7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7cac: stloc.s V_6
IL_7cae: ldloc.s V_8
IL_7cb0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7cb5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7cba: stloc.s V_10
IL_7cbc: ldloc.s V_9
IL_7cbe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7cc3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7cc8: stloc.s V_10
IL_7cca: ldloc.s V_7
IL_7ccc: call string [mscorlib]System.Convert::ToString(int32)
IL_7cd1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7cd6: stloc.s V_6
IL_7cd8: ldloc.s V_7
IL_7cda: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7cdf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7ce4: stloc.s V_9
IL_7ce6: br.s IL_7d2e
IL_7ce8: ldloc.s V_8
IL_7cea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7cef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7cf4: stloc.s V_10
IL_7cf6: ldloc.s V_10
IL_7cf8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7cfd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d02: stloc.s V_10
IL_7d04: ldloc.s V_6
IL_7d06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d10: stloc.s V_10
IL_7d12: ldloc.s V_7
IL_7d14: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d19: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d1e: stloc.s V_8
IL_7d20: ldloc.s V_9
IL_7d22: call string [mscorlib]System.Convert::ToString(int32)
IL_7d27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7d2c: stloc.s V_8
IL_7d2e: ldloc.s V_8
IL_7d30: ldloc.s V_9
IL_7d32: bgt.s IL_7d7c
IL_7d34: ldloc.s V_10
IL_7d36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7d3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7d40: stloc.s V_6
IL_7d42: ldloc.s V_6
IL_7d44: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7d49: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7d4e: stloc.s V_6
IL_7d50: ldloc.s V_9
IL_7d52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7d57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7d5c: stloc.s V_7
IL_7d5e: ldloc.s V_10
IL_7d60: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d65: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d6a: stloc.s V_9
IL_7d6c: ldloc.s V_6
IL_7d6e: call string [mscorlib]System.Convert::ToString(int32)
IL_7d73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7d78: stloc.s V_10
IL_7d7a: br.s IL_7dc2
IL_7d7c: ldloc.s V_9
IL_7d7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d88: stloc.s V_8
IL_7d8a: ldloc.s V_8
IL_7d8c: call string [mscorlib]System.Convert::ToString(int32)
IL_7d91: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7d96: stloc.s V_7
IL_7d98: ldloc.s V_8
IL_7d9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7d9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7da4: stloc.s V_10
IL_7da6: ldloc.s V_7
IL_7da8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7dad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7db2: stloc.s V_9
IL_7db4: ldloc.s V_9
IL_7db6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7dbb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7dc0: stloc.s V_7
IL_7dc2: ldloc.s V_8
IL_7dc4: ldloc.s V_7
IL_7dc6: beq.s IL_7e10
IL_7dc8: ldloc.s V_10
IL_7dca: call string [mscorlib]System.Convert::ToString(int32)
IL_7dcf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7dd4: stloc.s V_9
IL_7dd6: ldloc.s V_10
IL_7dd8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ddd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7de2: stloc.s V_7
IL_7de4: ldloc.s V_8
IL_7de6: call string [mscorlib]System.Convert::ToString(int32)
IL_7deb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7df0: stloc.s V_7
IL_7df2: ldloc.s V_10
IL_7df4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7df9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7dfe: stloc.s V_7
IL_7e00: ldloc.s V_7
IL_7e02: call string [mscorlib]System.Convert::ToString(int32)
IL_7e07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7e0c: stloc.s V_7
IL_7e0e: br.s IL_7e56
IL_7e10: ldloc.s V_9
IL_7e12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e1c: stloc.s V_7
IL_7e1e: ldloc.s V_9
IL_7e20: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e25: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7e2a: stloc.s V_6
IL_7e2c: ldloc.s V_6
IL_7e2e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e33: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7e38: stloc.s V_6
IL_7e3a: ldloc.s V_10
IL_7e3c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e41: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7e46: stloc.s V_8
IL_7e48: ldloc.s V_10
IL_7e4a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e4f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e54: stloc.s V_9
IL_7e56: ldloc.s V_9
IL_7e58: ldloc.s V_7
IL_7e5a: beq.s IL_7ea4
IL_7e5c: ldloc.s V_10
IL_7e5e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e63: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e68: stloc.s V_9
IL_7e6a: ldloc.s V_6
IL_7e6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e76: stloc.s V_6
IL_7e78: ldloc.s V_6
IL_7e7a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e7f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e84: stloc.s V_10
IL_7e86: ldloc.s V_9
IL_7e88: call string [mscorlib]System.Convert::ToString(int32)
IL_7e8d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7e92: stloc.s V_6
IL_7e94: ldloc.s V_9
IL_7e96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7ea0: stloc.s V_8
IL_7ea2: br.s IL_7eea
IL_7ea4: ldloc.s V_7
IL_7ea6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7eab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7eb0: stloc.s V_6
IL_7eb2: ldloc.s V_7
IL_7eb4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7eb9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7ebe: stloc.s V_6
IL_7ec0: ldloc.s V_7
IL_7ec2: call string [mscorlib]System.Convert::ToString(int32)
IL_7ec7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ecc: stloc.s V_8
IL_7ece: ldloc.s V_8
IL_7ed0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ed5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7eda: stloc.s V_10
IL_7edc: ldloc.s V_8
IL_7ede: call string [mscorlib]System.Convert::ToString(int32)
IL_7ee3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ee8: stloc.s V_6
IL_7eea: ldloc.s V_7
IL_7eec: ldloc.s V_9
IL_7eee: bgt.s IL_7f38
IL_7ef0: ldloc.s V_8
IL_7ef2: call string [mscorlib]System.Convert::ToString(int32)
IL_7ef7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7efc: stloc.s V_8
IL_7efe: ldloc.s V_6
IL_7f00: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f05: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f0a: stloc.s V_7
IL_7f0c: ldloc.s V_7
IL_7f0e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f13: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f18: stloc.s V_9
IL_7f1a: ldloc.s V_9
IL_7f1c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f21: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f26: stloc.s V_8
IL_7f28: ldloc.s V_6
IL_7f2a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f2f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f34: stloc.s V_7
IL_7f36: br.s IL_7f7e
IL_7f38: ldloc.s V_6
IL_7f3a: call string [mscorlib]System.Convert::ToString(int32)
IL_7f3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7f44: stloc.s V_6
IL_7f46: ldloc.s V_9
IL_7f48: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f4d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f52: stloc.s V_9
IL_7f54: ldloc.s V_8
IL_7f56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f60: stloc.s V_6
IL_7f62: ldloc.s V_6
IL_7f64: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7f69: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7f6e: stloc.s V_9
IL_7f70: ldloc.s V_7
IL_7f72: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f77: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f7c: stloc.s V_8
IL_7f7e: ldloc.s V_8
IL_7f80: ldloc.s V_7
IL_7f82: bne.un.s IL_7fcc
IL_7f84: ldloc.s V_9
IL_7f86: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f8b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f90: stloc.s V_6
IL_7f92: ldloc.s V_10
IL_7f94: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f99: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f9e: stloc.s V_7
IL_7fa0: ldloc.s V_9
IL_7fa2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7fa7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7fac: stloc.s V_7
IL_7fae: ldloc.s V_8
IL_7fb0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7fb5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7fba: stloc.s V_10
IL_7fbc: ldloc.s V_10
IL_7fbe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7fc3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7fc8: stloc.s V_9
IL_7fca: br.s IL_8012
IL_7fcc: ldloc.s V_6
IL_7fce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7fd3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7fd8: stloc.s V_8
IL_7fda: ldloc.s V_8
IL_7fdc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7fe1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7fe6: stloc.s V_7
IL_7fe8: ldloc.s V_8
IL_7fea: call string [mscorlib]System.Convert::ToString(int32)
IL_7fef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ff4: stloc.s V_10
IL_7ff6: ldloc.s V_9
IL_7ff8: call string [mscorlib]System.Convert::ToString(int32)
IL_7ffd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8002: stloc.s V_6
IL_8004: ldloc.s V_7
IL_8006: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_800b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8010: stloc.s V_10
IL_8012: ldloc.s V_9
IL_8014: ldloc.s V_8
IL_8016: beq.s IL_8060
IL_8018: ldloc.s V_6
IL_801a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_801f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8024: stloc.s V_8
IL_8026: ldloc.s V_8
IL_8028: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_802d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8032: stloc.s V_7
IL_8034: ldloc.s V_7
IL_8036: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_803b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8040: stloc.s V_7
IL_8042: ldloc.s V_6
IL_8044: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8049: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_804e: stloc.s V_6
IL_8050: ldloc.s V_10
IL_8052: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8057: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_805c: stloc.s V_6
IL_805e: br.s IL_80a6
IL_8060: ldloc.s V_10
IL_8062: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8067: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_806c: stloc.s V_6
IL_806e: ldloc.s V_9
IL_8070: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8075: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_807a: stloc.s V_6
IL_807c: ldloc.s V_8
IL_807e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8083: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8088: stloc.s V_9
IL_808a: ldloc.s V_7
IL_808c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8091: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8096: stloc.s V_6
IL_8098: ldloc.s V_7
IL_809a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_809f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_80a4: stloc.s V_6
IL_80a6: ldloc.s V_6
IL_80a8: ldloc.s V_7
IL_80aa: blt.s IL_80f4
IL_80ac: ldloc.s V_6
IL_80ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_80b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_80b8: stloc.s V_10
IL_80ba: ldloc.s V_7
IL_80bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_80c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_80c6: stloc.s V_10
IL_80c8: ldloc.s V_9
IL_80ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_80cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_80d4: stloc.s V_9
IL_80d6: ldloc.s V_8
IL_80d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_80dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_80e2: stloc.s V_7
IL_80e4: ldloc.s V_9
IL_80e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_80eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_80f0: stloc.s V_8
IL_80f2: br.s IL_813a
IL_80f4: ldloc.s V_10
IL_80f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_80fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8100: stloc.s V_10
IL_8102: ldloc.s V_7
IL_8104: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8109: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_810e: stloc.s V_8
IL_8110: ldloc.s V_6
IL_8112: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8117: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_811c: stloc.s V_10
IL_811e: ldloc.s V_8
IL_8120: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8125: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_812a: stloc.s V_9
IL_812c: ldloc.s V_10
IL_812e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8133: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8138: stloc.s V_6
IL_813a: ldloc.s V_9
IL_813c: ldloc.s V_6
IL_813e: beq.s IL_8188
IL_8140: ldloc.s V_10
IL_8142: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8147: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_814c: stloc.s V_10
IL_814e: ldloc.s V_10
IL_8150: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8155: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_815a: stloc.s V_9
IL_815c: ldloc.s V_8
IL_815e: call string [mscorlib]System.Convert::ToString(int32)
IL_8163: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8168: stloc.s V_9
IL_816a: ldloc.s V_7
IL_816c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8171: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8176: stloc.s V_10
IL_8178: ldloc.s V_7
IL_817a: call string [mscorlib]System.Convert::ToString(int32)
IL_817f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8184: stloc.s V_10
IL_8186: br.s IL_81ce
IL_8188: ldloc.s V_9
IL_818a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_818f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8194: stloc.s V_9
IL_8196: ldloc.s V_6
IL_8198: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_819d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_81a2: stloc.s V_8
IL_81a4: ldloc.s V_7
IL_81a6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_81ab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_81b0: stloc.s V_10
IL_81b2: ldloc.s V_6
IL_81b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_81b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_81be: stloc.s V_10
IL_81c0: ldloc.s V_10
IL_81c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_81c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_81cc: stloc.s V_9
IL_81ce: ldloc.s V_7
IL_81d0: ldloc.s V_6
IL_81d2: bne.un.s IL_821c
IL_81d4: ldloc.s V_10
IL_81d6: call string [mscorlib]System.Convert::ToString(int32)
IL_81db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_81e0: stloc.s V_7
IL_81e2: ldloc.s V_9
IL_81e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_81e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_81ee: stloc.s V_10
IL_81f0: ldloc.s V_7
IL_81f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_81f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_81fc: stloc.s V_10
IL_81fe: ldloc.s V_8
IL_8200: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8205: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_820a: stloc.s V_10
IL_820c: ldloc.s V_8
IL_820e: call string [mscorlib]System.Convert::ToString(int32)
IL_8213: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8218: stloc.s V_10
IL_821a: br.s IL_8262
IL_821c: ldloc.s V_10
IL_821e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8223: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8228: stloc.s V_7
IL_822a: ldloc.s V_10
IL_822c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8231: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8236: stloc.s V_6
IL_8238: ldloc.s V_10
IL_823a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_823f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8244: stloc.s V_10
IL_8246: ldloc.s V_10
IL_8248: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_824d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8252: stloc.s V_8
IL_8254: ldloc.s V_6
IL_8256: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_825b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8260: stloc.s V_10
IL_8262: ldloc.s V_6
IL_8264: ldloc.s V_6
IL_8266: bgt.s IL_82b0
IL_8268: ldloc.s V_10
IL_826a: call string [mscorlib]System.Convert::ToString(int32)
IL_826f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8274: stloc.s V_7
IL_8276: ldloc.s V_6
IL_8278: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_827d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8282: stloc.s V_7
IL_8284: ldloc.s V_6
IL_8286: call string [mscorlib]System.Convert::ToString(int32)
IL_828b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8290: stloc.s V_6
IL_8292: ldloc.s V_6
IL_8294: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8299: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_829e: stloc.s V_10
IL_82a0: ldloc.s V_9
IL_82a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_82a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_82ac: stloc.s V_9
IL_82ae: br.s IL_82f6
IL_82b0: ldloc.s V_10
IL_82b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_82b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_82bc: stloc.s V_8
IL_82be: ldloc.s V_9
IL_82c0: call string [mscorlib]System.Convert::ToString(int32)
IL_82c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_82ca: stloc.s V_6
IL_82cc: ldloc.s V_9
IL_82ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_82d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_82d8: stloc.s V_6
IL_82da: ldloc.s V_7
IL_82dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_82e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_82e6: stloc.s V_10
IL_82e8: ldloc.s V_10
IL_82ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_82ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_82f4: stloc.s V_9
IL_82f6: ldloc.s V_7
IL_82f8: ldloc.s V_9
IL_82fa: bge.s IL_8344
IL_82fc: ldloc.s V_10
IL_82fe: call string [mscorlib]System.Convert::ToString(int32)
IL_8303: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8308: stloc.s V_7
IL_830a: ldloc.s V_8
IL_830c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8311: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8316: stloc.s V_8
IL_8318: ldloc.s V_10
IL_831a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_831f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8324: stloc.s V_9
IL_8326: ldloc.s V_10
IL_8328: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_832d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8332: stloc.s V_10
IL_8334: ldloc.s V_9
IL_8336: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_833b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8340: stloc.s V_10
IL_8342: br.s IL_838a
IL_8344: ldloc.s V_8
IL_8346: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_834b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8350: stloc.s V_6
IL_8352: ldloc.s V_8
IL_8354: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8359: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_835e: stloc.s V_6
IL_8360: ldloc.s V_7
IL_8362: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8367: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_836c: stloc.s V_7
IL_836e: ldloc.s V_8
IL_8370: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8375: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_837a: stloc.s V_6
IL_837c: ldloc.s V_9
IL_837e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8383: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8388: stloc.s V_10
IL_838a: ldloc.s V_9
IL_838c: ldloc.s V_8
IL_838e: ble.s IL_83d8
IL_8390: ldloc.s V_9
IL_8392: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8397: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_839c: stloc.s V_8
IL_839e: ldloc.s V_8
IL_83a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_83aa: stloc.s V_9
IL_83ac: ldloc.s V_9
IL_83ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_83b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_83b8: stloc.s V_8
IL_83ba: ldloc.s V_8
IL_83bc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_83c1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_83c6: stloc.s V_10
IL_83c8: ldloc.s V_8
IL_83ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_83d4: stloc.s V_10
IL_83d6: br.s IL_841e
IL_83d8: ldloc.s V_8
IL_83da: call string [mscorlib]System.Convert::ToString(int32)
IL_83df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_83e4: stloc.s V_8
IL_83e6: ldloc.s V_10
IL_83e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_83f2: stloc.s V_8
IL_83f4: ldloc.s V_7
IL_83f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8400: stloc.s V_7
IL_8402: ldloc.s V_9
IL_8404: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8409: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_840e: stloc.s V_9
IL_8410: ldloc.s V_9
IL_8412: call string [mscorlib]System.Convert::ToString(int32)
IL_8417: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_841c: stloc.s V_6
IL_841e: ldloc.s V_10
IL_8420: ldloc.s V_8
IL_8422: bge.s IL_846c
IL_8424: ldloc.s V_8
IL_8426: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_842b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8430: stloc.s V_7
IL_8432: ldloc.s V_8
IL_8434: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8439: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_843e: stloc.s V_6
IL_8440: ldloc.s V_6
IL_8442: call string [mscorlib]System.Convert::ToString(int32)
IL_8447: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_844c: stloc.s V_10
IL_844e: ldloc.s V_10
IL_8450: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8455: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_845a: stloc.s V_10
IL_845c: ldloc.s V_6
IL_845e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8463: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8468: stloc.s V_9
IL_846a: br.s IL_84b2
IL_846c: ldloc.s V_8
IL_846e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8473: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8478: stloc.s V_6
IL_847a: ldloc.s V_7
IL_847c: call string [mscorlib]System.Convert::ToString(int32)
IL_8481: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8486: stloc.s V_6
IL_8488: ldloc.s V_7
IL_848a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_848f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8494: stloc.s V_9
IL_8496: ldloc.s V_9
IL_8498: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_849d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_84a2: stloc.s V_7
IL_84a4: ldloc.s V_9
IL_84a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84b0: stloc.s V_10
IL_84b2: ldloc.s V_8
IL_84b4: ldloc.s V_8
IL_84b6: beq.s IL_8500
IL_84b8: ldloc.s V_10
IL_84ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84c4: stloc.s V_6
IL_84c6: ldloc.s V_8
IL_84c8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84cd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84d2: stloc.s V_6
IL_84d4: ldloc.s V_8
IL_84d6: call string [mscorlib]System.Convert::ToString(int32)
IL_84db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_84e0: stloc.s V_6
IL_84e2: ldloc.s V_9
IL_84e4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84e9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84ee: stloc.s V_10
IL_84f0: ldloc.s V_10
IL_84f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_84f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_84fc: stloc.s V_8
IL_84fe: br.s IL_8546
IL_8500: ldloc.s V_7
IL_8502: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8507: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_850c: stloc.s V_8
IL_850e: ldloc.s V_7
IL_8510: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8515: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_851a: stloc.s V_7
IL_851c: ldloc.s V_6
IL_851e: call string [mscorlib]System.Convert::ToString(int32)
IL_8523: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8528: stloc.s V_6
IL_852a: ldloc.s V_7
IL_852c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8531: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8536: stloc.s V_6
IL_8538: ldloc.s V_7
IL_853a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_853f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8544: stloc.s V_9
IL_8546: ldloc.s V_6
IL_8548: ldloc.s V_10
IL_854a: bge.s IL_8594
IL_854c: ldloc.s V_10
IL_854e: call string [mscorlib]System.Convert::ToString(int32)
IL_8553: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8558: stloc.s V_7
IL_855a: ldloc.s V_6
IL_855c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8561: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8566: stloc.s V_7
IL_8568: ldloc.s V_10
IL_856a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_856f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8574: stloc.s V_6
IL_8576: ldloc.s V_10
IL_8578: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_857d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8582: stloc.s V_9
IL_8584: ldloc.s V_6
IL_8586: call string [mscorlib]System.Convert::ToString(int32)
IL_858b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8590: stloc.s V_9
IL_8592: br.s IL_85da
IL_8594: ldloc.s V_7
IL_8596: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_859b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_85a0: stloc.s V_9
IL_85a2: ldloc.s V_7
IL_85a4: call string [mscorlib]System.Convert::ToString(int32)
IL_85a9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_85ae: stloc.s V_8
IL_85b0: ldloc.s V_9
IL_85b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_85b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_85bc: stloc.s V_6
IL_85be: ldloc.s V_8
IL_85c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_85c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_85ca: stloc.s V_9
IL_85cc: ldloc.s V_8
IL_85ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_85d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_85d8: stloc.s V_6
IL_85da: ldloc.s V_9
IL_85dc: ldloc.s V_7
IL_85de: bge.s IL_8628
IL_85e0: ldloc.s V_7
IL_85e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_85e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_85ec: stloc.s V_9
IL_85ee: ldloc.s V_6
IL_85f0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_85f5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_85fa: stloc.s V_6
IL_85fc: ldloc.s V_6
IL_85fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8603: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8608: stloc.s V_6
IL_860a: ldloc.s V_10
IL_860c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8611: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8616: stloc.s V_7
IL_8618: ldloc.s V_6
IL_861a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_861f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8624: stloc.s V_7
IL_8626: br.s IL_866e
IL_8628: ldloc.s V_9
IL_862a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_862f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8634: stloc.s V_6
IL_8636: ldloc.s V_8
IL_8638: call string [mscorlib]System.Convert::ToString(int32)
IL_863d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8642: stloc.s V_10
IL_8644: ldloc.s V_9
IL_8646: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_864b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8650: stloc.s V_8
IL_8652: ldloc.s V_10
IL_8654: call string [mscorlib]System.Convert::ToString(int32)
IL_8659: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_865e: stloc.s V_6
IL_8660: ldloc.s V_9
IL_8662: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8667: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_866c: stloc.s V_8
IL_866e: ldloc.s V_8
IL_8670: ldloc.s V_6
IL_8672: blt.s IL_86bc
IL_8674: ldloc.s V_8
IL_8676: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_867b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8680: stloc.s V_8
IL_8682: ldloc.s V_7
IL_8684: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8689: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_868e: stloc.s V_10
IL_8690: ldloc.s V_8
IL_8692: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8697: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_869c: stloc.s V_7
IL_869e: ldloc.s V_9
IL_86a0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_86a5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_86aa: stloc.s V_7
IL_86ac: ldloc.s V_8
IL_86ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_86b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_86b8: stloc.s V_10
IL_86ba: br.s IL_8702
IL_86bc: ldloc.s V_8
IL_86be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_86c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_86c8: stloc.s V_7
IL_86ca: ldloc.s V_10
IL_86cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_86d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_86d6: stloc.s V_10
IL_86d8: ldloc.s V_10
IL_86da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_86df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_86e4: stloc.s V_10
IL_86e6: ldloc.s V_8
IL_86e8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_86ed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_86f2: stloc.s V_8
IL_86f4: ldloc.s V_6
IL_86f6: call string [mscorlib]System.Convert::ToString(int32)
IL_86fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8700: stloc.s V_6
IL_8702: ldloc.s V_10
IL_8704: ldloc.s V_9
IL_8706: bge.s IL_8750
IL_8708: ldloc.s V_8
IL_870a: call string [mscorlib]System.Convert::ToString(int32)
IL_870f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8714: stloc.s V_9
IL_8716: ldloc.s V_6
IL_8718: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_871d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8722: stloc.s V_9
IL_8724: ldloc.s V_7
IL_8726: call string [mscorlib]System.Convert::ToString(int32)
IL_872b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8730: stloc.s V_7
IL_8732: ldloc.s V_7
IL_8734: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8739: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_873e: stloc.s V_10
IL_8740: ldloc.s V_7
IL_8742: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8747: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_874c: stloc.s V_10
IL_874e: br.s IL_8796
IL_8750: ldloc.s V_10
IL_8752: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8757: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_875c: stloc.s V_7
IL_875e: ldloc.s V_6
IL_8760: call string [mscorlib]System.Convert::ToString(int32)
IL_8765: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_876a: stloc.s V_7
IL_876c: ldloc.s V_9
IL_876e: call string [mscorlib]System.Convert::ToString(int32)
IL_8773: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8778: stloc.s V_7
IL_877a: ldloc.s V_10
IL_877c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8781: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8786: stloc.s V_9
IL_8788: ldloc.s V_10
IL_878a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_878f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8794: stloc.s V_10
IL_8796: ldloc.s V_10
IL_8798: ldloc.s V_6
IL_879a: blt.s IL_87e4
IL_879c: ldloc.s V_9
IL_879e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_87a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_87a8: stloc.s V_10
IL_87aa: ldloc.s V_9
IL_87ac: call string [mscorlib]System.Convert::ToString(int32)
IL_87b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_87b6: stloc.s V_6
IL_87b8: ldloc.s V_10
IL_87ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_87bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_87c4: stloc.s V_7
IL_87c6: ldloc.s V_10
IL_87c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_87cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_87d2: stloc.s V_8
IL_87d4: ldloc.s V_8
IL_87d6: call string [mscorlib]System.Convert::ToString(int32)
IL_87db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_87e0: stloc.s V_9
IL_87e2: br.s IL_882a
IL_87e4: ldloc.s V_7
IL_87e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_87eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_87f0: stloc.s V_6
IL_87f2: ldloc.s V_6
IL_87f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_87f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_87fe: stloc.s V_6
IL_8800: ldloc.s V_6
IL_8802: call string [mscorlib]System.Convert::ToString(int32)
IL_8807: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_880c: stloc.s V_9
IL_880e: ldloc.s V_10
IL_8810: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8815: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_881a: stloc.s V_9
IL_881c: ldloc.s V_7
IL_881e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8823: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8828: stloc.s V_7
IL_882a: ldloc.s V_7
IL_882c: ldloc.s V_7
IL_882e: bgt.s IL_8878
IL_8830: ldloc.s V_7
IL_8832: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8837: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_883c: stloc.s V_7
IL_883e: ldloc.s V_8
IL_8840: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8845: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_884a: stloc.s V_8
IL_884c: ldloc.s V_6
IL_884e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8853: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8858: stloc.s V_7
IL_885a: ldloc.s V_8
IL_885c: call string [mscorlib]System.Convert::ToString(int32)
IL_8861: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8866: stloc.s V_6
IL_8868: ldloc.s V_10
IL_886a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_886f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8874: stloc.s V_10
IL_8876: br.s IL_88be
IL_8878: ldloc.s V_8
IL_887a: call string [mscorlib]System.Convert::ToString(int32)
IL_887f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8884: stloc.s V_7
IL_8886: ldloc.s V_10
IL_8888: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_888d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8892: stloc.s V_8
IL_8894: ldloc.s V_8
IL_8896: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_889b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_88a0: stloc.s V_10
IL_88a2: ldloc.s V_9
IL_88a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_88a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_88ae: stloc.s V_8
IL_88b0: ldloc.s V_10
IL_88b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_88b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_88bc: stloc.s V_9
IL_88be: ldloc.s V_6
IL_88c0: ldloc.s V_9
IL_88c2: bgt.s IL_890c
IL_88c4: ldloc.s V_8
IL_88c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_88cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_88d0: stloc.s V_9
IL_88d2: ldloc.s V_8
IL_88d4: call string [mscorlib]System.Convert::ToString(int32)
IL_88d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_88de: stloc.s V_7
IL_88e0: ldloc.s V_10
IL_88e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_88e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_88ec: stloc.s V_10
IL_88ee: ldloc.s V_10
IL_88f0: call string [mscorlib]System.Convert::ToString(int32)
IL_88f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_88fa: stloc.s V_10
IL_88fc: ldloc.s V_6
IL_88fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8903: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8908: stloc.s V_8
IL_890a: br.s IL_8952
IL_890c: ldloc.s V_10
IL_890e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8913: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8918: stloc.s V_6
IL_891a: ldloc.s V_6
IL_891c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8921: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8926: stloc.s V_10
IL_8928: ldloc.s V_10
IL_892a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_892f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8934: stloc.s V_7
IL_8936: ldloc.s V_10
IL_8938: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_893d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8942: stloc.s V_9
IL_8944: ldloc.s V_6
IL_8946: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_894b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8950: stloc.s V_10
IL_8952: ldloc.s V_9
IL_8954: ldloc.s V_9
IL_8956: bge.s IL_89a0
IL_8958: ldloc.s V_9
IL_895a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_895f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8964: stloc.s V_10
IL_8966: ldloc.s V_6
IL_8968: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_896d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8972: stloc.s V_7
IL_8974: ldloc.s V_7
IL_8976: call string [mscorlib]System.Convert::ToString(int32)
IL_897b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8980: stloc.s V_10
IL_8982: ldloc.s V_9
IL_8984: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8989: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_898e: stloc.s V_6
IL_8990: ldloc.s V_8
IL_8992: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8997: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_899c: stloc.s V_9
IL_899e: br.s IL_89e6
IL_89a0: ldloc.s V_6
IL_89a2: call string [mscorlib]System.Convert::ToString(int32)
IL_89a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89ac: stloc.s V_9
IL_89ae: ldloc.s V_6
IL_89b0: call string [mscorlib]System.Convert::ToString(int32)
IL_89b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89ba: stloc.s V_6
IL_89bc: ldloc.s V_10
IL_89be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_89c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_89c8: stloc.s V_8
IL_89ca: ldloc.s V_9
IL_89cc: call string [mscorlib]System.Convert::ToString(int32)
IL_89d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89d6: stloc.s V_9
IL_89d8: ldloc.s V_8
IL_89da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_89df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_89e4: stloc.s V_8
IL_89e6: ldloc.s V_10
IL_89e8: ldloc.s V_10
IL_89ea: beq.s IL_8a34
IL_89ec: ldloc.s V_9
IL_89ee: call string [mscorlib]System.Convert::ToString(int32)
IL_89f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89f8: stloc.s V_6
IL_89fa: ldloc.s V_9
IL_89fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a01: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a06: stloc.s V_8
IL_8a08: ldloc.s V_7
IL_8a0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a14: stloc.s V_9
IL_8a16: ldloc.s V_8
IL_8a18: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8a1d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8a22: stloc.s V_10
IL_8a24: ldloc.s V_10
IL_8a26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a30: stloc.s V_7
IL_8a32: br.s IL_8a7a
IL_8a34: ldloc.s V_10
IL_8a36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8a3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8a40: stloc.s V_8
IL_8a42: ldloc.s V_10
IL_8a44: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a49: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a4e: stloc.s V_10
IL_8a50: ldloc.s V_10
IL_8a52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8a57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8a5c: stloc.s V_9
IL_8a5e: ldloc.s V_8
IL_8a60: call string [mscorlib]System.Convert::ToString(int32)
IL_8a65: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8a6a: stloc.s V_9
IL_8a6c: ldloc.s V_9
IL_8a6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8a73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8a78: stloc.s V_7
IL_8a7a: ldloc.s V_7
IL_8a7c: ldloc.s V_6
IL_8a7e: bne.un.s IL_8ac8
IL_8a80: ldloc.s V_7
IL_8a82: call string [mscorlib]System.Convert::ToString(int32)
IL_8a87: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8a8c: stloc.s V_9
IL_8a8e: ldloc.s V_10
IL_8a90: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8a95: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8a9a: stloc.s V_9
IL_8a9c: ldloc.s V_9
IL_8a9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8aa3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8aa8: stloc.s V_8
IL_8aaa: ldloc.s V_6
IL_8aac: call string [mscorlib]System.Convert::ToString(int32)
IL_8ab1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8ab6: stloc.s V_9
IL_8ab8: ldloc.s V_9
IL_8aba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8abf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8ac4: stloc.s V_8
IL_8ac6: br.s IL_8b0e
IL_8ac8: ldloc.s V_10
IL_8aca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8acf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8ad4: stloc.s V_9
IL_8ad6: ldloc.s V_10
IL_8ad8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8add: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8ae2: stloc.s V_8
IL_8ae4: ldloc.s V_8
IL_8ae6: call string [mscorlib]System.Convert::ToString(int32)
IL_8aeb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8af0: stloc.s V_10
IL_8af2: ldloc.s V_6
IL_8af4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8af9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8afe: stloc.s V_10
IL_8b00: ldloc.s V_8
IL_8b02: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8b07: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8b0c: stloc.s V_7
IL_8b0e: ldloc.s V_6
IL_8b10: ldloc.s V_6
IL_8b12: bne.un.s IL_8b5c
IL_8b14: ldloc.s V_7
IL_8b16: call string [mscorlib]System.Convert::ToString(int32)
IL_8b1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b20: stloc.s V_8
IL_8b22: ldloc.s V_10
IL_8b24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8b29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8b2e: stloc.s V_9
IL_8b30: ldloc.s V_8
IL_8b32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8b37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8b3c: stloc.s V_6
IL_8b3e: ldloc.s V_8
IL_8b40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8b45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8b4a: stloc.s V_7
IL_8b4c: ldloc.s V_7
IL_8b4e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8b53: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8b58: stloc.s V_9
IL_8b5a: br.s IL_8ba2
IL_8b5c: ldloc.s V_8
IL_8b5e: call string [mscorlib]System.Convert::ToString(int32)
IL_8b63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b68: stloc.s V_9
IL_8b6a: ldloc.s V_7
IL_8b6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8b71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8b76: stloc.s V_10
IL_8b78: ldloc.s V_6
IL_8b7a: call string [mscorlib]System.Convert::ToString(int32)
IL_8b7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b84: stloc.s V_7
IL_8b86: ldloc.s V_8
IL_8b88: call string [mscorlib]System.Convert::ToString(int32)
IL_8b8d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b92: stloc.s V_9
IL_8b94: ldloc.s V_6
IL_8b96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8b9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8ba0: stloc.s V_10
IL_8ba2: ldloc.s V_10
IL_8ba4: ldloc.s V_9
IL_8ba6: bge.s IL_8bf0
IL_8ba8: ldloc.s V_10
IL_8baa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8baf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8bb4: stloc.s V_6
IL_8bb6: ldloc.s V_6
IL_8bb8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8bbd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8bc2: stloc.s V_8
IL_8bc4: ldloc.s V_8
IL_8bc6: call string [mscorlib]System.Convert::ToString(int32)
IL_8bcb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8bd0: stloc.s V_10
IL_8bd2: ldloc.s V_8
IL_8bd4: call string [mscorlib]System.Convert::ToString(int32)
IL_8bd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8bde: stloc.s V_7
IL_8be0: ldloc.s V_9
IL_8be2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8be7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8bec: stloc.s V_10
IL_8bee: br.s IL_8c36
IL_8bf0: ldloc.s V_9
IL_8bf2: call string [mscorlib]System.Convert::ToString(int32)
IL_8bf7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8bfc: stloc.s V_9
IL_8bfe: ldloc.s V_10
IL_8c00: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c05: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c0a: stloc.s V_10
IL_8c0c: ldloc.s V_10
IL_8c0e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8c13: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8c18: stloc.s V_9
IL_8c1a: ldloc.s V_6
IL_8c1c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c21: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c26: stloc.s V_7
IL_8c28: ldloc.s V_8
IL_8c2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8c2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8c34: stloc.s V_8
IL_8c36: ldloc.s V_10
IL_8c38: ldloc.s V_6
IL_8c3a: blt.s IL_8c84
IL_8c3c: ldloc.s V_10
IL_8c3e: call string [mscorlib]System.Convert::ToString(int32)
IL_8c43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8c48: stloc.s V_10
IL_8c4a: ldloc.s V_8
IL_8c4c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8c51: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8c56: stloc.s V_8
IL_8c58: ldloc.s V_9
IL_8c5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c64: stloc.s V_8
IL_8c66: ldloc.s V_10
IL_8c68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c72: stloc.s V_9
IL_8c74: ldloc.s V_8
IL_8c76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c80: stloc.s V_8
IL_8c82: br.s IL_8cca
IL_8c84: ldloc.s V_7
IL_8c86: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8c8b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8c90: stloc.s V_9
IL_8c92: ldloc.s V_6
IL_8c94: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8c99: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8c9e: stloc.s V_7
IL_8ca0: ldloc.s V_10
IL_8ca2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8ca7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cac: stloc.s V_9
IL_8cae: ldloc.s V_7
IL_8cb0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8cb5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8cba: stloc.s V_6
IL_8cbc: ldloc.s V_7
IL_8cbe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8cc3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cc8: stloc.s V_10
IL_8cca: ldloc.s V_10
IL_8ccc: ldloc.s V_9
IL_8cce: ble.s IL_8d18
IL_8cd0: ldloc.s V_8
IL_8cd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8cd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8cdc: stloc.s V_8
IL_8cde: ldloc.s V_7
IL_8ce0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8ce5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cea: stloc.s V_9
IL_8cec: ldloc.s V_10
IL_8cee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8cf3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cf8: stloc.s V_7
IL_8cfa: ldloc.s V_7
IL_8cfc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d06: stloc.s V_7
IL_8d08: ldloc.s V_6
IL_8d0a: call string [mscorlib]System.Convert::ToString(int32)
IL_8d0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d14: stloc.s V_10
IL_8d16: br.s IL_8d5e
IL_8d18: ldloc.s V_6
IL_8d1a: call string [mscorlib]System.Convert::ToString(int32)
IL_8d1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d24: stloc.s V_9
IL_8d26: ldloc.s V_8
IL_8d28: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d2d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d32: stloc.s V_6
IL_8d34: ldloc.s V_8
IL_8d36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d40: stloc.s V_6
IL_8d42: ldloc.s V_6
IL_8d44: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8d49: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8d4e: stloc.s V_6
IL_8d50: ldloc.s V_8
IL_8d52: call string [mscorlib]System.Convert::ToString(int32)
IL_8d57: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d5c: stloc.s V_7
IL_8d5e: ldloc.s V_8
IL_8d60: ldloc.s V_6
IL_8d62: blt.s IL_8dac
IL_8d64: ldloc.s V_9
IL_8d66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d70: stloc.s V_6
IL_8d72: ldloc.s V_9
IL_8d74: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d79: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d7e: stloc.s V_6
IL_8d80: ldloc.s V_6
IL_8d82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d8c: stloc.s V_6
IL_8d8e: ldloc.s V_6
IL_8d90: call string [mscorlib]System.Convert::ToString(int32)
IL_8d95: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d9a: stloc.s V_6
IL_8d9c: ldloc.s V_8
IL_8d9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8da3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8da8: stloc.s V_9
IL_8daa: br.s IL_8df2
IL_8dac: ldloc.s V_9
IL_8dae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8db3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8db8: stloc.s V_7
IL_8dba: ldloc.s V_9
IL_8dbc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8dc1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8dc6: stloc.s V_6
IL_8dc8: ldloc.s V_6
IL_8dca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8dcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8dd4: stloc.s V_7
IL_8dd6: ldloc.s V_10
IL_8dd8: call string [mscorlib]System.Convert::ToString(int32)
IL_8ddd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8de2: stloc.s V_6
IL_8de4: ldloc.s V_9
IL_8de6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8deb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8df0: stloc.s V_6
IL_8df2: ldloc.s V_10
IL_8df4: ldloc.s V_8
IL_8df6: bgt.s IL_8e40
IL_8df8: ldloc.s V_9
IL_8dfa: call string [mscorlib]System.Convert::ToString(int32)
IL_8dff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8e04: stloc.s V_6
IL_8e06: ldloc.s V_9
IL_8e08: call string [mscorlib]System.Convert::ToString(int32)
IL_8e0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8e12: stloc.s V_7
IL_8e14: ldloc.s V_10
IL_8e16: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e1b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e20: stloc.s V_7
IL_8e22: ldloc.s V_8
IL_8e24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e2e: stloc.s V_7
IL_8e30: ldloc.s V_7
IL_8e32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8e37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8e3c: stloc.s V_7
IL_8e3e: br.s IL_8e86
IL_8e40: ldloc.s V_7
IL_8e42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e4c: stloc.s V_9
IL_8e4e: ldloc.s V_7
IL_8e50: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8e55: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8e5a: stloc.s V_9
IL_8e5c: ldloc.s V_9
IL_8e5e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e63: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e68: stloc.s V_7
IL_8e6a: ldloc.s V_7
IL_8e6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8e71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8e76: stloc.s V_8
IL_8e78: ldloc.s V_6
IL_8e7a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e7f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e84: stloc.s V_10
IL_8e86: ldloc.s V_8
IL_8e88: ldloc.s V_9
IL_8e8a: blt.s IL_8ed4
IL_8e8c: ldloc.s V_8
IL_8e8e: call string [mscorlib]System.Convert::ToString(int32)
IL_8e93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8e98: stloc.s V_8
IL_8e9a: ldloc.s V_9
IL_8e9c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ea1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8ea6: stloc.s V_9
IL_8ea8: ldloc.s V_6
IL_8eaa: call string [mscorlib]System.Convert::ToString(int32)
IL_8eaf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8eb4: stloc.s V_6
IL_8eb6: ldloc.s V_8
IL_8eb8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ebd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8ec2: stloc.s V_9
IL_8ec4: ldloc.s V_7
IL_8ec6: call string [mscorlib]System.Convert::ToString(int32)
IL_8ecb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8ed0: stloc.s V_8
IL_8ed2: br.s IL_8f1a
IL_8ed4: ldloc.s V_6
IL_8ed6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8edb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8ee0: stloc.s V_9
IL_8ee2: ldloc.s V_9
IL_8ee4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ee9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8eee: stloc.s V_7
IL_8ef0: ldloc.s V_10
IL_8ef2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ef7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8efc: stloc.s V_7
IL_8efe: ldloc.s V_8
IL_8f00: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8f05: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8f0a: stloc.s V_10
IL_8f0c: ldloc.s V_6
IL_8f0e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8f13: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8f18: stloc.s V_7
IL_8f1a: ldloc.s V_10
IL_8f1c: ldloc.s V_8
IL_8f1e: bne.un.s IL_8f68
IL_8f20: ldloc.s V_10
IL_8f22: call string [mscorlib]System.Convert::ToString(int32)
IL_8f27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8f2c: stloc.s V_10
IL_8f2e: ldloc.s V_6
IL_8f30: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8f35: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8f3a: stloc.s V_9
IL_8f3c: ldloc.s V_8
IL_8f3e: call string [mscorlib]System.Convert::ToString(int32)
IL_8f43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8f48: stloc.s V_9
IL_8f4a: ldloc.s V_10
IL_8f4c: call string [mscorlib]System.Convert::ToString(int32)
IL_8f51: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8f56: stloc.s V_6
IL_8f58: ldloc.s V_7
IL_8f5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8f5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8f64: stloc.s V_7
IL_8f66: br.s IL_8fae
IL_8f68: ldloc.s V_7
IL_8f6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8f6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8f74: stloc.s V_6
IL_8f76: ldloc.s V_9
IL_8f78: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8f7d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8f82: stloc.s V_6
IL_8f84: ldloc.s V_9
IL_8f86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8f8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8f90: stloc.s V_10
IL_8f92: ldloc.s V_6
IL_8f94: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8f99: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8f9e: stloc.s V_9
IL_8fa0: ldloc.s V_7
IL_8fa2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8fa7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8fac: stloc.s V_7
IL_8fae: ldloc.s V_10
IL_8fb0: ldloc.s V_10
IL_8fb2: ble.s IL_8ffc
IL_8fb4: ldloc.s V_6
IL_8fb6: call string [mscorlib]System.Convert::ToString(int32)
IL_8fbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8fc0: stloc.s V_10
IL_8fc2: ldloc.s V_8
IL_8fc4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8fc9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8fce: stloc.s V_8
IL_8fd0: ldloc.s V_7
IL_8fd2: call string [mscorlib]System.Convert::ToString(int32)
IL_8fd7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8fdc: stloc.s V_6
IL_8fde: ldloc.s V_7
IL_8fe0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8fe5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8fea: stloc.s V_6
IL_8fec: ldloc.s V_9
IL_8fee: call string [mscorlib]System.Convert::ToString(int32)
IL_8ff3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8ff8: stloc.s V_10
IL_8ffa: br.s IL_9042
IL_8ffc: ldloc.s V_7
IL_8ffe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9003: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9008: stloc.s V_6
IL_900a: ldloc.s V_10
IL_900c: call string [mscorlib]System.Convert::ToString(int32)
IL_9011: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9016: stloc.s V_9
IL_9018: ldloc.s V_7
IL_901a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_901f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9024: stloc.s V_9
IL_9026: ldloc.s V_6
IL_9028: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_902d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9032: stloc.s V_7
IL_9034: ldloc.s V_10
IL_9036: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_903b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9040: stloc.s V_10
IL_9042: ldloc.s V_6
IL_9044: ldloc.s V_8
IL_9046: bge.s IL_9090
IL_9048: ldloc.s V_8
IL_904a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_904f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9054: stloc.s V_10
IL_9056: ldloc.s V_7
IL_9058: call string [mscorlib]System.Convert::ToString(int32)
IL_905d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9062: stloc.s V_7
IL_9064: ldloc.s V_7
IL_9066: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_906b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9070: stloc.s V_10
IL_9072: ldloc.s V_7
IL_9074: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9079: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_907e: stloc.s V_8
IL_9080: ldloc.s V_6
IL_9082: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9087: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_908c: stloc.s V_7
IL_908e: br.s IL_90d6
IL_9090: ldloc.s V_8
IL_9092: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9097: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_909c: stloc.s V_8
IL_909e: ldloc.s V_7
IL_90a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_90a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_90aa: stloc.s V_6
IL_90ac: ldloc.s V_9
IL_90ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_90b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_90b8: stloc.s V_6
IL_90ba: ldloc.s V_10
IL_90bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_90c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_90c6: stloc.s V_9
IL_90c8: ldloc.s V_7
IL_90ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_90cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_90d4: stloc.s V_8
IL_90d6: ldloc.s V_10
IL_90d8: ldloc.s V_10
IL_90da: blt.s IL_9124
IL_90dc: ldloc.s V_8
IL_90de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_90e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_90e8: stloc.s V_9
IL_90ea: ldloc.s V_9
IL_90ec: call string [mscorlib]System.Convert::ToString(int32)
IL_90f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_90f6: stloc.s V_6
IL_90f8: ldloc.s V_9
IL_90fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_90ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9104: stloc.s V_10
IL_9106: ldloc.s V_6
IL_9108: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_910d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9112: stloc.s V_8
IL_9114: ldloc.s V_7
IL_9116: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_911b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9120: stloc.s V_6
IL_9122: br.s IL_916a
IL_9124: ldloc.s V_6
IL_9126: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_912b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9130: stloc.s V_6
IL_9132: ldloc.s V_9
IL_9134: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9139: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_913e: stloc.s V_7
IL_9140: ldloc.s V_6
IL_9142: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9147: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_914c: stloc.s V_7
IL_914e: ldloc.s V_7
IL_9150: call string [mscorlib]System.Convert::ToString(int32)
IL_9155: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_915a: stloc.s V_10
IL_915c: ldloc.s V_10
IL_915e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9163: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9168: stloc.s V_7
IL_916a: ldloc.s V_6
IL_916c: ldloc.s V_10
IL_916e: ble.s IL_91b8
IL_9170: ldloc.s V_9
IL_9172: call string [mscorlib]System.Convert::ToString(int32)
IL_9177: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_917c: stloc.s V_8
IL_917e: ldloc.s V_8
IL_9180: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9185: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_918a: stloc.s V_9
IL_918c: ldloc.s V_8
IL_918e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9193: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9198: stloc.s V_10
IL_919a: ldloc.s V_10
IL_919c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91a1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91a6: stloc.s V_8
IL_91a8: ldloc.s V_8
IL_91aa: call string [mscorlib]System.Convert::ToString(int32)
IL_91af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_91b4: stloc.s V_8
IL_91b6: br.s IL_91fe
IL_91b8: ldloc.s V_9
IL_91ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91c4: stloc.s V_9
IL_91c6: ldloc.s V_9
IL_91c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_91cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_91d2: stloc.s V_7
IL_91d4: ldloc.s V_6
IL_91d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91e0: stloc.s V_7
IL_91e2: ldloc.s V_6
IL_91e4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91e9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91ee: stloc.s V_7
IL_91f0: ldloc.s V_8
IL_91f2: call string [mscorlib]System.Convert::ToString(int32)
IL_91f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_91fc: stloc.s V_7
IL_91fe: ldloc.s V_8
IL_9200: ldloc.s V_7
IL_9202: bne.un.s IL_924c
IL_9204: ldloc.s V_6
IL_9206: call string [mscorlib]System.Convert::ToString(int32)
IL_920b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9210: stloc.s V_6
IL_9212: ldloc.s V_7
IL_9214: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9219: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_921e: stloc.s V_8
IL_9220: ldloc.s V_6
IL_9222: call string [mscorlib]System.Convert::ToString(int32)
IL_9227: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_922c: stloc.s V_8
IL_922e: ldloc.s V_8
IL_9230: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9235: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_923a: stloc.s V_7
IL_923c: ldloc.s V_6
IL_923e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9243: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9248: stloc.s V_6
IL_924a: br.s IL_9292
IL_924c: ldloc.s V_6
IL_924e: call string [mscorlib]System.Convert::ToString(int32)
IL_9253: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9258: stloc.s V_10
IL_925a: ldloc.s V_10
IL_925c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9261: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9266: stloc.s V_7
IL_9268: ldloc.s V_7
IL_926a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_926f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9274: stloc.s V_7
IL_9276: ldloc.s V_10
IL_9278: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_927d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9282: stloc.s V_9
IL_9284: ldloc.s V_8
IL_9286: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_928b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9290: stloc.s V_8
IL_9292: ldloc.s V_10
IL_9294: ldloc.s V_10
IL_9296: beq.s IL_92e0
IL_9298: ldloc.s V_6
IL_929a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_929f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92a4: stloc.s V_9
IL_92a6: ldloc.s V_10
IL_92a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_92ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_92b2: stloc.s V_7
IL_92b4: ldloc.s V_9
IL_92b6: call string [mscorlib]System.Convert::ToString(int32)
IL_92bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_92c0: stloc.s V_7
IL_92c2: ldloc.s V_8
IL_92c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_92c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_92ce: stloc.s V_8
IL_92d0: ldloc.s V_10
IL_92d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_92d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92dc: stloc.s V_9
IL_92de: br.s IL_9326
IL_92e0: ldloc.s V_10
IL_92e2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_92e7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92ec: stloc.s V_10
IL_92ee: ldloc.s V_9
IL_92f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_92f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92fa: stloc.s V_8
IL_92fc: ldloc.s V_7
IL_92fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9303: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9308: stloc.s V_7
IL_930a: ldloc.s V_7
IL_930c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9311: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9316: stloc.s V_9
IL_9318: ldloc.s V_6
IL_931a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_931f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9324: stloc.s V_7
IL_9326: ldloc.s V_7
IL_9328: ldloc.s V_10
IL_932a: bne.un.s IL_9374
IL_932c: ldloc.s V_10
IL_932e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9333: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9338: stloc.s V_8
IL_933a: ldloc.s V_9
IL_933c: call string [mscorlib]System.Convert::ToString(int32)
IL_9341: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9346: stloc.s V_6
IL_9348: ldloc.s V_6
IL_934a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_934f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9354: stloc.s V_7
IL_9356: ldloc.s V_7
IL_9358: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_935d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9362: stloc.s V_7
IL_9364: ldloc.s V_10
IL_9366: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_936b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9370: stloc.s V_10
IL_9372: br.s IL_93ba
IL_9374: ldloc.s V_6
IL_9376: call string [mscorlib]System.Convert::ToString(int32)
IL_937b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9380: stloc.s V_10
IL_9382: ldloc.s V_7
IL_9384: call string [mscorlib]System.Convert::ToString(int32)
IL_9389: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_938e: stloc.s V_8
IL_9390: ldloc.s V_8
IL_9392: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9397: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_939c: stloc.s V_6
IL_939e: ldloc.s V_7
IL_93a0: call string [mscorlib]System.Convert::ToString(int32)
IL_93a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_93aa: stloc.s V_9
IL_93ac: ldloc.s V_8
IL_93ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93b8: stloc.s V_8
IL_93ba: ldloc.s V_9
IL_93bc: ldloc.s V_9
IL_93be: bgt.s IL_9408
IL_93c0: ldloc.s V_6
IL_93c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93cc: stloc.s V_8
IL_93ce: ldloc.s V_9
IL_93d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_93d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_93da: stloc.s V_10
IL_93dc: ldloc.s V_8
IL_93de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93e8: stloc.s V_7
IL_93ea: ldloc.s V_6
IL_93ec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93f1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93f6: stloc.s V_9
IL_93f8: ldloc.s V_9
IL_93fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_93ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9404: stloc.s V_6
IL_9406: br.s IL_944e
IL_9408: ldloc.s V_9
IL_940a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_940f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9414: stloc.s V_8
IL_9416: ldloc.s V_9
IL_9418: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_941d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9422: stloc.s V_10
IL_9424: ldloc.s V_10
IL_9426: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_942b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9430: stloc.s V_9
IL_9432: ldloc.s V_6
IL_9434: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9439: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_943e: stloc.s V_8
IL_9440: ldloc.s V_10
IL_9442: call string [mscorlib]System.Convert::ToString(int32)
IL_9447: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_944c: stloc.s V_7
IL_944e: ldloc.s V_9
IL_9450: ldloc.s V_6
IL_9452: bgt.s IL_949c
IL_9454: ldloc.s V_10
IL_9456: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_945b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9460: stloc.s V_8
IL_9462: ldloc.s V_8
IL_9464: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9469: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_946e: stloc.s V_9
IL_9470: ldloc.s V_7
IL_9472: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9477: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_947c: stloc.s V_7
IL_947e: ldloc.s V_7
IL_9480: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9485: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_948a: stloc.s V_10
IL_948c: ldloc.s V_8
IL_948e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9493: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9498: stloc.s V_8
IL_949a: br.s IL_94e2
IL_949c: ldloc.s V_9
IL_949e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_94a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_94a8: stloc.s V_8
IL_94aa: ldloc.s V_8
IL_94ac: call string [mscorlib]System.Convert::ToString(int32)
IL_94b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_94b6: stloc.s V_10
IL_94b8: ldloc.s V_8
IL_94ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_94bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_94c4: stloc.s V_6
IL_94c6: ldloc.s V_8
IL_94c8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_94cd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_94d2: stloc.s V_7
IL_94d4: ldloc.s V_8
IL_94d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_94db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_94e0: stloc.s V_9
IL_94e2: ldloc.s V_6
IL_94e4: ldloc.s V_7
IL_94e6: bne.un.s IL_9530
IL_94e8: ldloc.s V_9
IL_94ea: call string [mscorlib]System.Convert::ToString(int32)
IL_94ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_94f4: stloc.s V_10
IL_94f6: ldloc.s V_7
IL_94f8: call string [mscorlib]System.Convert::ToString(int32)
IL_94fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9502: stloc.s V_10
IL_9504: ldloc.s V_10
IL_9506: call string [mscorlib]System.Convert::ToString(int32)
IL_950b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9510: stloc.s V_6
IL_9512: ldloc.s V_6
IL_9514: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9519: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_951e: stloc.s V_8
IL_9520: ldloc.s V_10
IL_9522: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9527: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_952c: stloc.s V_8
IL_952e: br.s IL_9576
IL_9530: ldloc.s V_8
IL_9532: call string [mscorlib]System.Convert::ToString(int32)
IL_9537: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_953c: stloc.s V_8
IL_953e: ldloc.s V_10
IL_9540: call string [mscorlib]System.Convert::ToString(int32)
IL_9545: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_954a: stloc.s V_6
IL_954c: ldloc.s V_7
IL_954e: call string [mscorlib]System.Convert::ToString(int32)
IL_9553: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9558: stloc.s V_9
IL_955a: ldloc.s V_8
IL_955c: call string [mscorlib]System.Convert::ToString(int32)
IL_9561: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9566: stloc.s V_7
IL_9568: ldloc.s V_7
IL_956a: call string [mscorlib]System.Convert::ToString(int32)
IL_956f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9574: stloc.s V_6
IL_9576: ldloc.s V_6
IL_9578: ldloc.s V_8
IL_957a: bne.un.s IL_95c4
IL_957c: ldloc.s V_10
IL_957e: call string [mscorlib]System.Convert::ToString(int32)
IL_9583: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9588: stloc.s V_6
IL_958a: ldloc.s V_8
IL_958c: call string [mscorlib]System.Convert::ToString(int32)
IL_9591: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9596: stloc.s V_10
IL_9598: ldloc.s V_6
IL_959a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_959f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_95a4: stloc.s V_7
IL_95a6: ldloc.s V_6
IL_95a8: call string [mscorlib]System.Convert::ToString(int32)
IL_95ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_95b2: stloc.s V_8
IL_95b4: ldloc.s V_8
IL_95b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_95bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_95c0: stloc.s V_8
IL_95c2: br.s IL_960a
IL_95c4: ldloc.s V_7
IL_95c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_95cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_95d0: stloc.s V_8
IL_95d2: ldloc.s V_7
IL_95d4: call string [mscorlib]System.Convert::ToString(int32)
IL_95d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_95de: stloc.s V_6
IL_95e0: ldloc.s V_6
IL_95e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_95e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_95ec: stloc.s V_8
IL_95ee: ldloc.s V_6
IL_95f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_95f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_95fa: stloc.s V_7
IL_95fc: ldloc.s V_10
IL_95fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9603: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9608: stloc.s V_9
IL_960a: ldloc.s V_9
IL_960c: ldloc.s V_9
IL_960e: bgt.s IL_9658
IL_9610: ldloc.s V_7
IL_9612: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9617: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_961c: stloc.s V_8
IL_961e: ldloc.s V_6
IL_9620: call string [mscorlib]System.Convert::ToString(int32)
IL_9625: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_962a: stloc.s V_6
IL_962c: ldloc.s V_10
IL_962e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9633: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9638: stloc.s V_10
IL_963a: ldloc.s V_10
IL_963c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9641: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9646: stloc.s V_10
IL_9648: ldloc.s V_10
IL_964a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_964f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9654: stloc.s V_6
IL_9656: br.s IL_969e
IL_9658: ldloc.s V_9
IL_965a: call string [mscorlib]System.Convert::ToString(int32)
IL_965f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9664: stloc.s V_10
IL_9666: ldloc.s V_9
IL_9668: call string [mscorlib]System.Convert::ToString(int32)
IL_966d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9672: stloc.s V_6
IL_9674: ldloc.s V_8
IL_9676: call string [mscorlib]System.Convert::ToString(int32)
IL_967b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9680: stloc.s V_6
IL_9682: ldloc.s V_7
IL_9684: call string [mscorlib]System.Convert::ToString(int32)
IL_9689: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_968e: stloc.s V_9
IL_9690: ldloc.s V_6
IL_9692: call string [mscorlib]System.Convert::ToString(int32)
IL_9697: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_969c: stloc.s V_8
IL_969e: ldloc.s V_6
IL_96a0: ldloc.s V_10
IL_96a2: bge.s IL_96ec
IL_96a4: ldloc.s V_7
IL_96a6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_96ab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_96b0: stloc.s V_8
IL_96b2: ldloc.s V_8
IL_96b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_96b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_96be: stloc.s V_7
IL_96c0: ldloc.s V_9
IL_96c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_96c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_96cc: stloc.s V_7
IL_96ce: ldloc.s V_6
IL_96d0: call string [mscorlib]System.Convert::ToString(int32)
IL_96d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_96da: stloc.s V_8
IL_96dc: ldloc.s V_9
IL_96de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_96e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_96e8: stloc.s V_6
IL_96ea: br.s IL_9732
IL_96ec: ldloc.s V_7
IL_96ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_96f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_96f8: stloc.s V_7
IL_96fa: ldloc.s V_6
IL_96fc: call string [mscorlib]System.Convert::ToString(int32)
IL_9701: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9706: stloc.s V_7
IL_9708: ldloc.s V_10
IL_970a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_970f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9714: stloc.s V_6
IL_9716: ldloc.s V_6
IL_9718: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_971d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9722: stloc.s V_10
IL_9724: ldloc.s V_6
IL_9726: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_972b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9730: stloc.s V_10
IL_9732: ldloc.s V_8
IL_9734: ldloc.s V_6
IL_9736: bne.un.s IL_9780
IL_9738: ldloc.s V_9
IL_973a: call string [mscorlib]System.Convert::ToString(int32)
IL_973f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9744: stloc.s V_6
IL_9746: ldloc.s V_7
IL_9748: call string [mscorlib]System.Convert::ToString(int32)
IL_974d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9752: stloc.s V_8
IL_9754: ldloc.s V_7
IL_9756: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_975b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9760: stloc.s V_6
IL_9762: ldloc.s V_6
IL_9764: call string [mscorlib]System.Convert::ToString(int32)
IL_9769: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_976e: stloc.s V_10
IL_9770: ldloc.s V_7
IL_9772: call string [mscorlib]System.Convert::ToString(int32)
IL_9777: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_977c: stloc.s V_7
IL_977e: br.s IL_97c6
IL_9780: ldloc.s V_10
IL_9782: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9787: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_978c: stloc.s V_8
IL_978e: ldloc.s V_8
IL_9790: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9795: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_979a: stloc.s V_9
IL_979c: ldloc.s V_9
IL_979e: call string [mscorlib]System.Convert::ToString(int32)
IL_97a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_97a8: stloc.s V_9
IL_97aa: ldloc.s V_6
IL_97ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_97b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_97b6: stloc.s V_8
IL_97b8: ldloc.s V_10
IL_97ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_97bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_97c4: stloc.s V_7
IL_97c6: ldloc.s V_9
IL_97c8: ldloc.s V_6
IL_97ca: bgt.s IL_9814
IL_97cc: ldloc.s V_9
IL_97ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_97d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_97d8: stloc.s V_6
IL_97da: ldloc.s V_6
IL_97dc: call string [mscorlib]System.Convert::ToString(int32)
IL_97e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_97e6: stloc.s V_10
IL_97e8: ldloc.s V_9
IL_97ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_97ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_97f4: stloc.s V_6
IL_97f6: ldloc.s V_9
IL_97f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_97fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9802: stloc.s V_9
IL_9804: ldloc.s V_9
IL_9806: call string [mscorlib]System.Convert::ToString(int32)
IL_980b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9810: stloc.s V_10
IL_9812: br.s IL_985a
IL_9814: ldloc.s V_6
IL_9816: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_981b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9820: stloc.s V_10
IL_9822: ldloc.s V_8
IL_9824: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9829: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_982e: stloc.s V_7
IL_9830: ldloc.s V_10
IL_9832: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9837: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_983c: stloc.s V_8
IL_983e: ldloc.s V_6
IL_9840: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9845: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_984a: stloc.s V_6
IL_984c: ldloc.s V_7
IL_984e: call string [mscorlib]System.Convert::ToString(int32)
IL_9853: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9858: stloc.s V_6
IL_985a: ldloc.s V_7
IL_985c: ldloc.s V_10
IL_985e: blt.s IL_98a8
IL_9860: ldloc.s V_8
IL_9862: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9867: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_986c: stloc.s V_6
IL_986e: ldloc.s V_8
IL_9870: call string [mscorlib]System.Convert::ToString(int32)
IL_9875: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_987a: stloc.s V_8
IL_987c: ldloc.s V_10
IL_987e: call string [mscorlib]System.Convert::ToString(int32)
IL_9883: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9888: stloc.s V_9
IL_988a: ldloc.s V_8
IL_988c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9891: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9896: stloc.s V_9
IL_9898: ldloc.s V_10
IL_989a: call string [mscorlib]System.Convert::ToString(int32)
IL_989f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_98a4: stloc.s V_10
IL_98a6: br.s IL_98ee
IL_98a8: ldloc.s V_6
IL_98aa: call string [mscorlib]System.Convert::ToString(int32)
IL_98af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_98b4: stloc.s V_7
IL_98b6: ldloc.s V_9
IL_98b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_98bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_98c2: stloc.s V_10
IL_98c4: ldloc.s V_10
IL_98c6: call string [mscorlib]System.Convert::ToString(int32)
IL_98cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_98d0: stloc.s V_8
IL_98d2: ldloc.s V_9
IL_98d4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_98d9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_98de: stloc.s V_9
IL_98e0: ldloc.s V_8
IL_98e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_98e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_98ec: stloc.s V_6
IL_98ee: ldloc.s V_7
IL_98f0: ldloc.s V_10
IL_98f2: blt.s IL_993c
IL_98f4: ldloc.s V_8
IL_98f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_98fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9900: stloc.s V_10
IL_9902: ldloc.s V_9
IL_9904: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9909: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_990e: stloc.s V_7
IL_9910: ldloc.s V_7
IL_9912: call string [mscorlib]System.Convert::ToString(int32)
IL_9917: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_991c: stloc.s V_8
IL_991e: ldloc.s V_7
IL_9920: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9925: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_992a: stloc.s V_8
IL_992c: ldloc.s V_7
IL_992e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9933: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9938: stloc.s V_8
IL_993a: br.s IL_9982
IL_993c: ldloc.s V_7
IL_993e: call string [mscorlib]System.Convert::ToString(int32)
IL_9943: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9948: stloc.s V_7
IL_994a: ldloc.s V_10
IL_994c: call string [mscorlib]System.Convert::ToString(int32)
IL_9951: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9956: stloc.s V_6
IL_9958: ldloc.s V_8
IL_995a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_995f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9964: stloc.s V_7
IL_9966: ldloc.s V_9
IL_9968: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_996d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9972: stloc.s V_8
IL_9974: ldloc.s V_9
IL_9976: call string [mscorlib]System.Convert::ToString(int32)
IL_997b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9980: stloc.s V_10
IL_9982: ldloc.s V_7
IL_9984: ldloc.s V_9
IL_9986: bgt.s IL_99d0
IL_9988: ldloc.s V_10
IL_998a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_998f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9994: stloc.s V_8
IL_9996: ldloc.s V_6
IL_9998: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_999d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99a2: stloc.s V_7
IL_99a4: ldloc.s V_9
IL_99a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_99ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_99b0: stloc.s V_7
IL_99b2: ldloc.s V_10
IL_99b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_99b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99be: stloc.s V_8
IL_99c0: ldloc.s V_8
IL_99c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_99c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99cc: stloc.s V_9
IL_99ce: br.s IL_9a16
IL_99d0: ldloc.s V_7
IL_99d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_99d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_99dc: stloc.s V_7
IL_99de: ldloc.s V_9
IL_99e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_99e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99ea: stloc.s V_6
IL_99ec: ldloc.s V_7
IL_99ee: call string [mscorlib]System.Convert::ToString(int32)
IL_99f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_99f8: stloc.s V_6
IL_99fa: ldloc.s V_9
IL_99fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a01: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a06: stloc.s V_6
IL_9a08: ldloc.s V_10
IL_9a0a: call string [mscorlib]System.Convert::ToString(int32)
IL_9a0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9a14: stloc.s V_6
IL_9a16: ldloc.s V_10
IL_9a18: ldloc.s V_8
IL_9a1a: blt.s IL_9a64
IL_9a1c: ldloc.s V_7
IL_9a1e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9a23: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9a28: stloc.s V_8
IL_9a2a: ldloc.s V_8
IL_9a2c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a31: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a36: stloc.s V_8
IL_9a38: ldloc.s V_7
IL_9a3a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a3f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a44: stloc.s V_6
IL_9a46: ldloc.s V_7
IL_9a48: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a4d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a52: stloc.s V_6
IL_9a54: ldloc.s V_9
IL_9a56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a60: stloc.s V_9
IL_9a62: br.s IL_9aaa
IL_9a64: ldloc.s V_10
IL_9a66: call string [mscorlib]System.Convert::ToString(int32)
IL_9a6b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9a70: stloc.s V_6
IL_9a72: ldloc.s V_6
IL_9a74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9a79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9a7e: stloc.s V_8
IL_9a80: ldloc.s V_8
IL_9a82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9a87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9a8c: stloc.s V_10
IL_9a8e: ldloc.s V_7
IL_9a90: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9a95: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9a9a: stloc.s V_8
IL_9a9c: ldloc.s V_9
IL_9a9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9aa3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9aa8: stloc.s V_8
IL_9aaa: ldloc.s V_10
IL_9aac: ldloc.s V_6
IL_9aae: bne.un.s IL_9af8
IL_9ab0: ldloc.s V_6
IL_9ab2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9ab7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9abc: stloc.s V_8
IL_9abe: ldloc.s V_10
IL_9ac0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9ac5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9aca: stloc.s V_7
IL_9acc: ldloc.s V_8
IL_9ace: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9ad3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9ad8: stloc.s V_9
IL_9ada: ldloc.s V_10
IL_9adc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9ae1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9ae6: stloc.s V_8
IL_9ae8: ldloc.s V_10
IL_9aea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9aef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9af4: stloc.s V_6
IL_9af6: br.s IL_9b3e
IL_9af8: ldloc.s V_6
IL_9afa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9aff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b04: stloc.s V_6
IL_9b06: ldloc.s V_9
IL_9b08: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9b0d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b12: stloc.s V_6
IL_9b14: ldloc.s V_9
IL_9b16: call string [mscorlib]System.Convert::ToString(int32)
IL_9b1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9b20: stloc.s V_7
IL_9b22: ldloc.s V_9
IL_9b24: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9b29: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9b2e: stloc.s V_9
IL_9b30: ldloc.s V_8
IL_9b32: call string [mscorlib]System.Convert::ToString(int32)
IL_9b37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9b3c: stloc.s V_7
IL_9b3e: ldloc.s V_8
IL_9b40: ldloc.s V_10
IL_9b42: bgt.s IL_9b8c
IL_9b44: ldloc.s V_9
IL_9b46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9b4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9b50: stloc.s V_7
IL_9b52: ldloc.s V_9
IL_9b54: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9b59: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b5e: stloc.s V_8
IL_9b60: ldloc.s V_7
IL_9b62: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9b67: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b6c: stloc.s V_6
IL_9b6e: ldloc.s V_8
IL_9b70: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9b75: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9b7a: stloc.s V_9
IL_9b7c: ldloc.s V_9
IL_9b7e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9b83: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9b88: stloc.s V_9
IL_9b8a: br.s IL_9bd2
IL_9b8c: ldloc.s V_7
IL_9b8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9b93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9b98: stloc.s V_7
IL_9b9a: ldloc.s V_10
IL_9b9c: call string [mscorlib]System.Convert::ToString(int32)
IL_9ba1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ba6: stloc.s V_9
IL_9ba8: ldloc.s V_8
IL_9baa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9baf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9bb4: stloc.s V_8
IL_9bb6: ldloc.s V_9
IL_9bb8: call string [mscorlib]System.Convert::ToString(int32)
IL_9bbd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9bc2: stloc.s V_7
IL_9bc4: ldloc.s V_8
IL_9bc6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9bcb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9bd0: stloc.s V_6
IL_9bd2: ldloc.s V_10
IL_9bd4: ldloc.s V_8
IL_9bd6: bne.un.s IL_9c20
IL_9bd8: ldloc.s V_7
IL_9bda: call string [mscorlib]System.Convert::ToString(int32)
IL_9bdf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9be4: stloc.s V_6
IL_9be6: ldloc.s V_7
IL_9be8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9bed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9bf2: stloc.s V_7
IL_9bf4: ldloc.s V_6
IL_9bf6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9bfb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c00: stloc.s V_7
IL_9c02: ldloc.s V_6
IL_9c04: call string [mscorlib]System.Convert::ToString(int32)
IL_9c09: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9c0e: stloc.s V_8
IL_9c10: ldloc.s V_9
IL_9c12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c1c: stloc.s V_6
IL_9c1e: br.s IL_9c66
IL_9c20: ldloc.s V_6
IL_9c22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c2c: stloc.s V_10
IL_9c2e: ldloc.s V_10
IL_9c30: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c35: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c3a: stloc.s V_7
IL_9c3c: ldloc.s V_6
IL_9c3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c48: stloc.s V_10
IL_9c4a: ldloc.s V_6
IL_9c4c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c51: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c56: stloc.s V_6
IL_9c58: ldloc.s V_8
IL_9c5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c64: stloc.s V_6
IL_9c66: ldloc.s V_10
IL_9c68: ldloc.s V_9
IL_9c6a: bne.un.s IL_9cb4
IL_9c6c: ldloc.s V_9
IL_9c6e: call string [mscorlib]System.Convert::ToString(int32)
IL_9c73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9c78: stloc.s V_6
IL_9c7a: ldloc.s V_6
IL_9c7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c86: stloc.s V_8
IL_9c88: ldloc.s V_8
IL_9c8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9c8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9c94: stloc.s V_6
IL_9c96: ldloc.s V_8
IL_9c98: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c9d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9ca2: stloc.s V_10
IL_9ca4: ldloc.s V_8
IL_9ca6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9cab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cb0: stloc.s V_7
IL_9cb2: br.s IL_9cfa
IL_9cb4: ldloc.s V_8
IL_9cb6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9cbb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cc0: stloc.s V_6
IL_9cc2: ldloc.s V_10
IL_9cc4: call string [mscorlib]System.Convert::ToString(int32)
IL_9cc9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9cce: stloc.s V_8
IL_9cd0: ldloc.s V_10
IL_9cd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9cd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cdc: stloc.s V_9
IL_9cde: ldloc.s V_7
IL_9ce0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9ce5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cea: stloc.s V_6
IL_9cec: ldloc.s V_6
IL_9cee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9cf3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9cf8: stloc.s V_6
IL_9cfa: ldloc.s V_9
IL_9cfc: ldloc.s V_9
IL_9cfe: bgt.s IL_9d48
IL_9d00: ldloc.s V_8
IL_9d02: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9d07: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9d0c: stloc.s V_8
IL_9d0e: ldloc.s V_10
IL_9d10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d1a: stloc.s V_10
IL_9d1c: ldloc.s V_9
IL_9d1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d28: stloc.s V_6
IL_9d2a: ldloc.s V_10
IL_9d2c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d31: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9d36: stloc.s V_7
IL_9d38: ldloc.s V_10
IL_9d3a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d3f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9d44: stloc.s V_8
IL_9d46: br.s IL_9d8e
IL_9d48: ldloc.s V_9
IL_9d4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9d54: stloc.s V_9
IL_9d56: ldloc.s V_7
IL_9d58: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d5d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d62: stloc.s V_10
IL_9d64: ldloc.s V_7
IL_9d66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d70: stloc.s V_9
IL_9d72: ldloc.s V_10
IL_9d74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d7e: stloc.s V_10
IL_9d80: ldloc.s V_6
IL_9d82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9d87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9d8c: stloc.s V_9
IL_9d8e: ldloc.s V_7
IL_9d90: ldloc.s V_7
IL_9d92: bge.s IL_9ddc
IL_9d94: ldloc.s V_6
IL_9d96: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d9b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9da0: stloc.s V_9
IL_9da2: ldloc.s V_10
IL_9da4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9da9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9dae: stloc.s V_10
IL_9db0: ldloc.s V_7
IL_9db2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9db7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9dbc: stloc.s V_9
IL_9dbe: ldloc.s V_7
IL_9dc0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9dc5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9dca: stloc.s V_7
IL_9dcc: ldloc.s V_7
IL_9dce: call string [mscorlib]System.Convert::ToString(int32)
IL_9dd3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9dd8: stloc.s V_6
IL_9dda: br.s IL_9e22
IL_9ddc: ldloc.s V_7
IL_9dde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9de3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9de8: stloc.s V_7
IL_9dea: ldloc.s V_8
IL_9dec: call string [mscorlib]System.Convert::ToString(int32)
IL_9df1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9df6: stloc.s V_8
IL_9df8: ldloc.s V_9
IL_9dfa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9dff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e04: stloc.s V_7
IL_9e06: ldloc.s V_10
IL_9e08: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9e0d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9e12: stloc.s V_6
IL_9e14: ldloc.s V_7
IL_9e16: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e1b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e20: stloc.s V_10
IL_9e22: ldloc.s V_6
IL_9e24: ldloc.s V_9
IL_9e26: bgt.s IL_9e70
IL_9e28: ldloc.s V_10
IL_9e2a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9e2f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e34: stloc.s V_8
IL_9e36: ldloc.s V_9
IL_9e38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9e3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e42: stloc.s V_10
IL_9e44: ldloc.s V_10
IL_9e46: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e4b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e50: stloc.s V_10
IL_9e52: ldloc.s V_6
IL_9e54: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e59: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e5e: stloc.s V_6
IL_9e60: ldloc.s V_10
IL_9e62: call string [mscorlib]System.Convert::ToString(int32)
IL_9e67: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9e6c: stloc.s V_6
IL_9e6e: br.s IL_9eb6
IL_9e70: ldloc.s V_9
IL_9e72: call string [mscorlib]System.Convert::ToString(int32)
IL_9e77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9e7c: stloc.s V_8
IL_9e7e: ldloc.s V_9
IL_9e80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9e85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e8a: stloc.s V_9
IL_9e8c: ldloc.s V_10
IL_9e8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e98: stloc.s V_10
IL_9e9a: ldloc.s V_6
IL_9e9c: call string [mscorlib]System.Convert::ToString(int32)
IL_9ea1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ea6: stloc.s V_7
IL_9ea8: ldloc.s V_6
IL_9eaa: call string [mscorlib]System.Convert::ToString(int32)
IL_9eaf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9eb4: stloc.s V_10
IL_9eb6: ldloc.s V_9
IL_9eb8: ldloc.s V_6
IL_9eba: ble.s IL_9f04
IL_9ebc: ldloc.s V_9
IL_9ebe: call string [mscorlib]System.Convert::ToString(int32)
IL_9ec3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ec8: stloc.s V_9
IL_9eca: ldloc.s V_8
IL_9ecc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9ed1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9ed6: stloc.s V_8
IL_9ed8: ldloc.s V_7
IL_9eda: call string [mscorlib]System.Convert::ToString(int32)
IL_9edf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ee4: stloc.s V_9
IL_9ee6: ldloc.s V_8
IL_9ee8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9eed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9ef2: stloc.s V_8
IL_9ef4: ldloc.s V_7
IL_9ef6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9efb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9f00: stloc.s V_9
IL_9f02: br.s IL_9f4a
IL_9f04: ldloc.s V_10
IL_9f06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9f0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9f10: stloc.s V_10
IL_9f12: ldloc.s V_7
IL_9f14: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9f19: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9f1e: stloc.s V_8
IL_9f20: ldloc.s V_7
IL_9f22: call string [mscorlib]System.Convert::ToString(int32)
IL_9f27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9f2c: stloc.s V_6
IL_9f2e: ldloc.s V_6
IL_9f30: call string [mscorlib]System.Convert::ToString(int32)
IL_9f35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9f3a: stloc.s V_10
IL_9f3c: ldloc.s V_8
IL_9f3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9f43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9f48: stloc.s V_8
IL_9f4a: ldloc.s V_6
IL_9f4c: ldloc.s V_9
IL_9f4e: beq.s IL_9f98
IL_9f50: ldloc.s V_6
IL_9f52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9f57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9f5c: stloc.s V_10
IL_9f5e: ldloc.s V_6
IL_9f60: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9f65: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9f6a: stloc.s V_7
IL_9f6c: ldloc.s V_7
IL_9f6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9f73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9f78: stloc.s V_6
IL_9f7a: ldloc.s V_6
IL_9f7c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9f81: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9f86: stloc.s V_7
IL_9f88: ldloc.s V_8
IL_9f8a: call string [mscorlib]System.Convert::ToString(int32)
IL_9f8f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9f94: stloc.s V_8
IL_9f96: br.s IL_9fde
IL_9f98: ldloc.s V_7
IL_9f9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9f9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9fa4: stloc.s V_9
IL_9fa6: ldloc.s V_9
IL_9fa8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9fad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9fb2: stloc.s V_7
IL_9fb4: ldloc.s V_10
IL_9fb6: call string [mscorlib]System.Convert::ToString(int32)
IL_9fbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9fc0: stloc.s V_10
IL_9fc2: ldloc.s V_9
IL_9fc4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9fc9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9fce: stloc.s V_7
IL_9fd0: ldloc.s V_8
IL_9fd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9fd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9fdc: stloc.s V_8
IL_9fde: ldloc.s V_9
IL_9fe0: ldloc.s V_6
IL_9fe2: bne.un.s IL_a02c
IL_9fe4: ldloc.s V_9
IL_9fe6: call string [mscorlib]System.Convert::ToString(int32)
IL_9feb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ff0: stloc.s V_10
IL_9ff2: ldloc.s V_7
IL_9ff4: call string [mscorlib]System.Convert::ToString(int32)
IL_9ff9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ffe: stloc.s V_7
IL_a000: ldloc.s V_6
IL_a002: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a007: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a00c: stloc.s V_9
IL_a00e: ldloc.s V_7
IL_a010: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a015: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a01a: stloc.s V_10
IL_a01c: ldloc.s V_10
IL_a01e: call string [mscorlib]System.Convert::ToString(int32)
IL_a023: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a028: stloc.s V_6
IL_a02a: br.s IL_a072
IL_a02c: ldloc.s V_9
IL_a02e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a033: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a038: stloc.s V_8
IL_a03a: ldloc.s V_9
IL_a03c: call string [mscorlib]System.Convert::ToString(int32)
IL_a041: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a046: stloc.s V_7
IL_a048: ldloc.s V_9
IL_a04a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a04f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a054: stloc.s V_10
IL_a056: ldloc.s V_9
IL_a058: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a05d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a062: stloc.s V_6
IL_a064: ldloc.s V_10
IL_a066: call string [mscorlib]System.Convert::ToString(int32)
IL_a06b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a070: stloc.s V_7
IL_a072: ldloc.s V_8
IL_a074: ldloc.s V_9
IL_a076: bne.un.s IL_a0c0
IL_a078: ldloc.s V_6
IL_a07a: call string [mscorlib]System.Convert::ToString(int32)
IL_a07f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a084: stloc.s V_6
IL_a086: ldloc.s V_8
IL_a088: call string [mscorlib]System.Convert::ToString(int32)
IL_a08d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a092: stloc.s V_10
IL_a094: ldloc.s V_6
IL_a096: call string [mscorlib]System.Convert::ToString(int32)
IL_a09b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a0a0: stloc.s V_10
IL_a0a2: ldloc.s V_10
IL_a0a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0ae: stloc.s V_9
IL_a0b0: ldloc.s V_10
IL_a0b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0bc: stloc.s V_9
IL_a0be: br.s IL_a106
IL_a0c0: ldloc.s V_7
IL_a0c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a0c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a0cc: stloc.s V_10
IL_a0ce: ldloc.s V_10
IL_a0d0: call string [mscorlib]System.Convert::ToString(int32)
IL_a0d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a0da: stloc.s V_10
IL_a0dc: ldloc.s V_9
IL_a0de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0e8: stloc.s V_8
IL_a0ea: ldloc.s V_9
IL_a0ec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0f1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0f6: stloc.s V_10
IL_a0f8: ldloc.s V_9
IL_a0fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a0ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a104: stloc.s V_9
IL_a106: ldloc.s V_6
IL_a108: ldloc.s V_7
IL_a10a: bge.s IL_a154
IL_a10c: ldloc.s V_10
IL_a10e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a113: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a118: stloc.s V_8
IL_a11a: ldloc.s V_6
IL_a11c: call string [mscorlib]System.Convert::ToString(int32)
IL_a121: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a126: stloc.s V_10
IL_a128: ldloc.s V_6
IL_a12a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a12f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a134: stloc.s V_7
IL_a136: ldloc.s V_10
IL_a138: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a13d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a142: stloc.s V_8
IL_a144: ldloc.s V_10
IL_a146: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a14b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a150: stloc.s V_10
IL_a152: br.s IL_a19a
IL_a154: ldloc.s V_10
IL_a156: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a15b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a160: stloc.s V_9
IL_a162: ldloc.s V_10
IL_a164: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a169: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a16e: stloc.s V_8
IL_a170: ldloc.s V_8
IL_a172: call string [mscorlib]System.Convert::ToString(int32)
IL_a177: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a17c: stloc.s V_10
IL_a17e: ldloc.s V_8
IL_a180: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a185: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a18a: stloc.s V_7
IL_a18c: ldloc.s V_7
IL_a18e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a193: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a198: stloc.s V_10
IL_a19a: ldloc.s V_8
IL_a19c: ldloc.s V_10
IL_a19e: blt.s IL_a1e8
IL_a1a0: ldloc.s V_6
IL_a1a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a1a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a1ac: stloc.s V_8
IL_a1ae: ldloc.s V_7
IL_a1b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a1b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a1ba: stloc.s V_6
IL_a1bc: ldloc.s V_7
IL_a1be: call string [mscorlib]System.Convert::ToString(int32)
IL_a1c3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a1c8: stloc.s V_7
IL_a1ca: ldloc.s V_10
IL_a1cc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a1d1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a1d6: stloc.s V_10
IL_a1d8: ldloc.s V_9
IL_a1da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a1df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a1e4: stloc.s V_9
IL_a1e6: br.s IL_a22e
IL_a1e8: ldloc.s V_10
IL_a1ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a1ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a1f4: stloc.s V_9
IL_a1f6: ldloc.s V_7
IL_a1f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a1fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a202: stloc.s V_10
IL_a204: ldloc.s V_8
IL_a206: call string [mscorlib]System.Convert::ToString(int32)
IL_a20b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a210: stloc.s V_7
IL_a212: ldloc.s V_9
IL_a214: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a219: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a21e: stloc.s V_8
IL_a220: ldloc.s V_10
IL_a222: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a227: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a22c: stloc.s V_9
IL_a22e: ldloc.s V_7
IL_a230: ldloc.s V_8
IL_a232: bne.un.s IL_a27c
IL_a234: ldloc.s V_6
IL_a236: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a23b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a240: stloc.s V_6
IL_a242: ldloc.s V_7
IL_a244: call string [mscorlib]System.Convert::ToString(int32)
IL_a249: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a24e: stloc.s V_9
IL_a250: ldloc.s V_7
IL_a252: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a257: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a25c: stloc.s V_8
IL_a25e: ldloc.s V_9
IL_a260: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a265: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a26a: stloc.s V_9
IL_a26c: ldloc.s V_10
IL_a26e: call string [mscorlib]System.Convert::ToString(int32)
IL_a273: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a278: stloc.s V_9
IL_a27a: br.s IL_a2c2
IL_a27c: ldloc.s V_6
IL_a27e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a283: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a288: stloc.s V_10
IL_a28a: ldloc.s V_10
IL_a28c: call string [mscorlib]System.Convert::ToString(int32)
IL_a291: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a296: stloc.s V_8
IL_a298: ldloc.s V_9
IL_a29a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a29f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a2a4: stloc.s V_9
IL_a2a6: ldloc.s V_9
IL_a2a8: call string [mscorlib]System.Convert::ToString(int32)
IL_a2ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2b2: stloc.s V_8
IL_a2b4: ldloc.s V_7
IL_a2b6: call string [mscorlib]System.Convert::ToString(int32)
IL_a2bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2c0: stloc.s V_8
IL_a2c2: ldloc.s V_6
IL_a2c4: ldloc.s V_9
IL_a2c6: bge.s IL_a310
IL_a2c8: ldloc.s V_8
IL_a2ca: call string [mscorlib]System.Convert::ToString(int32)
IL_a2cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2d4: stloc.s V_7
IL_a2d6: ldloc.s V_8
IL_a2d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a2dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a2e2: stloc.s V_8
IL_a2e4: ldloc.s V_8
IL_a2e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a2eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a2f0: stloc.s V_8
IL_a2f2: ldloc.s V_9
IL_a2f4: call string [mscorlib]System.Convert::ToString(int32)
IL_a2f9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2fe: stloc.s V_10
IL_a300: ldloc.s V_10
IL_a302: call string [mscorlib]System.Convert::ToString(int32)
IL_a307: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a30c: stloc.s V_10
IL_a30e: br.s IL_a356
IL_a310: ldloc.s V_6
IL_a312: call string [mscorlib]System.Convert::ToString(int32)
IL_a317: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a31c: stloc.s V_10
IL_a31e: ldloc.s V_9
IL_a320: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a325: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a32a: stloc.s V_10
IL_a32c: ldloc.s V_8
IL_a32e: call string [mscorlib]System.Convert::ToString(int32)
IL_a333: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a338: stloc.s V_9
IL_a33a: ldloc.s V_10
IL_a33c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a341: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a346: stloc.s V_8
IL_a348: ldloc.s V_8
IL_a34a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a34f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a354: stloc.s V_9
IL_a356: ldloc.s V_8
IL_a358: ldloc.s V_10
IL_a35a: ble.s IL_a3a4
IL_a35c: ldloc.s V_10
IL_a35e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a363: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a368: stloc.s V_6
IL_a36a: ldloc.s V_6
IL_a36c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a371: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a376: stloc.s V_7
IL_a378: ldloc.s V_6
IL_a37a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a37f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a384: stloc.s V_9
IL_a386: ldloc.s V_8
IL_a388: call string [mscorlib]System.Convert::ToString(int32)
IL_a38d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a392: stloc.s V_7
IL_a394: ldloc.s V_10
IL_a396: call string [mscorlib]System.Convert::ToString(int32)
IL_a39b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a3a0: stloc.s V_6
IL_a3a2: br.s IL_a3ea
IL_a3a4: ldloc.s V_10
IL_a3a6: call string [mscorlib]System.Convert::ToString(int32)
IL_a3ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a3b0: stloc.s V_9
IL_a3b2: ldloc.s V_9
IL_a3b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a3b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a3be: stloc.s V_6
IL_a3c0: ldloc.s V_6
IL_a3c2: call string [mscorlib]System.Convert::ToString(int32)
IL_a3c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a3cc: stloc.s V_10
IL_a3ce: ldloc.s V_9
IL_a3d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a3d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a3da: stloc.s V_6
IL_a3dc: ldloc.s V_7
IL_a3de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a3e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a3e8: stloc.s V_8
IL_a3ea: ldloc.s V_9
IL_a3ec: ldloc.s V_6
IL_a3ee: beq.s IL_a438
IL_a3f0: ldloc.s V_7
IL_a3f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a3f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a3fc: stloc.s V_9
IL_a3fe: ldloc.s V_7
IL_a400: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a405: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a40a: stloc.s V_10
IL_a40c: ldloc.s V_7
IL_a40e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a413: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a418: stloc.s V_6
IL_a41a: ldloc.s V_9
IL_a41c: call string [mscorlib]System.Convert::ToString(int32)
IL_a421: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a426: stloc.s V_8
IL_a428: ldloc.s V_9
IL_a42a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a42f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a434: stloc.s V_10
IL_a436: br.s IL_a47e
IL_a438: ldloc.s V_7
IL_a43a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a43f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a444: stloc.s V_6
IL_a446: ldloc.s V_6
IL_a448: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a44d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a452: stloc.s V_9
IL_a454: ldloc.s V_10
IL_a456: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a45b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a460: stloc.s V_7
IL_a462: ldloc.s V_8
IL_a464: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a469: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a46e: stloc.s V_10
IL_a470: ldloc.s V_6
IL_a472: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a477: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a47c: stloc.s V_8
IL_a47e: ldloc.s V_7
IL_a480: ldloc.s V_6
IL_a482: beq.s IL_a4cc
IL_a484: ldloc.s V_10
IL_a486: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a48b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a490: stloc.s V_7
IL_a492: ldloc.s V_7
IL_a494: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a499: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a49e: stloc.s V_8
IL_a4a0: ldloc.s V_7
IL_a4a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a4a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a4ac: stloc.s V_9
IL_a4ae: ldloc.s V_10
IL_a4b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a4b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a4ba: stloc.s V_7
IL_a4bc: ldloc.s V_9
IL_a4be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a4c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a4c8: stloc.s V_7
IL_a4ca: br.s IL_a512
IL_a4cc: ldloc.s V_10
IL_a4ce: call string [mscorlib]System.Convert::ToString(int32)
IL_a4d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a4d8: stloc.s V_6
IL_a4da: ldloc.s V_8
IL_a4dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a4e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a4e6: stloc.s V_6
IL_a4e8: ldloc.s V_9
IL_a4ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a4ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a4f4: stloc.s V_6
IL_a4f6: ldloc.s V_6
IL_a4f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a4fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a502: stloc.s V_8
IL_a504: ldloc.s V_6
IL_a506: call string [mscorlib]System.Convert::ToString(int32)
IL_a50b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a510: stloc.s V_10
IL_a512: ldloc.s V_9
IL_a514: ldloc.s V_6
IL_a516: bge.s IL_a560
IL_a518: ldloc.s V_6
IL_a51a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a51f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a524: stloc.s V_9
IL_a526: ldloc.s V_6
IL_a528: call string [mscorlib]System.Convert::ToString(int32)
IL_a52d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a532: stloc.s V_10
IL_a534: ldloc.s V_6
IL_a536: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a53b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a540: stloc.s V_6
IL_a542: ldloc.s V_8
IL_a544: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a549: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a54e: stloc.s V_10
IL_a550: ldloc.s V_6
IL_a552: call string [mscorlib]System.Convert::ToString(int32)
IL_a557: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a55c: stloc.s V_10
IL_a55e: br.s IL_a5a6
IL_a560: ldloc.s V_8
IL_a562: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a567: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a56c: stloc.s V_10
IL_a56e: ldloc.s V_6
IL_a570: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a575: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a57a: stloc.s V_6
IL_a57c: ldloc.s V_10
IL_a57e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a583: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a588: stloc.s V_8
IL_a58a: ldloc.s V_9
IL_a58c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a591: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a596: stloc.s V_6
IL_a598: ldloc.s V_7
IL_a59a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a59f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a5a4: stloc.s V_6
IL_a5a6: ldloc.s V_6
IL_a5a8: ldloc.s V_10
IL_a5aa: bge.s IL_a5f4
IL_a5ac: ldloc.s V_7
IL_a5ae: call string [mscorlib]System.Convert::ToString(int32)
IL_a5b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a5b8: stloc.s V_9
IL_a5ba: ldloc.s V_10
IL_a5bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a5c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a5c6: stloc.s V_8
IL_a5c8: ldloc.s V_7
IL_a5ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a5cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a5d4: stloc.s V_10
IL_a5d6: ldloc.s V_8
IL_a5d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a5dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a5e2: stloc.s V_8
IL_a5e4: ldloc.s V_8
IL_a5e6: call string [mscorlib]System.Convert::ToString(int32)
IL_a5eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a5f0: stloc.s V_7
IL_a5f2: br.s IL_a63a
IL_a5f4: ldloc.s V_7
IL_a5f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a5fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a600: stloc.s V_6
IL_a602: ldloc.s V_9
IL_a604: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a609: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a60e: stloc.s V_8
IL_a610: ldloc.s V_9
IL_a612: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a617: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a61c: stloc.s V_6
IL_a61e: ldloc.s V_8
IL_a620: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a625: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a62a: stloc.s V_6
IL_a62c: ldloc.s V_6
IL_a62e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a633: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a638: stloc.s V_7
IL_a63a: ldloc.s V_9
IL_a63c: ldloc.s V_10
IL_a63e: bne.un.s IL_a688
IL_a640: ldloc.s V_10
IL_a642: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a647: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a64c: stloc.s V_9
IL_a64e: ldloc.s V_6
IL_a650: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a655: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a65a: stloc.s V_10
IL_a65c: ldloc.s V_10
IL_a65e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a663: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a668: stloc.s V_8
IL_a66a: ldloc.s V_10
IL_a66c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a671: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a676: stloc.s V_9
IL_a678: ldloc.s V_8
IL_a67a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a67f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a684: stloc.s V_8
IL_a686: br.s IL_a6ce
IL_a688: ldloc.s V_10
IL_a68a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a68f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a694: stloc.s V_6
IL_a696: ldloc.s V_10
IL_a698: call string [mscorlib]System.Convert::ToString(int32)
IL_a69d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6a2: stloc.s V_6
IL_a6a4: ldloc.s V_7
IL_a6a6: call string [mscorlib]System.Convert::ToString(int32)
IL_a6ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6b0: stloc.s V_6
IL_a6b2: ldloc.s V_8
IL_a6b4: call string [mscorlib]System.Convert::ToString(int32)
IL_a6b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6be: stloc.s V_9
IL_a6c0: ldloc.s V_10
IL_a6c2: call string [mscorlib]System.Convert::ToString(int32)
IL_a6c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6cc: stloc.s V_8
IL_a6ce: ldloc.s V_9
IL_a6d0: ldloc.s V_9
IL_a6d2: bge.s IL_a71c
IL_a6d4: ldloc.s V_8
IL_a6d6: call string [mscorlib]System.Convert::ToString(int32)
IL_a6db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6e0: stloc.s V_9
IL_a6e2: ldloc.s V_9
IL_a6e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a6e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a6ee: stloc.s V_9
IL_a6f0: ldloc.s V_6
IL_a6f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a6f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a6fc: stloc.s V_6
IL_a6fe: ldloc.s V_7
IL_a700: call string [mscorlib]System.Convert::ToString(int32)
IL_a705: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a70a: stloc.s V_10
IL_a70c: ldloc.s V_10
IL_a70e: call string [mscorlib]System.Convert::ToString(int32)
IL_a713: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a718: stloc.s V_10
IL_a71a: br.s IL_a762
IL_a71c: ldloc.s V_6
IL_a71e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a723: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a728: stloc.s V_6
IL_a72a: ldloc.s V_6
IL_a72c: call string [mscorlib]System.Convert::ToString(int32)
IL_a731: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a736: stloc.s V_6
IL_a738: ldloc.s V_8
IL_a73a: call string [mscorlib]System.Convert::ToString(int32)
IL_a73f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a744: stloc.s V_6
IL_a746: ldloc.s V_9
IL_a748: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a74d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a752: stloc.s V_9
IL_a754: ldloc.s V_9
IL_a756: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a75b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a760: stloc.s V_9
IL_a762: ldloc.s V_7
IL_a764: ldloc.s V_7
IL_a766: ble.s IL_a7b0
IL_a768: ldloc.s V_7
IL_a76a: call string [mscorlib]System.Convert::ToString(int32)
IL_a76f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a774: stloc.s V_7
IL_a776: ldloc.s V_9
IL_a778: call string [mscorlib]System.Convert::ToString(int32)
IL_a77d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a782: stloc.s V_10
IL_a784: ldloc.s V_9
IL_a786: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a78b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a790: stloc.s V_6
IL_a792: ldloc.s V_6
IL_a794: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a799: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a79e: stloc.s V_10
IL_a7a0: ldloc.s V_10
IL_a7a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a7a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a7ac: stloc.s V_10
IL_a7ae: br.s IL_a7f6
IL_a7b0: ldloc.s V_7
IL_a7b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a7b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a7bc: stloc.s V_8
IL_a7be: ldloc.s V_10
IL_a7c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a7c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a7ca: stloc.s V_10
IL_a7cc: ldloc.s V_10
IL_a7ce: call string [mscorlib]System.Convert::ToString(int32)
IL_a7d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a7d8: stloc.s V_9
IL_a7da: ldloc.s V_6
IL_a7dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a7e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a7e6: stloc.s V_6
IL_a7e8: ldloc.s V_10
IL_a7ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a7ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a7f4: stloc.s V_6
IL_a7f6: ldloc.s V_10
IL_a7f8: ldloc.s V_6
IL_a7fa: bge.s IL_a844
IL_a7fc: ldloc.s V_10
IL_a7fe: call string [mscorlib]System.Convert::ToString(int32)
IL_a803: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a808: stloc.s V_10
IL_a80a: ldloc.s V_9
IL_a80c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a811: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a816: stloc.s V_9
IL_a818: ldloc.s V_9
IL_a81a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a81f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a824: stloc.s V_7
IL_a826: ldloc.s V_8
IL_a828: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a82d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a832: stloc.s V_7
IL_a834: ldloc.s V_7
IL_a836: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a83b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a840: stloc.s V_7
IL_a842: br.s IL_a88a
IL_a844: ldloc.s V_9
IL_a846: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a84b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a850: stloc.s V_10
IL_a852: ldloc.s V_6
IL_a854: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a859: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a85e: stloc.s V_8
IL_a860: ldloc.s V_10
IL_a862: call string [mscorlib]System.Convert::ToString(int32)
IL_a867: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a86c: stloc.s V_7
IL_a86e: ldloc.s V_9
IL_a870: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a875: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a87a: stloc.s V_7
IL_a87c: ldloc.s V_9
IL_a87e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a883: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a888: stloc.s V_9
IL_a88a: ldloc.s V_8
IL_a88c: ldloc.s V_7
IL_a88e: bne.un.s IL_a8d8
IL_a890: ldloc.s V_7
IL_a892: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a897: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a89c: stloc.s V_10
IL_a89e: ldloc.s V_7
IL_a8a0: call string [mscorlib]System.Convert::ToString(int32)
IL_a8a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a8aa: stloc.s V_10
IL_a8ac: ldloc.s V_6
IL_a8ae: call string [mscorlib]System.Convert::ToString(int32)
IL_a8b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a8b8: stloc.s V_8
IL_a8ba: ldloc.s V_8
IL_a8bc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a8c1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a8c6: stloc.s V_7
IL_a8c8: ldloc.s V_6
IL_a8ca: call string [mscorlib]System.Convert::ToString(int32)
IL_a8cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a8d4: stloc.s V_8
IL_a8d6: br.s IL_a91e
IL_a8d8: ldloc.s V_6
IL_a8da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a8df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a8e4: stloc.s V_10
IL_a8e6: ldloc.s V_9
IL_a8e8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a8ed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a8f2: stloc.s V_7
IL_a8f4: ldloc.s V_6
IL_a8f6: call string [mscorlib]System.Convert::ToString(int32)
IL_a8fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a900: stloc.s V_6
IL_a902: ldloc.s V_7
IL_a904: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a909: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a90e: stloc.s V_6
IL_a910: ldloc.s V_10
IL_a912: call string [mscorlib]System.Convert::ToString(int32)
IL_a917: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a91c: stloc.s V_6
IL_a91e: ldloc.s V_8
IL_a920: ldloc.s V_9
IL_a922: beq.s IL_a96c
IL_a924: ldloc.s V_10
IL_a926: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a92b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a930: stloc.s V_6
IL_a932: ldloc.s V_8
IL_a934: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a939: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a93e: stloc.s V_10
IL_a940: ldloc.s V_9
IL_a942: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a947: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a94c: stloc.s V_7
IL_a94e: ldloc.s V_7
IL_a950: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a955: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a95a: stloc.s V_10
IL_a95c: ldloc.s V_7
IL_a95e: call string [mscorlib]System.Convert::ToString(int32)
IL_a963: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a968: stloc.s V_8
IL_a96a: br.s IL_a9b2
IL_a96c: ldloc.s V_10
IL_a96e: call string [mscorlib]System.Convert::ToString(int32)
IL_a973: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a978: stloc.s V_8
IL_a97a: ldloc.s V_8
IL_a97c: call string [mscorlib]System.Convert::ToString(int32)
IL_a981: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a986: stloc.s V_9
IL_a988: ldloc.s V_7
IL_a98a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a98f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a994: stloc.s V_9
IL_a996: ldloc.s V_7
IL_a998: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a99d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a9a2: stloc.s V_7
IL_a9a4: ldloc.s V_9
IL_a9a6: call string [mscorlib]System.Convert::ToString(int32)
IL_a9ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a9b0: stloc.s V_6
IL_a9b2: ldloc.s V_8
IL_a9b4: ldloc.s V_9
IL_a9b6: bge.s IL_aa00
IL_a9b8: ldloc.s V_6
IL_a9ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a9bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a9c4: stloc.s V_9
IL_a9c6: ldloc.s V_6
IL_a9c8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a9cd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a9d2: stloc.s V_7
IL_a9d4: ldloc.s V_6
IL_a9d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a9db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a9e0: stloc.s V_8
IL_a9e2: ldloc.s V_8
IL_a9e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a9e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a9ee: stloc.s V_10
IL_a9f0: ldloc.s V_9
IL_a9f2: call string [mscorlib]System.Convert::ToString(int32)
IL_a9f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a9fc: stloc.s V_9
IL_a9fe: br.s IL_aa46
IL_aa00: ldloc.s V_6
IL_aa02: call string [mscorlib]System.Convert::ToString(int32)
IL_aa07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa0c: stloc.s V_10
IL_aa0e: ldloc.s V_6
IL_aa10: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa15: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa1a: stloc.s V_6
IL_aa1c: ldloc.s V_9
IL_aa1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aa23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aa28: stloc.s V_6
IL_aa2a: ldloc.s V_7
IL_aa2c: call string [mscorlib]System.Convert::ToString(int32)
IL_aa31: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa36: stloc.s V_8
IL_aa38: ldloc.s V_7
IL_aa3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa44: stloc.s V_7
IL_aa46: ldloc.s V_9
IL_aa48: ldloc.s V_8
IL_aa4a: beq.s IL_aa94
IL_aa4c: ldloc.s V_7
IL_aa4e: call string [mscorlib]System.Convert::ToString(int32)
IL_aa53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa58: stloc.s V_8
IL_aa5a: ldloc.s V_9
IL_aa5c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa61: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa66: stloc.s V_6
IL_aa68: ldloc.s V_8
IL_aa6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa74: stloc.s V_9
IL_aa76: ldloc.s V_9
IL_aa78: call string [mscorlib]System.Convert::ToString(int32)
IL_aa7d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa82: stloc.s V_8
IL_aa84: ldloc.s V_7
IL_aa86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aa8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aa90: stloc.s V_10
IL_aa92: br.s IL_aada
IL_aa94: ldloc.s V_10
IL_aa96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aaa0: stloc.s V_8
IL_aaa2: ldloc.s V_7
IL_aaa4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aaa9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aaae: stloc.s V_9
IL_aab0: ldloc.s V_10
IL_aab2: call string [mscorlib]System.Convert::ToString(int32)
IL_aab7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aabc: stloc.s V_9
IL_aabe: ldloc.s V_7
IL_aac0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aac5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aaca: stloc.s V_8
IL_aacc: ldloc.s V_9
IL_aace: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aad3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aad8: stloc.s V_10
IL_aada: ldloc.s V_6
IL_aadc: ldloc.s V_8
IL_aade: bne.un.s IL_ab28
IL_aae0: ldloc.s V_10
IL_aae2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aae7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aaec: stloc.s V_10
IL_aaee: ldloc.s V_7
IL_aaf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aaf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aafa: stloc.s V_7
IL_aafc: ldloc.s V_10
IL_aafe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ab03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ab08: stloc.s V_7
IL_ab0a: ldloc.s V_10
IL_ab0c: call string [mscorlib]System.Convert::ToString(int32)
IL_ab11: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab16: stloc.s V_8
IL_ab18: ldloc.s V_7
IL_ab1a: call string [mscorlib]System.Convert::ToString(int32)
IL_ab1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab24: stloc.s V_10
IL_ab26: br.s IL_ab6e
IL_ab28: ldloc.s V_6
IL_ab2a: call string [mscorlib]System.Convert::ToString(int32)
IL_ab2f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab34: stloc.s V_10
IL_ab36: ldloc.s V_8
IL_ab38: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ab3d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ab42: stloc.s V_8
IL_ab44: ldloc.s V_6
IL_ab46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ab4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ab50: stloc.s V_7
IL_ab52: ldloc.s V_7
IL_ab54: call string [mscorlib]System.Convert::ToString(int32)
IL_ab59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab5e: stloc.s V_7
IL_ab60: ldloc.s V_10
IL_ab62: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ab67: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ab6c: stloc.s V_8
IL_ab6e: ldloc.s V_10
IL_ab70: ldloc.s V_8
IL_ab72: beq.s IL_abbc
IL_ab74: ldloc.s V_6
IL_ab76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ab7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ab80: stloc.s V_7
IL_ab82: ldloc.s V_7
IL_ab84: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ab89: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ab8e: stloc.s V_7
IL_ab90: ldloc.s V_10
IL_ab92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ab97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ab9c: stloc.s V_8
IL_ab9e: ldloc.s V_10
IL_aba0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aba5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_abaa: stloc.s V_7
IL_abac: ldloc.s V_7
IL_abae: call string [mscorlib]System.Convert::ToString(int32)
IL_abb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_abb8: stloc.s V_6
IL_abba: br.s IL_ac02
IL_abbc: ldloc.s V_8
IL_abbe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_abc3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_abc8: stloc.s V_10
IL_abca: ldloc.s V_6
IL_abcc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_abd1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_abd6: stloc.s V_9
IL_abd8: ldloc.s V_8
IL_abda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_abdf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_abe4: stloc.s V_10
IL_abe6: ldloc.s V_6
IL_abe8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_abed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_abf2: stloc.s V_10
IL_abf4: ldloc.s V_7
IL_abf6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_abfb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ac00: stloc.s V_6
IL_ac02: ldloc.s V_8
IL_ac04: ldloc.s V_10
IL_ac06: ble.s IL_ac50
IL_ac08: ldloc.s V_9
IL_ac0a: call string [mscorlib]System.Convert::ToString(int32)
IL_ac0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac14: stloc.s V_7
IL_ac16: ldloc.s V_8
IL_ac18: call string [mscorlib]System.Convert::ToString(int32)
IL_ac1d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac22: stloc.s V_6
IL_ac24: ldloc.s V_9
IL_ac26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ac2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ac30: stloc.s V_9
IL_ac32: ldloc.s V_8
IL_ac34: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ac39: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ac3e: stloc.s V_9
IL_ac40: ldloc.s V_6
IL_ac42: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ac47: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ac4c: stloc.s V_6
IL_ac4e: br.s IL_ac96
IL_ac50: ldloc.s V_6
IL_ac52: call string [mscorlib]System.Convert::ToString(int32)
IL_ac57: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac5c: stloc.s V_10
IL_ac5e: ldloc.s V_8
IL_ac60: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ac65: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ac6a: stloc.s V_7
IL_ac6c: ldloc.s V_6
IL_ac6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ac73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ac78: stloc.s V_8
IL_ac7a: ldloc.s V_6
IL_ac7c: call string [mscorlib]System.Convert::ToString(int32)
IL_ac81: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac86: stloc.s V_9
IL_ac88: ldloc.s V_9
IL_ac8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ac8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ac94: stloc.s V_6
IL_ac96: ldloc.s V_7
IL_ac98: ldloc.s V_9
IL_ac9a: bgt.s IL_ace4
IL_ac9c: ldloc.s V_10
IL_ac9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aca3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aca8: stloc.s V_6
IL_acaa: ldloc.s V_7
IL_acac: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_acb1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_acb6: stloc.s V_8
IL_acb8: ldloc.s V_8
IL_acba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_acbf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_acc4: stloc.s V_6
IL_acc6: ldloc.s V_10
IL_acc8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_accd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_acd2: stloc.s V_7
IL_acd4: ldloc.s V_9
IL_acd6: call string [mscorlib]System.Convert::ToString(int32)
IL_acdb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ace0: stloc.s V_6
IL_ace2: br.s IL_ad2a
IL_ace4: ldloc.s V_7
IL_ace6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aceb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_acf0: stloc.s V_6
IL_acf2: ldloc.s V_7
IL_acf4: call string [mscorlib]System.Convert::ToString(int32)
IL_acf9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_acfe: stloc.s V_7
IL_ad00: ldloc.s V_7
IL_ad02: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ad07: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ad0c: stloc.s V_7
IL_ad0e: ldloc.s V_6
IL_ad10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad1a: stloc.s V_9
IL_ad1c: ldloc.s V_8
IL_ad1e: call string [mscorlib]System.Convert::ToString(int32)
IL_ad23: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ad28: stloc.s V_7
IL_ad2a: ldloc.s V_6
IL_ad2c: ldloc.s V_8
IL_ad2e: beq.s IL_ad78
IL_ad30: ldloc.s V_8
IL_ad32: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ad37: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ad3c: stloc.s V_9
IL_ad3e: ldloc.s V_9
IL_ad40: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad45: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad4a: stloc.s V_7
IL_ad4c: ldloc.s V_7
IL_ad4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad58: stloc.s V_10
IL_ad5a: ldloc.s V_7
IL_ad5c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ad61: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ad66: stloc.s V_6
IL_ad68: ldloc.s V_10
IL_ad6a: call string [mscorlib]System.Convert::ToString(int32)
IL_ad6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ad74: stloc.s V_7
IL_ad76: br.s IL_adbe
IL_ad78: ldloc.s V_7
IL_ad7a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ad7f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ad84: stloc.s V_8
IL_ad86: ldloc.s V_9
IL_ad88: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad8d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad92: stloc.s V_8
IL_ad94: ldloc.s V_6
IL_ad96: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ad9b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ada0: stloc.s V_7
IL_ada2: ldloc.s V_7
IL_ada4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ada9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_adae: stloc.s V_9
IL_adb0: ldloc.s V_7
IL_adb2: call string [mscorlib]System.Convert::ToString(int32)
IL_adb7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_adbc: stloc.s V_7
IL_adbe: ldloc.s V_8
IL_adc0: ldloc.s V_6
IL_adc2: beq.s IL_ae0c
IL_adc4: ldloc.s V_10
IL_adc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_adcb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_add0: stloc.s V_7
IL_add2: ldloc.s V_9
IL_add4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_add9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_adde: stloc.s V_7
IL_ade0: ldloc.s V_7
IL_ade2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ade7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_adec: stloc.s V_8
IL_adee: ldloc.s V_9
IL_adf0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_adf5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_adfa: stloc.s V_6
IL_adfc: ldloc.s V_10
IL_adfe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ae03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ae08: stloc.s V_10
IL_ae0a: br.s IL_ae52
IL_ae0c: ldloc.s V_8
IL_ae0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ae13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ae18: stloc.s V_6
IL_ae1a: ldloc.s V_10
IL_ae1c: call string [mscorlib]System.Convert::ToString(int32)
IL_ae21: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae26: stloc.s V_6
IL_ae28: ldloc.s V_6
IL_ae2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ae2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ae34: stloc.s V_10
IL_ae36: ldloc.s V_8
IL_ae38: call string [mscorlib]System.Convert::ToString(int32)
IL_ae3d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae42: stloc.s V_8
IL_ae44: ldloc.s V_8
IL_ae46: call string [mscorlib]System.Convert::ToString(int32)
IL_ae4b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae50: stloc.s V_8
IL_ae52: ldloc.s V_6
IL_ae54: ldloc.s V_9
IL_ae56: beq.s IL_aea0
IL_ae58: ldloc.s V_8
IL_ae5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ae5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ae64: stloc.s V_7
IL_ae66: ldloc.s V_7
IL_ae68: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ae6d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ae72: stloc.s V_6
IL_ae74: ldloc.s V_10
IL_ae76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ae7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ae80: stloc.s V_8
IL_ae82: ldloc.s V_8
IL_ae84: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ae89: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ae8e: stloc.s V_7
IL_ae90: ldloc.s V_7
IL_ae92: call string [mscorlib]System.Convert::ToString(int32)
IL_ae97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae9c: stloc.s V_7
IL_ae9e: br.s IL_aee6
IL_aea0: ldloc.s V_10
IL_aea2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aea7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aeac: stloc.s V_8
IL_aeae: ldloc.s V_10
IL_aeb0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aeb5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aeba: stloc.s V_10
IL_aebc: ldloc.s V_9
IL_aebe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aec3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aec8: stloc.s V_7
IL_aeca: ldloc.s V_7
IL_aecc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aed1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aed6: stloc.s V_9
IL_aed8: ldloc.s V_10
IL_aeda: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aedf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aee4: stloc.s V_6
IL_aee6: ldloc.s V_6
IL_aee8: ldloc.s V_6
IL_aeea: bne.un.s IL_af34
IL_aeec: ldloc.s V_8
IL_aeee: call string [mscorlib]System.Convert::ToString(int32)
IL_aef3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aef8: stloc.s V_10
IL_aefa: ldloc.s V_9
IL_aefc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af06: stloc.s V_8
IL_af08: ldloc.s V_9
IL_af0a: call string [mscorlib]System.Convert::ToString(int32)
IL_af0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_af14: stloc.s V_7
IL_af16: ldloc.s V_6
IL_af18: call string [mscorlib]System.Convert::ToString(int32)
IL_af1d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_af22: stloc.s V_10
IL_af24: ldloc.s V_10
IL_af26: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af2b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af30: stloc.s V_8
IL_af32: br.s IL_af7a
IL_af34: ldloc.s V_8
IL_af36: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_af3b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_af40: stloc.s V_6
IL_af42: ldloc.s V_7
IL_af44: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af49: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af4e: stloc.s V_9
IL_af50: ldloc.s V_8
IL_af52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af5c: stloc.s V_10
IL_af5e: ldloc.s V_7
IL_af60: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_af65: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_af6a: stloc.s V_9
IL_af6c: ldloc.s V_10
IL_af6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_af73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_af78: stloc.s V_6
IL_af7a: ldloc.s V_8
IL_af7c: ldloc.s V_6
IL_af7e: beq.s IL_afc8
IL_af80: ldloc.s V_6
IL_af82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_af87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_af8c: stloc.s V_7
IL_af8e: ldloc.s V_10
IL_af90: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_af95: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_af9a: stloc.s V_10
IL_af9c: ldloc.s V_7
IL_af9e: call string [mscorlib]System.Convert::ToString(int32)
IL_afa3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_afa8: stloc.s V_6
IL_afaa: ldloc.s V_9
IL_afac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_afb1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_afb6: stloc.s V_7
IL_afb8: ldloc.s V_10
IL_afba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_afbf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_afc4: stloc.s V_9
IL_afc6: br.s IL_b00e
IL_afc8: ldloc.s V_6
IL_afca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_afcf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_afd4: stloc.s V_7
IL_afd6: ldloc.s V_6
IL_afd8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_afdd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_afe2: stloc.s V_8
IL_afe4: ldloc.s V_8
IL_afe6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_afeb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aff0: stloc.s V_10
IL_aff2: ldloc.s V_10
IL_aff4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aff9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_affe: stloc.s V_6
IL_b000: ldloc.s V_6
IL_b002: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b007: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b00c: stloc.s V_8
IL_b00e: ldloc.s V_10
IL_b010: ldloc.s V_6
IL_b012: bne.un.s IL_b05c
IL_b014: ldloc.s V_9
IL_b016: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b01b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b020: stloc.s V_10
IL_b022: ldloc.s V_6
IL_b024: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b029: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b02e: stloc.s V_9
IL_b030: ldloc.s V_7
IL_b032: call string [mscorlib]System.Convert::ToString(int32)
IL_b037: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b03c: stloc.s V_8
IL_b03e: ldloc.s V_9
IL_b040: call string [mscorlib]System.Convert::ToString(int32)
IL_b045: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b04a: stloc.s V_10
IL_b04c: ldloc.s V_7
IL_b04e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b053: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b058: stloc.s V_9
IL_b05a: br.s IL_b0a2
IL_b05c: ldloc.s V_8
IL_b05e: call string [mscorlib]System.Convert::ToString(int32)
IL_b063: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b068: stloc.s V_8
IL_b06a: ldloc.s V_7
IL_b06c: call string [mscorlib]System.Convert::ToString(int32)
IL_b071: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b076: stloc.s V_9
IL_b078: ldloc.s V_7
IL_b07a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b07f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b084: stloc.s V_6
IL_b086: ldloc.s V_6
IL_b088: call string [mscorlib]System.Convert::ToString(int32)
IL_b08d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b092: stloc.s V_8
IL_b094: ldloc.s V_8
IL_b096: call string [mscorlib]System.Convert::ToString(int32)
IL_b09b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b0a0: stloc.s V_6
IL_b0a2: ldloc.s V_8
IL_b0a4: ldloc.s V_7
IL_b0a6: bge.s IL_b0f0
IL_b0a8: ldloc.s V_10
IL_b0aa: call string [mscorlib]System.Convert::ToString(int32)
IL_b0af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b0b4: stloc.s V_8
IL_b0b6: ldloc.s V_9
IL_b0b8: call string [mscorlib]System.Convert::ToString(int32)
IL_b0bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b0c2: stloc.s V_6
IL_b0c4: ldloc.s V_8
IL_b0c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b0cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b0d0: stloc.s V_6
IL_b0d2: ldloc.s V_8
IL_b0d4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b0d9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b0de: stloc.s V_10
IL_b0e0: ldloc.s V_10
IL_b0e2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b0e7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b0ec: stloc.s V_10
IL_b0ee: br.s IL_b136
IL_b0f0: ldloc.s V_8
IL_b0f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b0f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b0fc: stloc.s V_9
IL_b0fe: ldloc.s V_8
IL_b100: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b105: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b10a: stloc.s V_9
IL_b10c: ldloc.s V_9
IL_b10e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b113: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b118: stloc.s V_9
IL_b11a: ldloc.s V_9
IL_b11c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b121: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b126: stloc.s V_8
IL_b128: ldloc.s V_6
IL_b12a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b12f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b134: stloc.s V_10
IL_b136: ldloc.s V_9
IL_b138: ldloc.s V_7
IL_b13a: bne.un.s IL_b184
IL_b13c: ldloc.s V_7
IL_b13e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b143: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b148: stloc.s V_8
IL_b14a: ldloc.s V_10
IL_b14c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b151: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b156: stloc.s V_7
IL_b158: ldloc.s V_8
IL_b15a: call string [mscorlib]System.Convert::ToString(int32)
IL_b15f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b164: stloc.s V_10
IL_b166: ldloc.s V_8
IL_b168: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b16d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b172: stloc.s V_10
IL_b174: ldloc.s V_8
IL_b176: call string [mscorlib]System.Convert::ToString(int32)
IL_b17b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b180: stloc.s V_9
IL_b182: br.s IL_b1ca
IL_b184: ldloc.s V_8
IL_b186: call string [mscorlib]System.Convert::ToString(int32)
IL_b18b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b190: stloc.s V_7
IL_b192: ldloc.s V_7
IL_b194: call string [mscorlib]System.Convert::ToString(int32)
IL_b199: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b19e: stloc.s V_10
IL_b1a0: ldloc.s V_9
IL_b1a2: call string [mscorlib]System.Convert::ToString(int32)
IL_b1a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b1ac: stloc.s V_10
IL_b1ae: ldloc.s V_8
IL_b1b0: call string [mscorlib]System.Convert::ToString(int32)
IL_b1b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b1ba: stloc.s V_6
IL_b1bc: ldloc.s V_9
IL_b1be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b1c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b1c8: stloc.s V_10
IL_b1ca: ldloc.s V_10
IL_b1cc: ldloc.s V_6
IL_b1ce: blt.s IL_b218
IL_b1d0: ldloc.s V_6
IL_b1d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b1d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b1dc: stloc.s V_7
IL_b1de: ldloc.s V_10
IL_b1e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b1e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b1ea: stloc.s V_8
IL_b1ec: ldloc.s V_7
IL_b1ee: call string [mscorlib]System.Convert::ToString(int32)
IL_b1f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b1f8: stloc.s V_8
IL_b1fa: ldloc.s V_9
IL_b1fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b201: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b206: stloc.s V_10
IL_b208: ldloc.s V_8
IL_b20a: call string [mscorlib]System.Convert::ToString(int32)
IL_b20f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b214: stloc.s V_7
IL_b216: br.s IL_b25e
IL_b218: ldloc.s V_10
IL_b21a: call string [mscorlib]System.Convert::ToString(int32)
IL_b21f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b224: stloc.s V_6
IL_b226: ldloc.s V_6
IL_b228: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b22d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b232: stloc.s V_9
IL_b234: ldloc.s V_8
IL_b236: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b23b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b240: stloc.s V_10
IL_b242: ldloc.s V_8
IL_b244: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b249: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b24e: stloc.s V_9
IL_b250: ldloc.s V_8
IL_b252: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b257: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b25c: stloc.s V_8
IL_b25e: ldloc.s V_9
IL_b260: ldloc.s V_7
IL_b262: beq.s IL_b2ac
IL_b264: ldloc.s V_7
IL_b266: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b26b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b270: stloc.s V_7
IL_b272: ldloc.s V_6
IL_b274: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b279: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b27e: stloc.s V_7
IL_b280: ldloc.s V_10
IL_b282: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b287: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b28c: stloc.s V_9
IL_b28e: ldloc.s V_10
IL_b290: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b295: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b29a: stloc.s V_10
IL_b29c: ldloc.s V_6
IL_b29e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b2a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b2a8: stloc.s V_10
IL_b2aa: br.s IL_b2f2
IL_b2ac: ldloc.s V_9
IL_b2ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b2b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b2b8: stloc.s V_6
IL_b2ba: ldloc.s V_6
IL_b2bc: call string [mscorlib]System.Convert::ToString(int32)
IL_b2c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b2c6: stloc.s V_10
IL_b2c8: ldloc.s V_10
IL_b2ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b2cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b2d4: stloc.s V_6
IL_b2d6: ldloc.s V_6
IL_b2d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b2dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b2e2: stloc.s V_8
IL_b2e4: ldloc.s V_9
IL_b2e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b2eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b2f0: stloc.s V_7
IL_b2f2: ldloc.s V_10
IL_b2f4: ldloc.s V_7
IL_b2f6: beq.s IL_b340
IL_b2f8: ldloc.s V_6
IL_b2fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b2ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b304: stloc.s V_8
IL_b306: ldloc.s V_9
IL_b308: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b30d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b312: stloc.s V_6
IL_b314: ldloc.s V_8
IL_b316: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b31b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b320: stloc.s V_9
IL_b322: ldloc.s V_8
IL_b324: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b329: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b32e: stloc.s V_7
IL_b330: ldloc.s V_7
IL_b332: call string [mscorlib]System.Convert::ToString(int32)
IL_b337: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b33c: stloc.s V_9
IL_b33e: br.s IL_b386
IL_b340: ldloc.s V_6
IL_b342: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b347: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b34c: stloc.s V_8
IL_b34e: ldloc.s V_10
IL_b350: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b355: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b35a: stloc.s V_10
IL_b35c: ldloc.s V_6
IL_b35e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b363: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b368: stloc.s V_6
IL_b36a: ldloc.s V_10
IL_b36c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b371: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b376: stloc.s V_8
IL_b378: ldloc.s V_7
IL_b37a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b37f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b384: stloc.s V_6
IL_b386: ldloc.s V_6
IL_b388: ldloc.s V_6
IL_b38a: ble.s IL_b3d4
IL_b38c: ldloc.s V_9
IL_b38e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b393: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b398: stloc.s V_9
IL_b39a: ldloc.s V_10
IL_b39c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3a6: stloc.s V_10
IL_b3a8: ldloc.s V_9
IL_b3aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b3af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b3b4: stloc.s V_10
IL_b3b6: ldloc.s V_8
IL_b3b8: call string [mscorlib]System.Convert::ToString(int32)
IL_b3bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b3c2: stloc.s V_8
IL_b3c4: ldloc.s V_6
IL_b3c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3d0: stloc.s V_8
IL_b3d2: br.s IL_b41a
IL_b3d4: ldloc.s V_8
IL_b3d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3e0: stloc.s V_9
IL_b3e2: ldloc.s V_10
IL_b3e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3ee: stloc.s V_9
IL_b3f0: ldloc.s V_9
IL_b3f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b3f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b3fc: stloc.s V_7
IL_b3fe: ldloc.s V_10
IL_b400: call string [mscorlib]System.Convert::ToString(int32)
IL_b405: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b40a: stloc.s V_6
IL_b40c: ldloc.s V_8
IL_b40e: call string [mscorlib]System.Convert::ToString(int32)
IL_b413: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b418: stloc.s V_10
IL_b41a: ldloc.s V_7
IL_b41c: ldloc.s V_10
IL_b41e: bge.s IL_b468
IL_b420: ldloc.s V_7
IL_b422: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b427: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b42c: stloc.s V_7
IL_b42e: ldloc.s V_9
IL_b430: call string [mscorlib]System.Convert::ToString(int32)
IL_b435: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b43a: stloc.s V_8
IL_b43c: ldloc.s V_10
IL_b43e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b443: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b448: stloc.s V_6
IL_b44a: ldloc.s V_8
IL_b44c: call string [mscorlib]System.Convert::ToString(int32)
IL_b451: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b456: stloc.s V_6
IL_b458: ldloc.s V_10
IL_b45a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b45f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b464: stloc.s V_8
IL_b466: br.s IL_b4ae
IL_b468: ldloc.s V_8
IL_b46a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b46f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b474: stloc.s V_10
IL_b476: ldloc.s V_6
IL_b478: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b47d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b482: stloc.s V_9
IL_b484: ldloc.s V_10
IL_b486: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b48b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b490: stloc.s V_6
IL_b492: ldloc.s V_7
IL_b494: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b499: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b49e: stloc.s V_6
IL_b4a0: ldloc.s V_9
IL_b4a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b4a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b4ac: stloc.s V_6
IL_b4ae: ldloc.s V_7
IL_b4b0: ldloc.s V_8
IL_b4b2: bge.s IL_b4fc
IL_b4b4: ldloc.s V_10
IL_b4b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b4bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b4c0: stloc.s V_9
IL_b4c2: ldloc.s V_7
IL_b4c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b4c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b4ce: stloc.s V_9
IL_b4d0: ldloc.s V_10
IL_b4d2: call string [mscorlib]System.Convert::ToString(int32)
IL_b4d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b4dc: stloc.s V_10
IL_b4de: ldloc.s V_10
IL_b4e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b4e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b4ea: stloc.s V_6
IL_b4ec: ldloc.s V_9
IL_b4ee: call string [mscorlib]System.Convert::ToString(int32)
IL_b4f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b4f8: stloc.s V_7
IL_b4fa: br.s IL_b542
IL_b4fc: ldloc.s V_6
IL_b4fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b503: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b508: stloc.s V_10
IL_b50a: ldloc.s V_9
IL_b50c: call string [mscorlib]System.Convert::ToString(int32)
IL_b511: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b516: stloc.s V_6
IL_b518: ldloc.s V_8
IL_b51a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b51f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b524: stloc.s V_9
IL_b526: ldloc.s V_9
IL_b528: call string [mscorlib]System.Convert::ToString(int32)
IL_b52d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b532: stloc.s V_7
IL_b534: ldloc.s V_6
IL_b536: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b53b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b540: stloc.s V_7
IL_b542: ldloc.s V_10
IL_b544: ldloc.s V_7
IL_b546: bge.s IL_b590
IL_b548: ldloc.s V_10
IL_b54a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b54f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b554: stloc.s V_6
IL_b556: ldloc.s V_6
IL_b558: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b55d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b562: stloc.s V_6
IL_b564: ldloc.s V_10
IL_b566: call string [mscorlib]System.Convert::ToString(int32)
IL_b56b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b570: stloc.s V_7
IL_b572: ldloc.s V_6
IL_b574: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b579: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b57e: stloc.s V_7
IL_b580: ldloc.s V_7
IL_b582: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b587: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b58c: stloc.s V_6
IL_b58e: br.s IL_b5d6
IL_b590: ldloc.s V_10
IL_b592: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b597: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b59c: stloc.s V_8
IL_b59e: ldloc.s V_9
IL_b5a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b5a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b5aa: stloc.s V_8
IL_b5ac: ldloc.s V_10
IL_b5ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b5b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b5b8: stloc.s V_9
IL_b5ba: ldloc.s V_9
IL_b5bc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b5c1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b5c6: stloc.s V_8
IL_b5c8: ldloc.s V_8
IL_b5ca: call string [mscorlib]System.Convert::ToString(int32)
IL_b5cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b5d4: stloc.s V_8
IL_b5d6: ldloc.s V_10
IL_b5d8: ldloc.s V_7
IL_b5da: bne.un.s IL_b624
IL_b5dc: ldloc.s V_9
IL_b5de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b5e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b5e8: stloc.s V_9
IL_b5ea: ldloc.s V_6
IL_b5ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b5f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b5f6: stloc.s V_10
IL_b5f8: ldloc.s V_10
IL_b5fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b5ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b604: stloc.s V_10
IL_b606: ldloc.s V_6
IL_b608: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b60d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b612: stloc.s V_10
IL_b614: ldloc.s V_9
IL_b616: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b61b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b620: stloc.s V_7
IL_b622: br.s IL_b66a
IL_b624: ldloc.s V_10
IL_b626: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b62b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b630: stloc.s V_8
IL_b632: ldloc.s V_9
IL_b634: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b639: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b63e: stloc.s V_6
IL_b640: ldloc.s V_10
IL_b642: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b647: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b64c: stloc.s V_8
IL_b64e: ldloc.s V_8
IL_b650: call string [mscorlib]System.Convert::ToString(int32)
IL_b655: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b65a: stloc.s V_10
IL_b65c: ldloc.s V_6
IL_b65e: call string [mscorlib]System.Convert::ToString(int32)
IL_b663: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b668: stloc.s V_8
IL_b66a: ldloc.s V_8
IL_b66c: ldloc.s V_7
IL_b66e: blt.s IL_b6b8
IL_b670: ldloc.s V_8
IL_b672: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b677: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b67c: stloc.s V_10
IL_b67e: ldloc.s V_7
IL_b680: call string [mscorlib]System.Convert::ToString(int32)
IL_b685: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b68a: stloc.s V_8
IL_b68c: ldloc.s V_7
IL_b68e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b693: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b698: stloc.s V_10
IL_b69a: ldloc.s V_9
IL_b69c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b6a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b6a6: stloc.s V_9
IL_b6a8: ldloc.s V_6
IL_b6aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b6af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b6b4: stloc.s V_9
IL_b6b6: br.s IL_b6fe
IL_b6b8: ldloc.s V_9
IL_b6ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b6bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b6c4: stloc.s V_10
IL_b6c6: ldloc.s V_6
IL_b6c8: call string [mscorlib]System.Convert::ToString(int32)
IL_b6cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b6d2: stloc.s V_8
IL_b6d4: ldloc.s V_10
IL_b6d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b6db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b6e0: stloc.s V_8
IL_b6e2: ldloc.s V_7
IL_b6e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b6e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b6ee: stloc.s V_9
IL_b6f0: ldloc.s V_6
IL_b6f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b6f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b6fc: stloc.s V_8
IL_b6fe: ldloc.s V_7
IL_b700: ldloc.s V_10
IL_b702: beq.s IL_b74c
IL_b704: ldloc.s V_10
IL_b706: call string [mscorlib]System.Convert::ToString(int32)
IL_b70b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b710: stloc.s V_10
IL_b712: ldloc.s V_6
IL_b714: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b719: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b71e: stloc.s V_6
IL_b720: ldloc.s V_7
IL_b722: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b727: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b72c: stloc.s V_8
IL_b72e: ldloc.s V_7
IL_b730: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b735: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b73a: stloc.s V_8
IL_b73c: ldloc.s V_8
IL_b73e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b743: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b748: stloc.s V_7
IL_b74a: br.s IL_b792
IL_b74c: ldloc.s V_9
IL_b74e: call string [mscorlib]System.Convert::ToString(int32)
IL_b753: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b758: stloc.s V_8
IL_b75a: ldloc.s V_10
IL_b75c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b761: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b766: stloc.s V_7
IL_b768: ldloc.s V_7
IL_b76a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b76f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b774: stloc.s V_7
IL_b776: ldloc.s V_9
IL_b778: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b77d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b782: stloc.s V_9
IL_b784: ldloc.s V_6
IL_b786: call string [mscorlib]System.Convert::ToString(int32)
IL_b78b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b790: stloc.s V_6
IL_b792: ldloc.s V_9
IL_b794: ldloc.s V_8
IL_b796: bge.s IL_b7e0
IL_b798: ldloc.s V_8
IL_b79a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b79f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b7a4: stloc.s V_9
IL_b7a6: ldloc.s V_6
IL_b7a8: call string [mscorlib]System.Convert::ToString(int32)
IL_b7ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b7b2: stloc.s V_6
IL_b7b4: ldloc.s V_8
IL_b7b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b7bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b7c0: stloc.s V_8
IL_b7c2: ldloc.s V_6
IL_b7c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b7c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b7ce: stloc.s V_9
IL_b7d0: ldloc.s V_10
IL_b7d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b7d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b7dc: stloc.s V_9
IL_b7de: br.s IL_b826
IL_b7e0: ldloc.s V_9
IL_b7e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b7e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b7ec: stloc.s V_9
IL_b7ee: ldloc.s V_8
IL_b7f0: call string [mscorlib]System.Convert::ToString(int32)
IL_b7f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b7fa: stloc.s V_8
IL_b7fc: ldloc.s V_7
IL_b7fe: call string [mscorlib]System.Convert::ToString(int32)
IL_b803: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b808: stloc.s V_10
IL_b80a: ldloc.s V_6
IL_b80c: call string [mscorlib]System.Convert::ToString(int32)
IL_b811: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b816: stloc.s V_9
IL_b818: ldloc.s V_9
IL_b81a: call string [mscorlib]System.Convert::ToString(int32)
IL_b81f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b824: stloc.s V_8
IL_b826: ldloc.s V_6
IL_b828: ldloc.s V_6
IL_b82a: bge.s IL_b874
IL_b82c: ldloc.s V_7
IL_b82e: call string [mscorlib]System.Convert::ToString(int32)
IL_b833: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b838: stloc.s V_9
IL_b83a: ldloc.s V_6
IL_b83c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b841: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b846: stloc.s V_6
IL_b848: ldloc.s V_10
IL_b84a: call string [mscorlib]System.Convert::ToString(int32)
IL_b84f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b854: stloc.s V_8
IL_b856: ldloc.s V_7
IL_b858: call string [mscorlib]System.Convert::ToString(int32)
IL_b85d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b862: stloc.s V_8
IL_b864: ldloc.s V_7
IL_b866: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b86b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b870: stloc.s V_6
IL_b872: br.s IL_b8ba
IL_b874: ldloc.s V_9
IL_b876: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b87b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b880: stloc.s V_10
IL_b882: ldloc.s V_6
IL_b884: call string [mscorlib]System.Convert::ToString(int32)
IL_b889: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b88e: stloc.s V_7
IL_b890: ldloc.s V_6
IL_b892: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b897: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b89c: stloc.s V_6
IL_b89e: ldloc.s V_6
IL_b8a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b8a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b8aa: stloc.s V_7
IL_b8ac: ldloc.s V_8
IL_b8ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b8b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b8b8: stloc.s V_6
IL_b8ba: ldloc.s V_7
IL_b8bc: ldloc.s V_10
IL_b8be: bne.un.s IL_b908
IL_b8c0: ldloc.s V_10
IL_b8c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b8c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b8cc: stloc.s V_6
IL_b8ce: ldloc.s V_8
IL_b8d0: call string [mscorlib]System.Convert::ToString(int32)
IL_b8d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b8da: stloc.s V_8
IL_b8dc: ldloc.s V_10
IL_b8de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b8e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b8e8: stloc.s V_9
IL_b8ea: ldloc.s V_6
IL_b8ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b8f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b8f6: stloc.s V_9
IL_b8f8: ldloc.s V_9
IL_b8fa: call string [mscorlib]System.Convert::ToString(int32)
IL_b8ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b904: stloc.s V_10
IL_b906: br.s IL_b94e
IL_b908: ldloc.s V_6
IL_b90a: call string [mscorlib]System.Convert::ToString(int32)
IL_b90f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b914: stloc.s V_9
IL_b916: ldloc.s V_8
IL_b918: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b91d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b922: stloc.s V_6
IL_b924: ldloc.s V_9
IL_b926: call string [mscorlib]System.Convert::ToString(int32)
IL_b92b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b930: stloc.s V_10
IL_b932: ldloc.s V_6
IL_b934: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b939: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b93e: stloc.s V_6
IL_b940: ldloc.s V_9
IL_b942: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b947: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b94c: stloc.s V_10
IL_b94e: ldloc.s V_9
IL_b950: ldloc.s V_6
IL_b952: blt.s IL_b99c
IL_b954: ldloc.s V_6
IL_b956: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b95b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b960: stloc.s V_7
IL_b962: ldloc.s V_9
IL_b964: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b969: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b96e: stloc.s V_8
IL_b970: ldloc.s V_9
IL_b972: call string [mscorlib]System.Convert::ToString(int32)
IL_b977: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b97c: stloc.s V_7
IL_b97e: ldloc.s V_7
IL_b980: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b985: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b98a: stloc.s V_7
IL_b98c: ldloc.s V_10
IL_b98e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b993: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b998: stloc.s V_10
IL_b99a: br.s IL_b9e2
IL_b99c: ldloc.s V_8
IL_b99e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b9a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b9a8: stloc.s V_8
IL_b9aa: ldloc.s V_8
IL_b9ac: call string [mscorlib]System.Convert::ToString(int32)
IL_b9b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b9b6: stloc.s V_7
IL_b9b8: ldloc.s V_7
IL_b9ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b9bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b9c4: stloc.s V_8
IL_b9c6: ldloc.s V_10
IL_b9c8: call string [mscorlib]System.Convert::ToString(int32)
IL_b9cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b9d2: stloc.s V_7
IL_b9d4: ldloc.s V_8
IL_b9d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b9db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b9e0: stloc.s V_7
IL_b9e2: ldloc.s V_7
IL_b9e4: ldloc.s V_9
IL_b9e6: bge.s IL_ba30
IL_b9e8: ldloc.s V_8
IL_b9ea: call string [mscorlib]System.Convert::ToString(int32)
IL_b9ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b9f4: stloc.s V_6
IL_b9f6: ldloc.s V_7
IL_b9f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b9fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ba02: stloc.s V_9
IL_ba04: ldloc.s V_7
IL_ba06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba10: stloc.s V_7
IL_ba12: ldloc.s V_6
IL_ba14: call string [mscorlib]System.Convert::ToString(int32)
IL_ba19: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ba1e: stloc.s V_9
IL_ba20: ldloc.s V_8
IL_ba22: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ba27: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ba2c: stloc.s V_7
IL_ba2e: br.s IL_ba76
IL_ba30: ldloc.s V_6
IL_ba32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ba37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ba3c: stloc.s V_7
IL_ba3e: ldloc.s V_6
IL_ba40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba4a: stloc.s V_6
IL_ba4c: ldloc.s V_6
IL_ba4e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba53: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba58: stloc.s V_9
IL_ba5a: ldloc.s V_10
IL_ba5c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ba61: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ba66: stloc.s V_9
IL_ba68: ldloc.s V_10
IL_ba6a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba6f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba74: stloc.s V_10
IL_ba76: ldloc.s V_6
IL_ba78: ldloc.s V_7
IL_ba7a: ble.s IL_bac4
IL_ba7c: ldloc.s V_9
IL_ba7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba88: stloc.s V_9
IL_ba8a: ldloc.s V_6
IL_ba8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba96: stloc.s V_7
IL_ba98: ldloc.s V_9
IL_ba9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_baa4: stloc.s V_7
IL_baa6: ldloc.s V_8
IL_baa8: call string [mscorlib]System.Convert::ToString(int32)
IL_baad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bab2: stloc.s V_6
IL_bab4: ldloc.s V_8
IL_bab6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_babb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bac0: stloc.s V_6
IL_bac2: br.s IL_bb0a
IL_bac4: ldloc.s V_8
IL_bac6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bacb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bad0: stloc.s V_7
IL_bad2: ldloc.s V_7
IL_bad4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bad9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bade: stloc.s V_8
IL_bae0: ldloc.s V_9
IL_bae2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bae7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_baec: stloc.s V_8
IL_baee: ldloc.s V_6
IL_baf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_baf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bafa: stloc.s V_8
IL_bafc: ldloc.s V_10
IL_bafe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bb03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bb08: stloc.s V_8
IL_bb0a: ldloc.s V_9
IL_bb0c: ldloc.s V_8
IL_bb0e: bgt.s IL_bb58
IL_bb10: ldloc.s V_6
IL_bb12: call string [mscorlib]System.Convert::ToString(int32)
IL_bb17: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb1c: stloc.s V_10
IL_bb1e: ldloc.s V_8
IL_bb20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bb25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bb2a: stloc.s V_9
IL_bb2c: ldloc.s V_6
IL_bb2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bb33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bb38: stloc.s V_6
IL_bb3a: ldloc.s V_6
IL_bb3c: call string [mscorlib]System.Convert::ToString(int32)
IL_bb41: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb46: stloc.s V_8
IL_bb48: ldloc.s V_7
IL_bb4a: call string [mscorlib]System.Convert::ToString(int32)
IL_bb4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb54: stloc.s V_8
IL_bb56: br.s IL_bb9e
IL_bb58: ldloc.s V_10
IL_bb5a: call string [mscorlib]System.Convert::ToString(int32)
IL_bb5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb64: stloc.s V_7
IL_bb66: ldloc.s V_10
IL_bb68: call string [mscorlib]System.Convert::ToString(int32)
IL_bb6d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb72: stloc.s V_7
IL_bb74: ldloc.s V_8
IL_bb76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bb7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bb80: stloc.s V_10
IL_bb82: ldloc.s V_6
IL_bb84: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bb89: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bb8e: stloc.s V_10
IL_bb90: ldloc.s V_8
IL_bb92: call string [mscorlib]System.Convert::ToString(int32)
IL_bb97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb9c: stloc.s V_6
IL_bb9e: ldloc.s V_8
IL_bba0: ldloc.s V_6
IL_bba2: bne.un.s IL_bbec
IL_bba4: ldloc.s V_7
IL_bba6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bbab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bbb0: stloc.s V_10
IL_bbb2: ldloc.s V_6
IL_bbb4: call string [mscorlib]System.Convert::ToString(int32)
IL_bbb9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bbbe: stloc.s V_7
IL_bbc0: ldloc.s V_7
IL_bbc2: call string [mscorlib]System.Convert::ToString(int32)
IL_bbc7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bbcc: stloc.s V_6
IL_bbce: ldloc.s V_9
IL_bbd0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bbd5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bbda: stloc.s V_7
IL_bbdc: ldloc.s V_7
IL_bbde: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bbe3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bbe8: stloc.s V_8
IL_bbea: br.s IL_bc32
IL_bbec: ldloc.s V_10
IL_bbee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bbf3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bbf8: stloc.s V_9
IL_bbfa: ldloc.s V_10
IL_bbfc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bc01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bc06: stloc.s V_6
IL_bc08: ldloc.s V_7
IL_bc0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bc0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bc14: stloc.s V_8
IL_bc16: ldloc.s V_6
IL_bc18: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bc1d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bc22: stloc.s V_8
IL_bc24: ldloc.s V_6
IL_bc26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bc2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bc30: stloc.s V_7
IL_bc32: ldloc.s V_9
IL_bc34: ldloc.s V_6
IL_bc36: bgt.s IL_bc80
IL_bc38: ldloc.s V_7
IL_bc3a: call string [mscorlib]System.Convert::ToString(int32)
IL_bc3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bc44: stloc.s V_6
IL_bc46: ldloc.s V_10
IL_bc48: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bc4d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bc52: stloc.s V_10
IL_bc54: ldloc.s V_6
IL_bc56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bc5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bc60: stloc.s V_10
IL_bc62: ldloc.s V_6
IL_bc64: call string [mscorlib]System.Convert::ToString(int32)
IL_bc69: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bc6e: stloc.s V_9
IL_bc70: ldloc.s V_6
IL_bc72: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bc77: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bc7c: stloc.s V_10
IL_bc7e: br.s IL_bcc6
IL_bc80: ldloc.s V_9
IL_bc82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bc87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bc8c: stloc.s V_10
IL_bc8e: ldloc.s V_7
IL_bc90: call string [mscorlib]System.Convert::ToString(int32)
IL_bc95: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bc9a: stloc.s V_8
IL_bc9c: ldloc.s V_7
IL_bc9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bca3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bca8: stloc.s V_6
IL_bcaa: ldloc.s V_9
IL_bcac: call string [mscorlib]System.Convert::ToString(int32)
IL_bcb1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bcb6: stloc.s V_6
IL_bcb8: ldloc.s V_8
IL_bcba: call string [mscorlib]System.Convert::ToString(int32)
IL_bcbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bcc4: stloc.s V_6
IL_bcc6: ldloc.s V_9
IL_bcc8: ldloc.s V_8
IL_bcca: ble.s IL_bd14
IL_bccc: ldloc.s V_7
IL_bcce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bcd3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bcd8: stloc.s V_9
IL_bcda: ldloc.s V_6
IL_bcdc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bce1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bce6: stloc.s V_10
IL_bce8: ldloc.s V_10
IL_bcea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bcef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bcf4: stloc.s V_10
IL_bcf6: ldloc.s V_7
IL_bcf8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bcfd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd02: stloc.s V_10
IL_bd04: ldloc.s V_8
IL_bd06: call string [mscorlib]System.Convert::ToString(int32)
IL_bd0b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bd10: stloc.s V_7
IL_bd12: br.s IL_bd5a
IL_bd14: ldloc.s V_9
IL_bd16: call string [mscorlib]System.Convert::ToString(int32)
IL_bd1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bd20: stloc.s V_6
IL_bd22: ldloc.s V_10
IL_bd24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd2e: stloc.s V_8
IL_bd30: ldloc.s V_7
IL_bd32: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bd37: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bd3c: stloc.s V_9
IL_bd3e: ldloc.s V_8
IL_bd40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd4a: stloc.s V_6
IL_bd4c: ldloc.s V_8
IL_bd4e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd53: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd58: stloc.s V_7
IL_bd5a: ldloc.s V_9
IL_bd5c: ldloc.s V_10
IL_bd5e: bgt.s IL_bda8
IL_bd60: ldloc.s V_10
IL_bd62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bd67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bd6c: stloc.s V_9
IL_bd6e: ldloc.s V_8
IL_bd70: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd75: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd7a: stloc.s V_9
IL_bd7c: ldloc.s V_8
IL_bd7e: call string [mscorlib]System.Convert::ToString(int32)
IL_bd83: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bd88: stloc.s V_9
IL_bd8a: ldloc.s V_8
IL_bd8c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bd91: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bd96: stloc.s V_8
IL_bd98: ldloc.s V_10
IL_bd9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bda4: stloc.s V_10
IL_bda6: br.s IL_bdee
IL_bda8: ldloc.s V_6
IL_bdaa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bdaf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bdb4: stloc.s V_6
IL_bdb6: ldloc.s V_10
IL_bdb8: call string [mscorlib]System.Convert::ToString(int32)
IL_bdbd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bdc2: stloc.s V_10
IL_bdc4: ldloc.s V_8
IL_bdc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bdcb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bdd0: stloc.s V_8
IL_bdd2: ldloc.s V_10
IL_bdd4: call string [mscorlib]System.Convert::ToString(int32)
IL_bdd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bdde: stloc.s V_10
IL_bde0: ldloc.s V_8
IL_bde2: call string [mscorlib]System.Convert::ToString(int32)
IL_bde7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bdec: stloc.s V_8
IL_bdee: ldloc.s V_7
IL_bdf0: ldloc.s V_6
IL_bdf2: blt.s IL_be3c
IL_bdf4: ldloc.s V_8
IL_bdf6: call string [mscorlib]System.Convert::ToString(int32)
IL_bdfb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_be00: stloc.s V_8
IL_be02: ldloc.s V_9
IL_be04: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_be09: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_be0e: stloc.s V_9
IL_be10: ldloc.s V_7
IL_be12: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_be17: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_be1c: stloc.s V_7
IL_be1e: ldloc.s V_9
IL_be20: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be25: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be2a: stloc.s V_8
IL_be2c: ldloc.s V_6
IL_be2e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_be33: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_be38: stloc.s V_9
IL_be3a: br.s IL_be82
IL_be3c: ldloc.s V_10
IL_be3e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be43: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be48: stloc.s V_8
IL_be4a: ldloc.s V_6
IL_be4c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_be51: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_be56: stloc.s V_7
IL_be58: ldloc.s V_6
IL_be5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be64: stloc.s V_6
IL_be66: ldloc.s V_7
IL_be68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_be6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_be72: stloc.s V_7
IL_be74: ldloc.s V_10
IL_be76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be80: stloc.s V_8
IL_be82: ldloc.s V_6
IL_be84: ldloc.s V_10
IL_be86: beq.s IL_bed0
IL_be88: ldloc.s V_7
IL_be8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_be8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_be94: stloc.s V_8
IL_be96: ldloc.s V_9
IL_be98: call string [mscorlib]System.Convert::ToString(int32)
IL_be9d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bea2: stloc.s V_7
IL_bea4: ldloc.s V_9
IL_bea6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_beab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_beb0: stloc.s V_8
IL_beb2: ldloc.s V_9
IL_beb4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_beb9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bebe: stloc.s V_8
IL_bec0: ldloc.s V_8
IL_bec2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bec7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_becc: stloc.s V_9
IL_bece: br.s IL_bf16
IL_bed0: ldloc.s V_9
IL_bed2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bed7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bedc: stloc.s V_9
IL_bede: ldloc.s V_8
IL_bee0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bee5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_beea: stloc.s V_8
IL_beec: ldloc.s V_7
IL_beee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bef3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bef8: stloc.s V_10
IL_befa: ldloc.s V_8
IL_befc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bf01: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bf06: stloc.s V_8
IL_bf08: ldloc.s V_10
IL_bf0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bf0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bf14: stloc.s V_7
IL_bf16: ldloc.s V_8
IL_bf18: ldloc.s V_7
IL_bf1a: blt.s IL_bf64
IL_bf1c: ldloc.s V_10
IL_bf1e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bf23: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bf28: stloc.s V_10
IL_bf2a: ldloc.s V_8
IL_bf2c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bf31: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bf36: stloc.s V_10
IL_bf38: ldloc.s V_7
IL_bf3a: call string [mscorlib]System.Convert::ToString(int32)
IL_bf3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf44: stloc.s V_6
IL_bf46: ldloc.s V_7
IL_bf48: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bf4d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bf52: stloc.s V_8
IL_bf54: ldloc.s V_8
IL_bf56: call string [mscorlib]System.Convert::ToString(int32)
IL_bf5b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf60: stloc.s V_7
IL_bf62: br.s IL_bfaa
IL_bf64: ldloc.s V_10
IL_bf66: call string [mscorlib]System.Convert::ToString(int32)
IL_bf6b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf70: stloc.s V_10
IL_bf72: ldloc.s V_10
IL_bf74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bf79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bf7e: stloc.s V_7
IL_bf80: ldloc.s V_10
IL_bf82: call string [mscorlib]System.Convert::ToString(int32)
IL_bf87: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf8c: stloc.s V_8
IL_bf8e: ldloc.s V_7
IL_bf90: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bf95: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bf9a: stloc.s V_10
IL_bf9c: ldloc.s V_9
IL_bf9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bfa3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bfa8: stloc.s V_6
IL_bfaa: ldloc.s V_6
IL_bfac: ldloc.s V_7
IL_bfae: beq.s IL_bff8
IL_bfb0: ldloc.s V_6
IL_bfb2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bfb7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bfbc: stloc.s V_8
IL_bfbe: ldloc.s V_10
IL_bfc0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bfc5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bfca: stloc.s V_8
IL_bfcc: ldloc.s V_7
IL_bfce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bfd3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bfd8: stloc.s V_6
IL_bfda: ldloc.s V_6
IL_bfdc: call string [mscorlib]System.Convert::ToString(int32)
IL_bfe1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bfe6: stloc.s V_6
IL_bfe8: ldloc.s V_8
IL_bfea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bfef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bff4: stloc.s V_6
IL_bff6: br.s IL_c03e
IL_bff8: ldloc.s V_6
IL_bffa: call string [mscorlib]System.Convert::ToString(int32)
IL_bfff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c004: stloc.s V_6
IL_c006: ldloc.s V_6
IL_c008: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c00d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c012: stloc.s V_10
IL_c014: ldloc.s V_9
IL_c016: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c01b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c020: stloc.s V_7
IL_c022: ldloc.s V_7
IL_c024: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c029: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c02e: stloc.s V_6
IL_c030: ldloc.s V_8
IL_c032: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c037: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c03c: stloc.s V_7
IL_c03e: ldloc.s V_8
IL_c040: ldloc.s V_7
IL_c042: bgt.s IL_c08c
IL_c044: ldloc.s V_10
IL_c046: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c04b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c050: stloc.s V_10
IL_c052: ldloc.s V_10
IL_c054: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c059: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c05e: stloc.s V_7
IL_c060: ldloc.s V_10
IL_c062: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c067: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c06c: stloc.s V_10
IL_c06e: ldloc.s V_6
IL_c070: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c075: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c07a: stloc.s V_8
IL_c07c: ldloc.s V_10
IL_c07e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c083: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c088: stloc.s V_10
IL_c08a: br.s IL_c0d2
IL_c08c: ldloc.s V_9
IL_c08e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c093: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c098: stloc.s V_9
IL_c09a: ldloc.s V_10
IL_c09c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c0a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c0a6: stloc.s V_8
IL_c0a8: ldloc.s V_8
IL_c0aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c0af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c0b4: stloc.s V_6
IL_c0b6: ldloc.s V_9
IL_c0b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c0bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c0c2: stloc.s V_8
IL_c0c4: ldloc.s V_7
IL_c0c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c0cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c0d0: stloc.s V_9
IL_c0d2: ldloc.s V_8
IL_c0d4: ldloc.s V_10
IL_c0d6: bne.un.s IL_c120
IL_c0d8: ldloc.s V_7
IL_c0da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c0df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c0e4: stloc.s V_9
IL_c0e6: ldloc.s V_6
IL_c0e8: call string [mscorlib]System.Convert::ToString(int32)
IL_c0ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c0f2: stloc.s V_9
IL_c0f4: ldloc.s V_6
IL_c0f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c0fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c100: stloc.s V_7
IL_c102: ldloc.s V_6
IL_c104: call string [mscorlib]System.Convert::ToString(int32)
IL_c109: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c10e: stloc.s V_6
IL_c110: ldloc.s V_7
IL_c112: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c117: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c11c: stloc.s V_9
IL_c11e: br.s IL_c166
IL_c120: ldloc.s V_10
IL_c122: call string [mscorlib]System.Convert::ToString(int32)
IL_c127: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c12c: stloc.s V_7
IL_c12e: ldloc.s V_9
IL_c130: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c135: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c13a: stloc.s V_10
IL_c13c: ldloc.s V_8
IL_c13e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c143: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c148: stloc.s V_8
IL_c14a: ldloc.s V_10
IL_c14c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c151: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c156: stloc.s V_7
IL_c158: ldloc.s V_6
IL_c15a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c15f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c164: stloc.s V_6
IL_c166: ldloc.s V_9
IL_c168: ldloc.s V_9
IL_c16a: bne.un.s IL_c1b4
IL_c16c: ldloc.s V_8
IL_c16e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c173: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c178: stloc.s V_6
IL_c17a: ldloc.s V_8
IL_c17c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c181: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c186: stloc.s V_8
IL_c188: ldloc.s V_10
IL_c18a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c18f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c194: stloc.s V_8
IL_c196: ldloc.s V_8
IL_c198: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c19d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c1a2: stloc.s V_9
IL_c1a4: ldloc.s V_7
IL_c1a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c1ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c1b0: stloc.s V_7
IL_c1b2: br.s IL_c1fa
IL_c1b4: ldloc.s V_7
IL_c1b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c1bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c1c0: stloc.s V_8
IL_c1c2: ldloc.s V_7
IL_c1c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c1c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c1ce: stloc.s V_7
IL_c1d0: ldloc.s V_8
IL_c1d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c1d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c1dc: stloc.s V_7
IL_c1de: ldloc.s V_9
IL_c1e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c1e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c1ea: stloc.s V_9
IL_c1ec: ldloc.s V_10
IL_c1ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c1f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c1f8: stloc.s V_7
IL_c1fa: ldloc.s V_8
IL_c1fc: ldloc.s V_6
IL_c1fe: ble.s IL_c248
IL_c200: ldloc.s V_10
IL_c202: call string [mscorlib]System.Convert::ToString(int32)
IL_c207: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c20c: stloc.s V_7
IL_c20e: ldloc.s V_9
IL_c210: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c215: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c21a: stloc.s V_9
IL_c21c: ldloc.s V_6
IL_c21e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c223: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c228: stloc.s V_8
IL_c22a: ldloc.s V_9
IL_c22c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c231: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c236: stloc.s V_9
IL_c238: ldloc.s V_6
IL_c23a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c23f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c244: stloc.s V_10
IL_c246: br.s IL_c28e
IL_c248: ldloc.s V_9
IL_c24a: call string [mscorlib]System.Convert::ToString(int32)
IL_c24f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c254: stloc.s V_8
IL_c256: ldloc.s V_9
IL_c258: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c25d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c262: stloc.s V_9
IL_c264: ldloc.s V_6
IL_c266: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c26b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c270: stloc.s V_8
IL_c272: ldloc.s V_8
IL_c274: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c279: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c27e: stloc.s V_6
IL_c280: ldloc.s V_9
IL_c282: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c287: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c28c: stloc.s V_9
IL_c28e: ldloc.s V_9
IL_c290: ldloc.s V_8
IL_c292: beq.s IL_c2dc
IL_c294: ldloc.s V_7
IL_c296: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c29b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2a0: stloc.s V_8
IL_c2a2: ldloc.s V_9
IL_c2a4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2a9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2ae: stloc.s V_8
IL_c2b0: ldloc.s V_9
IL_c2b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2bc: stloc.s V_9
IL_c2be: ldloc.s V_7
IL_c2c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c2c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c2ca: stloc.s V_7
IL_c2cc: ldloc.s V_7
IL_c2ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2d8: stloc.s V_9
IL_c2da: br.s IL_c322
IL_c2dc: ldloc.s V_10
IL_c2de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2e8: stloc.s V_9
IL_c2ea: ldloc.s V_7
IL_c2ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c2f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c2f6: stloc.s V_7
IL_c2f8: ldloc.s V_9
IL_c2fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c304: stloc.s V_7
IL_c306: ldloc.s V_10
IL_c308: call string [mscorlib]System.Convert::ToString(int32)
IL_c30d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c312: stloc.s V_10
IL_c314: ldloc.s V_6
IL_c316: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c31b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c320: stloc.s V_6
IL_c322: ldloc.s V_9
IL_c324: ldloc.s V_6
IL_c326: blt.s IL_c370
IL_c328: ldloc.s V_6
IL_c32a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c32f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c334: stloc.s V_7
IL_c336: ldloc.s V_9
IL_c338: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c33d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c342: stloc.s V_10
IL_c344: ldloc.s V_8
IL_c346: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c34b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c350: stloc.s V_10
IL_c352: ldloc.s V_8
IL_c354: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c359: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c35e: stloc.s V_6
IL_c360: ldloc.s V_10
IL_c362: call string [mscorlib]System.Convert::ToString(int32)
IL_c367: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c36c: stloc.s V_10
IL_c36e: br.s IL_c3b6
IL_c370: ldloc.s V_8
IL_c372: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c377: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c37c: stloc.s V_7
IL_c37e: ldloc.s V_7
IL_c380: call string [mscorlib]System.Convert::ToString(int32)
IL_c385: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c38a: stloc.s V_10
IL_c38c: ldloc.s V_10
IL_c38e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c393: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c398: stloc.s V_7
IL_c39a: ldloc.s V_7
IL_c39c: call string [mscorlib]System.Convert::ToString(int32)
IL_c3a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c3a6: stloc.s V_8
IL_c3a8: ldloc.s V_10
IL_c3aa: call string [mscorlib]System.Convert::ToString(int32)
IL_c3af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c3b4: stloc.s V_9
IL_c3b6: ldloc.s V_10
IL_c3b8: ldloc.s V_9
IL_c3ba: bgt.s IL_c404
IL_c3bc: ldloc.s V_8
IL_c3be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c3c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c3c8: stloc.s V_6
IL_c3ca: ldloc.s V_9
IL_c3cc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c3d1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c3d6: stloc.s V_6
IL_c3d8: ldloc.s V_6
IL_c3da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c3df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c3e4: stloc.s V_6
IL_c3e6: ldloc.s V_9
IL_c3e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c3ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c3f2: stloc.s V_9
IL_c3f4: ldloc.s V_10
IL_c3f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c3fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c400: stloc.s V_7
IL_c402: br.s IL_c44a
IL_c404: ldloc.s V_10
IL_c406: call string [mscorlib]System.Convert::ToString(int32)
IL_c40b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c410: stloc.s V_6
IL_c412: ldloc.s V_6
IL_c414: call string [mscorlib]System.Convert::ToString(int32)
IL_c419: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c41e: stloc.s V_9
IL_c420: ldloc.s V_6
IL_c422: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c427: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c42c: stloc.s V_10
IL_c42e: ldloc.s V_8
IL_c430: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c435: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c43a: stloc.s V_6
IL_c43c: ldloc.s V_8
IL_c43e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c443: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c448: stloc.s V_8
IL_c44a: ldloc.s V_8
IL_c44c: ldloc.s V_8
IL_c44e: bgt.s IL_c498
IL_c450: ldloc.s V_7
IL_c452: call string [mscorlib]System.Convert::ToString(int32)
IL_c457: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c45c: stloc.s V_9
IL_c45e: ldloc.s V_6
IL_c460: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c465: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c46a: stloc.s V_8
IL_c46c: ldloc.s V_8
IL_c46e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c473: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c478: stloc.s V_9
IL_c47a: ldloc.s V_6
IL_c47c: call string [mscorlib]System.Convert::ToString(int32)
IL_c481: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c486: stloc.s V_7
IL_c488: ldloc.s V_9
IL_c48a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c48f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c494: stloc.s V_6
IL_c496: br.s IL_c4de
IL_c498: ldloc.s V_10
IL_c49a: call string [mscorlib]System.Convert::ToString(int32)
IL_c49f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c4a4: stloc.s V_7
IL_c4a6: ldloc.s V_7
IL_c4a8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c4ad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c4b2: stloc.s V_10
IL_c4b4: ldloc.s V_6
IL_c4b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c4bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c4c0: stloc.s V_9
IL_c4c2: ldloc.s V_9
IL_c4c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c4c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c4ce: stloc.s V_7
IL_c4d0: ldloc.s V_6
IL_c4d2: call string [mscorlib]System.Convert::ToString(int32)
IL_c4d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c4dc: stloc.s V_6
IL_c4de: ldloc.s V_6
IL_c4e0: ldloc.s V_10
IL_c4e2: bgt.s IL_c52c
IL_c4e4: ldloc.s V_7
IL_c4e6: call string [mscorlib]System.Convert::ToString(int32)
IL_c4eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c4f0: stloc.s V_7
IL_c4f2: ldloc.s V_8
IL_c4f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c4f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c4fe: stloc.s V_9
IL_c500: ldloc.s V_9
IL_c502: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c507: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c50c: stloc.s V_10
IL_c50e: ldloc.s V_8
IL_c510: call string [mscorlib]System.Convert::ToString(int32)
IL_c515: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c51a: stloc.s V_8
IL_c51c: ldloc.s V_10
IL_c51e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c523: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c528: stloc.s V_6
IL_c52a: br.s IL_c572
IL_c52c: ldloc.s V_8
IL_c52e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c533: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c538: stloc.s V_10
IL_c53a: ldloc.s V_8
IL_c53c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c541: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c546: stloc.s V_9
IL_c548: ldloc.s V_7
IL_c54a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c54f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c554: stloc.s V_6
IL_c556: ldloc.s V_7
IL_c558: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c55d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c562: stloc.s V_6
IL_c564: ldloc.s V_7
IL_c566: call string [mscorlib]System.Convert::ToString(int32)
IL_c56b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c570: stloc.s V_8
IL_c572: ldloc.s V_9
IL_c574: ldloc.s V_8
IL_c576: blt.s IL_c5c0
IL_c578: ldloc.s V_9
IL_c57a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c57f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c584: stloc.s V_6
IL_c586: ldloc.s V_7
IL_c588: call string [mscorlib]System.Convert::ToString(int32)
IL_c58d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c592: stloc.s V_7
IL_c594: ldloc.s V_10
IL_c596: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c59b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5a0: stloc.s V_7
IL_c5a2: ldloc.s V_9
IL_c5a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c5a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5ae: stloc.s V_9
IL_c5b0: ldloc.s V_10
IL_c5b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c5b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5bc: stloc.s V_8
IL_c5be: br.s IL_c606
IL_c5c0: ldloc.s V_7
IL_c5c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c5c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5cc: stloc.s V_9
IL_c5ce: ldloc.s V_7
IL_c5d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c5d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c5da: stloc.s V_8
IL_c5dc: ldloc.s V_7
IL_c5de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c5e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c5e8: stloc.s V_7
IL_c5ea: ldloc.s V_7
IL_c5ec: call string [mscorlib]System.Convert::ToString(int32)
IL_c5f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c5f6: stloc.s V_10
IL_c5f8: ldloc.s V_7
IL_c5fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c5ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c604: stloc.s V_7
IL_c606: ldloc.s V_6
IL_c608: ldloc.s V_10
IL_c60a: blt.s IL_c654
IL_c60c: ldloc.s V_6
IL_c60e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c613: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c618: stloc.s V_6
IL_c61a: ldloc.s V_8
IL_c61c: call string [mscorlib]System.Convert::ToString(int32)
IL_c621: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c626: stloc.s V_6
IL_c628: ldloc.s V_9
IL_c62a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c62f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c634: stloc.s V_7
IL_c636: ldloc.s V_6
IL_c638: call string [mscorlib]System.Convert::ToString(int32)
IL_c63d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c642: stloc.s V_9
IL_c644: ldloc.s V_10
IL_c646: call string [mscorlib]System.Convert::ToString(int32)
IL_c64b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c650: stloc.s V_9
IL_c652: br.s IL_c69a
IL_c654: ldloc.s V_8
IL_c656: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c65b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c660: stloc.s V_7
IL_c662: ldloc.s V_9
IL_c664: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c669: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c66e: stloc.s V_10
IL_c670: ldloc.s V_8
IL_c672: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c677: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c67c: stloc.s V_7
IL_c67e: ldloc.s V_6
IL_c680: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c685: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c68a: stloc.s V_7
IL_c68c: ldloc.s V_9
IL_c68e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c693: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c698: stloc.s V_10
IL_c69a: ldloc.s V_6
IL_c69c: ldloc.s V_10
IL_c69e: bgt.s IL_c6e8
IL_c6a0: ldloc.s V_7
IL_c6a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c6a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c6ac: stloc.s V_9
IL_c6ae: ldloc.s V_8
IL_c6b0: call string [mscorlib]System.Convert::ToString(int32)
IL_c6b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c6ba: stloc.s V_9
IL_c6bc: ldloc.s V_9
IL_c6be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c6c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c6c8: stloc.s V_10
IL_c6ca: ldloc.s V_9
IL_c6cc: call string [mscorlib]System.Convert::ToString(int32)
IL_c6d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c6d6: stloc.s V_8
IL_c6d8: ldloc.s V_10
IL_c6da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c6df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c6e4: stloc.s V_7
IL_c6e6: br.s IL_c72e
IL_c6e8: ldloc.s V_8
IL_c6ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c6ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c6f4: stloc.s V_7
IL_c6f6: ldloc.s V_6
IL_c6f8: call string [mscorlib]System.Convert::ToString(int32)
IL_c6fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c702: stloc.s V_10
IL_c704: ldloc.s V_10
IL_c706: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c70b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c710: stloc.s V_7
IL_c712: ldloc.s V_7
IL_c714: call string [mscorlib]System.Convert::ToString(int32)
IL_c719: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c71e: stloc.s V_9
IL_c720: ldloc.s V_6
IL_c722: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c727: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c72c: stloc.s V_8
IL_c72e: ldloc.s V_6
IL_c730: ldloc.s V_7
IL_c732: beq.s IL_c77c
IL_c734: ldloc.s V_6
IL_c736: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c73b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c740: stloc.s V_6
IL_c742: ldloc.s V_7
IL_c744: call string [mscorlib]System.Convert::ToString(int32)
IL_c749: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c74e: stloc.s V_9
IL_c750: ldloc.s V_10
IL_c752: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c757: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c75c: stloc.s V_10
IL_c75e: ldloc.s V_8
IL_c760: call string [mscorlib]System.Convert::ToString(int32)
IL_c765: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c76a: stloc.s V_10
IL_c76c: ldloc.s V_6
IL_c76e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c773: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c778: stloc.s V_9
IL_c77a: br.s IL_c7c2
IL_c77c: ldloc.s V_6
IL_c77e: call string [mscorlib]System.Convert::ToString(int32)
IL_c783: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c788: stloc.s V_6
IL_c78a: ldloc.s V_9
IL_c78c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c791: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c796: stloc.s V_7
IL_c798: ldloc.s V_8
IL_c79a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c79f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c7a4: stloc.s V_9
IL_c7a6: ldloc.s V_10
IL_c7a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c7ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c7b2: stloc.s V_7
IL_c7b4: ldloc.s V_10
IL_c7b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c7bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c7c0: stloc.s V_7
IL_c7c2: ldloc.s V_9
IL_c7c4: ldloc.s V_8
IL_c7c6: bgt.s IL_c810
IL_c7c8: ldloc.s V_7
IL_c7ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c7cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c7d4: stloc.s V_8
IL_c7d6: ldloc.s V_7
IL_c7d8: call string [mscorlib]System.Convert::ToString(int32)
IL_c7dd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c7e2: stloc.s V_10
IL_c7e4: ldloc.s V_8
IL_c7e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c7eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c7f0: stloc.s V_7
IL_c7f2: ldloc.s V_7
IL_c7f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c7f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c7fe: stloc.s V_7
IL_c800: ldloc.s V_9
IL_c802: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c807: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c80c: stloc.s V_8
IL_c80e: br.s IL_c856
IL_c810: ldloc.s V_9
IL_c812: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c817: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c81c: stloc.s V_6
IL_c81e: ldloc.s V_7
IL_c820: call string [mscorlib]System.Convert::ToString(int32)
IL_c825: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c82a: stloc.s V_6
IL_c82c: ldloc.s V_8
IL_c82e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c833: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c838: stloc.s V_9
IL_c83a: ldloc.s V_8
IL_c83c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c841: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c846: stloc.s V_8
IL_c848: ldloc.s V_9
IL_c84a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c84f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c854: stloc.s V_8
IL_c856: ldloc.s V_7
IL_c858: ldloc.s V_10
IL_c85a: beq.s IL_c8a4
IL_c85c: ldloc.s V_6
IL_c85e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c863: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c868: stloc.s V_10
IL_c86a: ldloc.s V_10
IL_c86c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c871: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c876: stloc.s V_10
IL_c878: ldloc.s V_9
IL_c87a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c87f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c884: stloc.s V_10
IL_c886: ldloc.s V_10
IL_c888: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c88d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c892: stloc.s V_6
IL_c894: ldloc.s V_7
IL_c896: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c89b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c8a0: stloc.s V_7
IL_c8a2: br.s IL_c8ea
IL_c8a4: ldloc.s V_10
IL_c8a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c8ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c8b0: stloc.s V_7
IL_c8b2: ldloc.s V_6
IL_c8b4: call string [mscorlib]System.Convert::ToString(int32)
IL_c8b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c8be: stloc.s V_6
IL_c8c0: ldloc.s V_9
IL_c8c2: call string [mscorlib]System.Convert::ToString(int32)
IL_c8c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c8cc: stloc.s V_6
IL_c8ce: ldloc.s V_7
IL_c8d0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c8d5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c8da: stloc.s V_9
IL_c8dc: ldloc.s V_8
IL_c8de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c8e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c8e8: stloc.s V_10
IL_c8ea: ldloc.s V_7
IL_c8ec: ldloc.s V_6
IL_c8ee: bne.un.s IL_c938
IL_c8f0: ldloc.s V_8
IL_c8f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c8f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c8fc: stloc.s V_7
IL_c8fe: ldloc.s V_6
IL_c900: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c905: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c90a: stloc.s V_8
IL_c90c: ldloc.s V_8
IL_c90e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c913: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c918: stloc.s V_9
IL_c91a: ldloc.s V_10
IL_c91c: call string [mscorlib]System.Convert::ToString(int32)
IL_c921: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c926: stloc.s V_8
IL_c928: ldloc.s V_8
IL_c92a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c92f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c934: stloc.s V_9
IL_c936: br.s IL_c97e
IL_c938: ldloc.s V_6
IL_c93a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c93f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c944: stloc.s V_6
IL_c946: ldloc.s V_10
IL_c948: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c94d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c952: stloc.s V_9
IL_c954: ldloc.s V_9
IL_c956: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c95b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c960: stloc.s V_10
IL_c962: ldloc.s V_10
IL_c964: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c969: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c96e: stloc.s V_7
IL_c970: ldloc.s V_7
IL_c972: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c977: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c97c: stloc.s V_9
IL_c97e: ldloc.s V_7
IL_c980: ldloc.s V_6
IL_c982: bge.s IL_c9cc
IL_c984: ldloc.s V_7
IL_c986: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c98b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c990: stloc.s V_9
IL_c992: ldloc.s V_6
IL_c994: call string [mscorlib]System.Convert::ToString(int32)
IL_c999: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c99e: stloc.s V_10
IL_c9a0: ldloc.s V_7
IL_c9a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c9a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c9ac: stloc.s V_10
IL_c9ae: ldloc.s V_6
IL_c9b0: call string [mscorlib]System.Convert::ToString(int32)
IL_c9b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c9ba: stloc.s V_8
IL_c9bc: ldloc.s V_6
IL_c9be: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c9c3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c9c8: stloc.s V_9
IL_c9ca: br.s IL_ca12
IL_c9cc: ldloc.s V_9
IL_c9ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c9d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c9d8: stloc.s V_9
IL_c9da: ldloc.s V_7
IL_c9dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c9e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c9e6: stloc.s V_8
IL_c9e8: ldloc.s V_9
IL_c9ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c9ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c9f4: stloc.s V_7
IL_c9f6: ldloc.s V_6
IL_c9f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c9fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca02: stloc.s V_10
IL_ca04: ldloc.s V_7
IL_ca06: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ca0b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca10: stloc.s V_6
IL_ca12: ldloc.s V_7
IL_ca14: ldloc.s V_6
IL_ca16: blt.s IL_ca60
IL_ca18: ldloc.s V_6
IL_ca1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ca1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca24: stloc.s V_10
IL_ca26: ldloc.s V_8
IL_ca28: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ca2d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ca32: stloc.s V_6
IL_ca34: ldloc.s V_9
IL_ca36: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ca3b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ca40: stloc.s V_10
IL_ca42: ldloc.s V_7
IL_ca44: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ca49: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ca4e: stloc.s V_8
IL_ca50: ldloc.s V_6
IL_ca52: call string [mscorlib]System.Convert::ToString(int32)
IL_ca57: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ca5c: stloc.s V_8
IL_ca5e: br.s IL_caa6
IL_ca60: ldloc.s V_6
IL_ca62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ca67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca6c: stloc.s V_9
IL_ca6e: ldloc.s V_7
IL_ca70: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ca75: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ca7a: stloc.s V_8
IL_ca7c: ldloc.s V_8
IL_ca7e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ca83: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ca88: stloc.s V_9
IL_ca8a: ldloc.s V_8
IL_ca8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ca91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ca96: stloc.s V_9
IL_ca98: ldloc.s V_7
IL_ca9a: call string [mscorlib]System.Convert::ToString(int32)
IL_ca9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_caa4: stloc.s V_6
IL_caa6: ldloc.s V_6
IL_caa8: ldloc.s V_7
IL_caaa: ble.s IL_caf4
IL_caac: ldloc.s V_10
IL_caae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cab3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cab8: stloc.s V_10
IL_caba: ldloc.s V_8
IL_cabc: call string [mscorlib]System.Convert::ToString(int32)
IL_cac1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cac6: stloc.s V_10
IL_cac8: ldloc.s V_6
IL_caca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cacf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cad4: stloc.s V_6
IL_cad6: ldloc.s V_6
IL_cad8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cadd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cae2: stloc.s V_9
IL_cae4: ldloc.s V_8
IL_cae6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_caeb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_caf0: stloc.s V_8
IL_caf2: br.s IL_cb3a
IL_caf4: ldloc.s V_6
IL_caf6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cafb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb00: stloc.s V_10
IL_cb02: ldloc.s V_8
IL_cb04: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cb09: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cb0e: stloc.s V_6
IL_cb10: ldloc.s V_9
IL_cb12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cb17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cb1c: stloc.s V_9
IL_cb1e: ldloc.s V_7
IL_cb20: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb25: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb2a: stloc.s V_9
IL_cb2c: ldloc.s V_6
IL_cb2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cb33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cb38: stloc.s V_6
IL_cb3a: ldloc.s V_8
IL_cb3c: ldloc.s V_7
IL_cb3e: blt.s IL_cb88
IL_cb40: ldloc.s V_10
IL_cb42: call string [mscorlib]System.Convert::ToString(int32)
IL_cb47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cb4c: stloc.s V_10
IL_cb4e: ldloc.s V_8
IL_cb50: call string [mscorlib]System.Convert::ToString(int32)
IL_cb55: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cb5a: stloc.s V_7
IL_cb5c: ldloc.s V_7
IL_cb5e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb63: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb68: stloc.s V_9
IL_cb6a: ldloc.s V_8
IL_cb6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cb71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cb76: stloc.s V_7
IL_cb78: ldloc.s V_9
IL_cb7a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb7f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb84: stloc.s V_8
IL_cb86: br.s IL_cbce
IL_cb88: ldloc.s V_7
IL_cb8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb94: stloc.s V_6
IL_cb96: ldloc.s V_7
IL_cb98: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cb9d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cba2: stloc.s V_6
IL_cba4: ldloc.s V_9
IL_cba6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cbab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cbb0: stloc.s V_9
IL_cbb2: ldloc.s V_6
IL_cbb4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cbb9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cbbe: stloc.s V_7
IL_cbc0: ldloc.s V_9
IL_cbc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cbc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cbcc: stloc.s V_6
IL_cbce: ldloc.s V_6
IL_cbd0: ldloc.s V_7
IL_cbd2: ble.s IL_cc1c
IL_cbd4: ldloc.s V_9
IL_cbd6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cbdb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cbe0: stloc.s V_9
IL_cbe2: ldloc.s V_9
IL_cbe4: call string [mscorlib]System.Convert::ToString(int32)
IL_cbe9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cbee: stloc.s V_9
IL_cbf0: ldloc.s V_7
IL_cbf2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cbf7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cbfc: stloc.s V_9
IL_cbfe: ldloc.s V_10
IL_cc00: call string [mscorlib]System.Convert::ToString(int32)
IL_cc05: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc0a: stloc.s V_6
IL_cc0c: ldloc.s V_6
IL_cc0e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cc13: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cc18: stloc.s V_6
IL_cc1a: br.s IL_cc62
IL_cc1c: ldloc.s V_8
IL_cc1e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cc23: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cc28: stloc.s V_9
IL_cc2a: ldloc.s V_8
IL_cc2c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cc31: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cc36: stloc.s V_10
IL_cc38: ldloc.s V_8
IL_cc3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cc3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cc44: stloc.s V_10
IL_cc46: ldloc.s V_7
IL_cc48: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cc4d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cc52: stloc.s V_6
IL_cc54: ldloc.s V_7
IL_cc56: call string [mscorlib]System.Convert::ToString(int32)
IL_cc5b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc60: stloc.s V_7
IL_cc62: ldloc.s V_6
IL_cc64: ldloc.s V_10
IL_cc66: bgt.s IL_ccb0
IL_cc68: ldloc.s V_10
IL_cc6a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cc6f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cc74: stloc.s V_6
IL_cc76: ldloc.s V_9
IL_cc78: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cc7d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cc82: stloc.s V_10
IL_cc84: ldloc.s V_8
IL_cc86: call string [mscorlib]System.Convert::ToString(int32)
IL_cc8b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc90: stloc.s V_8
IL_cc92: ldloc.s V_8
IL_cc94: call string [mscorlib]System.Convert::ToString(int32)
IL_cc99: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc9e: stloc.s V_6
IL_cca0: ldloc.s V_7
IL_cca2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cca7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ccac: stloc.s V_9
IL_ccae: br.s IL_ccf6
IL_ccb0: ldloc.s V_6
IL_ccb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ccb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ccbc: stloc.s V_10
IL_ccbe: ldloc.s V_10
IL_ccc0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ccc5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ccca: stloc.s V_6
IL_cccc: ldloc.s V_7
IL_ccce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ccd3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ccd8: stloc.s V_10
IL_ccda: ldloc.s V_9
IL_ccdc: call string [mscorlib]System.Convert::ToString(int32)
IL_cce1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cce6: stloc.s V_7
IL_cce8: ldloc.s V_9
IL_ccea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ccef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ccf4: stloc.s V_8
IL_ccf6: ldloc.s V_8
IL_ccf8: ldloc.s V_7
IL_ccfa: beq.s IL_cd44
IL_ccfc: ldloc.s V_7
IL_ccfe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cd03: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cd08: stloc.s V_6
IL_cd0a: ldloc.s V_9
IL_cd0c: call string [mscorlib]System.Convert::ToString(int32)
IL_cd11: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cd16: stloc.s V_7
IL_cd18: ldloc.s V_9
IL_cd1a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd1f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd24: stloc.s V_9
IL_cd26: ldloc.s V_8
IL_cd28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cd2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cd32: stloc.s V_6
IL_cd34: ldloc.s V_9
IL_cd36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cd3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cd40: stloc.s V_10
IL_cd42: br.s IL_cd8a
IL_cd44: ldloc.s V_7
IL_cd46: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd4b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd50: stloc.s V_6
IL_cd52: ldloc.s V_6
IL_cd54: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd59: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd5e: stloc.s V_7
IL_cd60: ldloc.s V_6
IL_cd62: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd67: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd6c: stloc.s V_6
IL_cd6e: ldloc.s V_9
IL_cd70: call string [mscorlib]System.Convert::ToString(int32)
IL_cd75: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cd7a: stloc.s V_8
IL_cd7c: ldloc.s V_7
IL_cd7e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cd83: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cd88: stloc.s V_6
IL_cd8a: ldloc.s V_7
IL_cd8c: ldloc.s V_6
IL_cd8e: bne.un.s IL_cdd8
IL_cd90: ldloc.s V_7
IL_cd92: call string [mscorlib]System.Convert::ToString(int32)
IL_cd97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cd9c: stloc.s V_6
IL_cd9e: ldloc.s V_9
IL_cda0: call string [mscorlib]System.Convert::ToString(int32)
IL_cda5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cdaa: stloc.s V_6
IL_cdac: ldloc.s V_9
IL_cdae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cdb3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cdb8: stloc.s V_8
IL_cdba: ldloc.s V_10
IL_cdbc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cdc1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cdc6: stloc.s V_6
IL_cdc8: ldloc.s V_8
IL_cdca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cdcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cdd4: stloc.s V_10
IL_cdd6: br.s IL_ce1e
IL_cdd8: ldloc.s V_10
IL_cdda: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cddf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cde4: stloc.s V_6
IL_cde6: ldloc.s V_6
IL_cde8: call string [mscorlib]System.Convert::ToString(int32)
IL_cded: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cdf2: stloc.s V_8
IL_cdf4: ldloc.s V_8
IL_cdf6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cdfb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ce00: stloc.s V_7
IL_ce02: ldloc.s V_10
IL_ce04: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce09: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce0e: stloc.s V_7
IL_ce10: ldloc.s V_8
IL_ce12: call string [mscorlib]System.Convert::ToString(int32)
IL_ce17: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce1c: stloc.s V_10
IL_ce1e: ldloc.s V_7
IL_ce20: ldloc.s V_9
IL_ce22: bgt.s IL_ce6c
IL_ce24: ldloc.s V_8
IL_ce26: call string [mscorlib]System.Convert::ToString(int32)
IL_ce2b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce30: stloc.s V_8
IL_ce32: ldloc.s V_9
IL_ce34: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce39: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce3e: stloc.s V_7
IL_ce40: ldloc.s V_6
IL_ce42: call string [mscorlib]System.Convert::ToString(int32)
IL_ce47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce4c: stloc.s V_8
IL_ce4e: ldloc.s V_8
IL_ce50: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce55: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce5a: stloc.s V_7
IL_ce5c: ldloc.s V_7
IL_ce5e: call string [mscorlib]System.Convert::ToString(int32)
IL_ce63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce68: stloc.s V_6
IL_ce6a: br.s IL_ceb2
IL_ce6c: ldloc.s V_8
IL_ce6e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ce73: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ce78: stloc.s V_7
IL_ce7a: ldloc.s V_9
IL_ce7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ce81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ce86: stloc.s V_7
IL_ce88: ldloc.s V_9
IL_ce8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce94: stloc.s V_6
IL_ce96: ldloc.s V_10
IL_ce98: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce9d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cea2: stloc.s V_9
IL_cea4: ldloc.s V_9
IL_cea6: call string [mscorlib]System.Convert::ToString(int32)
IL_ceab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ceb0: stloc.s V_9
IL_ceb2: ldloc.s V_9
IL_ceb4: ldloc.s V_8
IL_ceb6: bge.s IL_cf00
IL_ceb8: ldloc.s V_9
IL_ceba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cebf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cec4: stloc.s V_7
IL_cec6: ldloc.s V_8
IL_cec8: call string [mscorlib]System.Convert::ToString(int32)
IL_cecd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ced2: stloc.s V_10
IL_ced4: ldloc.s V_10
IL_ced6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cedb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cee0: stloc.s V_7
IL_cee2: ldloc.s V_6
IL_cee4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cee9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ceee: stloc.s V_10
IL_cef0: ldloc.s V_6
IL_cef2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cef7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cefc: stloc.s V_6
IL_cefe: br.s IL_cf46
IL_cf00: ldloc.s V_9
IL_cf02: call string [mscorlib]System.Convert::ToString(int32)
IL_cf07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf0c: stloc.s V_8
IL_cf0e: ldloc.s V_6
IL_cf10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cf15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cf1a: stloc.s V_10
IL_cf1c: ldloc.s V_10
IL_cf1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cf23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cf28: stloc.s V_6
IL_cf2a: ldloc.s V_6
IL_cf2c: call string [mscorlib]System.Convert::ToString(int32)
IL_cf31: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf36: stloc.s V_10
IL_cf38: ldloc.s V_6
IL_cf3a: call string [mscorlib]System.Convert::ToString(int32)
IL_cf3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf44: stloc.s V_10
IL_cf46: ldloc.s V_6
IL_cf48: ldloc.s V_7
IL_cf4a: blt.s IL_cf94
IL_cf4c: ldloc.s V_7
IL_cf4e: call string [mscorlib]System.Convert::ToString(int32)
IL_cf53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf58: stloc.s V_10
IL_cf5a: ldloc.s V_7
IL_cf5c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cf61: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cf66: stloc.s V_9
IL_cf68: ldloc.s V_6
IL_cf6a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cf6f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cf74: stloc.s V_6
IL_cf76: ldloc.s V_9
IL_cf78: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cf7d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cf82: stloc.s V_9
IL_cf84: ldloc.s V_8
IL_cf86: call string [mscorlib]System.Convert::ToString(int32)
IL_cf8b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf90: stloc.s V_8
IL_cf92: br.s IL_cfda
IL_cf94: ldloc.s V_6
IL_cf96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cf9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cfa0: stloc.s V_9
IL_cfa2: ldloc.s V_7
IL_cfa4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cfa9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cfae: stloc.s V_10
IL_cfb0: ldloc.s V_6
IL_cfb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cfb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cfbc: stloc.s V_7
IL_cfbe: ldloc.s V_7
IL_cfc0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cfc5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cfca: stloc.s V_10
IL_cfcc: ldloc.s V_7
IL_cfce: call string [mscorlib]System.Convert::ToString(int32)
IL_cfd3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cfd8: stloc.s V_7
IL_cfda: ldloc.s V_9
IL_cfdc: ldloc.s V_6
IL_cfde: bne.un.s IL_d028
IL_cfe0: ldloc.s V_8
IL_cfe2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cfe7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cfec: stloc.s V_10
IL_cfee: ldloc.s V_6
IL_cff0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cff5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cffa: stloc.s V_10
IL_cffc: ldloc.s V_7
IL_cffe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d003: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d008: stloc.s V_8
IL_d00a: ldloc.s V_7
IL_d00c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d011: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d016: stloc.s V_6
IL_d018: ldloc.s V_10
IL_d01a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d01f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d024: stloc.s V_6
IL_d026: br.s IL_d06e
IL_d028: ldloc.s V_8
IL_d02a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d02f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d034: stloc.s V_9
IL_d036: ldloc.s V_8
IL_d038: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d03d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d042: stloc.s V_10
IL_d044: ldloc.s V_7
IL_d046: call string [mscorlib]System.Convert::ToString(int32)
IL_d04b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d050: stloc.s V_10
IL_d052: ldloc.s V_8
IL_d054: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d059: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d05e: stloc.s V_7
IL_d060: ldloc.s V_8
IL_d062: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d067: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d06c: stloc.s V_6
IL_d06e: ldloc.s V_10
IL_d070: ldloc.s V_8
IL_d072: bne.un.s IL_d0bc
IL_d074: ldloc.s V_9
IL_d076: call string [mscorlib]System.Convert::ToString(int32)
IL_d07b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d080: stloc.s V_9
IL_d082: ldloc.s V_7
IL_d084: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d089: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d08e: stloc.s V_6
IL_d090: ldloc.s V_9
IL_d092: call string [mscorlib]System.Convert::ToString(int32)
IL_d097: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d09c: stloc.s V_6
IL_d09e: ldloc.s V_6
IL_d0a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d0a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d0aa: stloc.s V_10
IL_d0ac: ldloc.s V_8
IL_d0ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d0b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d0b8: stloc.s V_10
IL_d0ba: br.s IL_d102
IL_d0bc: ldloc.s V_7
IL_d0be: call string [mscorlib]System.Convert::ToString(int32)
IL_d0c3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d0c8: stloc.s V_7
IL_d0ca: ldloc.s V_7
IL_d0cc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d0d1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d0d6: stloc.s V_10
IL_d0d8: ldloc.s V_8
IL_d0da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d0df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d0e4: stloc.s V_8
IL_d0e6: ldloc.s V_6
IL_d0e8: call string [mscorlib]System.Convert::ToString(int32)
IL_d0ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d0f2: stloc.s V_6
IL_d0f4: ldloc.s V_10
IL_d0f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d0fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d100: stloc.s V_8
IL_d102: ldloc.s V_7
IL_d104: ldloc.s V_7
IL_d106: beq.s IL_d150
IL_d108: ldloc.s V_10
IL_d10a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d10f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d114: stloc.s V_9
IL_d116: ldloc.s V_7
IL_d118: call string [mscorlib]System.Convert::ToString(int32)
IL_d11d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d122: stloc.s V_7
IL_d124: ldloc.s V_10
IL_d126: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d12b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d130: stloc.s V_6
IL_d132: ldloc.s V_7
IL_d134: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d139: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d13e: stloc.s V_10
IL_d140: ldloc.s V_6
IL_d142: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d147: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d14c: stloc.s V_7
IL_d14e: br.s IL_d196
IL_d150: ldloc.s V_6
IL_d152: call string [mscorlib]System.Convert::ToString(int32)
IL_d157: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d15c: stloc.s V_6
IL_d15e: ldloc.s V_6
IL_d160: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d165: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d16a: stloc.s V_6
IL_d16c: ldloc.s V_9
IL_d16e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d173: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d178: stloc.s V_6
IL_d17a: ldloc.s V_6
IL_d17c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d181: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d186: stloc.s V_6
IL_d188: ldloc.s V_6
IL_d18a: call string [mscorlib]System.Convert::ToString(int32)
IL_d18f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d194: stloc.s V_7
IL_d196: ldloc.s V_6
IL_d198: ldloc.s V_6
IL_d19a: bne.un.s IL_d1e4
IL_d19c: ldloc.s V_8
IL_d19e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d1a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d1a8: stloc.s V_9
IL_d1aa: ldloc.s V_6
IL_d1ac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d1b1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d1b6: stloc.s V_9
IL_d1b8: ldloc.s V_6
IL_d1ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d1bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d1c4: stloc.s V_10
IL_d1c6: ldloc.s V_10
IL_d1c8: call string [mscorlib]System.Convert::ToString(int32)
IL_d1cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d1d2: stloc.s V_8
IL_d1d4: ldloc.s V_7
IL_d1d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d1db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d1e0: stloc.s V_6
IL_d1e2: br.s IL_d22a
IL_d1e4: ldloc.s V_9
IL_d1e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d1eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d1f0: stloc.s V_6
IL_d1f2: ldloc.s V_8
IL_d1f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d1f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d1fe: stloc.s V_9
IL_d200: ldloc.s V_6
IL_d202: call string [mscorlib]System.Convert::ToString(int32)
IL_d207: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d20c: stloc.s V_7
IL_d20e: ldloc.s V_9
IL_d210: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d215: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d21a: stloc.s V_6
IL_d21c: ldloc.s V_7
IL_d21e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d223: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d228: stloc.s V_7
IL_d22a: ldloc.s V_6
IL_d22c: ldloc.s V_10
IL_d22e: bgt.s IL_d278
IL_d230: ldloc.s V_7
IL_d232: call string [mscorlib]System.Convert::ToString(int32)
IL_d237: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d23c: stloc.s V_7
IL_d23e: ldloc.s V_8
IL_d240: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d245: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d24a: stloc.s V_8
IL_d24c: ldloc.s V_6
IL_d24e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d253: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d258: stloc.s V_6
IL_d25a: ldloc.s V_9
IL_d25c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d261: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d266: stloc.s V_10
IL_d268: ldloc.s V_6
IL_d26a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d26f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d274: stloc.s V_10
IL_d276: br.s IL_d2be
IL_d278: ldloc.s V_6
IL_d27a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d27f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d284: stloc.s V_10
IL_d286: ldloc.s V_6
IL_d288: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d28d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d292: stloc.s V_8
IL_d294: ldloc.s V_8
IL_d296: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d29b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2a0: stloc.s V_8
IL_d2a2: ldloc.s V_6
IL_d2a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d2a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2ae: stloc.s V_7
IL_d2b0: ldloc.s V_10
IL_d2b2: call string [mscorlib]System.Convert::ToString(int32)
IL_d2b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d2bc: stloc.s V_8
IL_d2be: ldloc.s V_9
IL_d2c0: ldloc.s V_7
IL_d2c2: beq.s IL_d30c
IL_d2c4: ldloc.s V_6
IL_d2c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d2cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d2d0: stloc.s V_10
IL_d2d2: ldloc.s V_6
IL_d2d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d2d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2de: stloc.s V_10
IL_d2e0: ldloc.s V_10
IL_d2e2: call string [mscorlib]System.Convert::ToString(int32)
IL_d2e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d2ec: stloc.s V_6
IL_d2ee: ldloc.s V_10
IL_d2f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d2f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2fa: stloc.s V_8
IL_d2fc: ldloc.s V_6
IL_d2fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d303: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d308: stloc.s V_8
IL_d30a: br.s IL_d352
IL_d30c: ldloc.s V_9
IL_d30e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d313: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d318: stloc.s V_8
IL_d31a: ldloc.s V_7
IL_d31c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d321: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d326: stloc.s V_6
IL_d328: ldloc.s V_7
IL_d32a: call string [mscorlib]System.Convert::ToString(int32)
IL_d32f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d334: stloc.s V_9
IL_d336: ldloc.s V_10
IL_d338: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d33d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d342: stloc.s V_10
IL_d344: ldloc.s V_7
IL_d346: call string [mscorlib]System.Convert::ToString(int32)
IL_d34b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d350: stloc.s V_8
IL_d352: ldloc.s V_6
IL_d354: ldloc.s V_10
IL_d356: bge.s IL_d3a0
IL_d358: ldloc.s V_6
IL_d35a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d35f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d364: stloc.s V_7
IL_d366: ldloc.s V_9
IL_d368: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d36d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d372: stloc.s V_6
IL_d374: ldloc.s V_7
IL_d376: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d37b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d380: stloc.s V_10
IL_d382: ldloc.s V_10
IL_d384: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d389: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d38e: stloc.s V_7
IL_d390: ldloc.s V_6
IL_d392: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d397: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d39c: stloc.s V_9
IL_d39e: br.s IL_d3e6
IL_d3a0: ldloc.s V_7
IL_d3a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d3a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d3ac: stloc.s V_10
IL_d3ae: ldloc.s V_8
IL_d3b0: call string [mscorlib]System.Convert::ToString(int32)
IL_d3b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d3ba: stloc.s V_6
IL_d3bc: ldloc.s V_6
IL_d3be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d3c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d3c8: stloc.s V_6
IL_d3ca: ldloc.s V_6
IL_d3cc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d3d1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d3d6: stloc.s V_9
IL_d3d8: ldloc.s V_10
IL_d3da: call string [mscorlib]System.Convert::ToString(int32)
IL_d3df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d3e4: stloc.s V_7
IL_d3e6: ldloc.s V_7
IL_d3e8: ldloc.s V_7
IL_d3ea: blt.s IL_d434
IL_d3ec: ldloc.s V_8
IL_d3ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d3f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d3f8: stloc.s V_10
IL_d3fa: ldloc.s V_9
IL_d3fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d401: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d406: stloc.s V_10
IL_d408: ldloc.s V_10
IL_d40a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d40f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d414: stloc.s V_10
IL_d416: ldloc.s V_9
IL_d418: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d41d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d422: stloc.s V_10
IL_d424: ldloc.s V_7
IL_d426: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d42b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d430: stloc.s V_8
IL_d432: br.s IL_d47a
IL_d434: ldloc.s V_10
IL_d436: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d43b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d440: stloc.s V_9
IL_d442: ldloc.s V_7
IL_d444: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d449: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d44e: stloc.s V_6
IL_d450: ldloc.s V_9
IL_d452: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d457: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d45c: stloc.s V_8
IL_d45e: ldloc.s V_9
IL_d460: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d465: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d46a: stloc.s V_10
IL_d46c: ldloc.s V_8
IL_d46e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d473: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d478: stloc.s V_8
IL_d47a: ldloc.s V_10
IL_d47c: ldloc.s V_10
IL_d47e: bgt.s IL_d4c8
IL_d480: ldloc.s V_10
IL_d482: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d487: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d48c: stloc.s V_9
IL_d48e: ldloc.s V_7
IL_d490: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d495: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d49a: stloc.s V_9
IL_d49c: ldloc.s V_8
IL_d49e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d4a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d4a8: stloc.s V_9
IL_d4aa: ldloc.s V_9
IL_d4ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4b6: stloc.s V_9
IL_d4b8: ldloc.s V_10
IL_d4ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d4bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d4c4: stloc.s V_8
IL_d4c6: br.s IL_d50e
IL_d4c8: ldloc.s V_7
IL_d4ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4d4: stloc.s V_10
IL_d4d6: ldloc.s V_6
IL_d4d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4e2: stloc.s V_6
IL_d4e4: ldloc.s V_10
IL_d4e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4f0: stloc.s V_10
IL_d4f2: ldloc.s V_6
IL_d4f4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d4f9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d4fe: stloc.s V_9
IL_d500: ldloc.s V_7
IL_d502: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d507: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d50c: stloc.s V_10
IL_d50e: ldloc.s V_7
IL_d510: ldloc.s V_8
IL_d512: bge.s IL_d55c
IL_d514: ldloc.s V_8
IL_d516: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d51b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d520: stloc.s V_10
IL_d522: ldloc.s V_8
IL_d524: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d529: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d52e: stloc.s V_8
IL_d530: ldloc.s V_10
IL_d532: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d537: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d53c: stloc.s V_8
IL_d53e: ldloc.s V_10
IL_d540: call string [mscorlib]System.Convert::ToString(int32)
IL_d545: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d54a: stloc.s V_9
IL_d54c: ldloc.s V_6
IL_d54e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d553: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d558: stloc.s V_10
IL_d55a: br.s IL_d5a2
IL_d55c: ldloc.s V_7
IL_d55e: call string [mscorlib]System.Convert::ToString(int32)
IL_d563: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d568: stloc.s V_10
IL_d56a: ldloc.s V_8
IL_d56c: call string [mscorlib]System.Convert::ToString(int32)
IL_d571: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d576: stloc.s V_7
IL_d578: ldloc.s V_7
IL_d57a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d57f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d584: stloc.s V_9
IL_d586: ldloc.s V_6
IL_d588: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d58d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d592: stloc.s V_10
IL_d594: ldloc.s V_9
IL_d596: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d59b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d5a0: stloc.s V_7
IL_d5a2: ldloc.s V_7
IL_d5a4: ldloc.s V_6
IL_d5a6: bge.s IL_d5f0
IL_d5a8: ldloc.s V_7
IL_d5aa: call string [mscorlib]System.Convert::ToString(int32)
IL_d5af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d5b4: stloc.s V_6
IL_d5b6: ldloc.s V_8
IL_d5b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d5bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d5c2: stloc.s V_7
IL_d5c4: ldloc.s V_6
IL_d5c6: call string [mscorlib]System.Convert::ToString(int32)
IL_d5cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d5d0: stloc.s V_10
IL_d5d2: ldloc.s V_9
IL_d5d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d5d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d5de: stloc.s V_7
IL_d5e0: ldloc.s V_8
IL_d5e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d5e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d5ec: stloc.s V_6
IL_d5ee: br.s IL_d636
IL_d5f0: ldloc.s V_9
IL_d5f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d5f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d5fc: stloc.s V_10
IL_d5fe: ldloc.s V_9
IL_d600: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d605: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d60a: stloc.s V_6
IL_d60c: ldloc.s V_6
IL_d60e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d613: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d618: stloc.s V_6
IL_d61a: ldloc.s V_6
IL_d61c: call string [mscorlib]System.Convert::ToString(int32)
IL_d621: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d626: stloc.s V_6
IL_d628: ldloc.s V_9
IL_d62a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d62f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d634: stloc.s V_8
IL_d636: ldloc.s V_8
IL_d638: ldloc.s V_7
IL_d63a: bge.s IL_d684
IL_d63c: ldloc.s V_10
IL_d63e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d643: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d648: stloc.s V_9
IL_d64a: ldloc.s V_7
IL_d64c: call string [mscorlib]System.Convert::ToString(int32)
IL_d651: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d656: stloc.s V_9
IL_d658: ldloc.s V_6
IL_d65a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d65f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d664: stloc.s V_10
IL_d666: ldloc.s V_9
IL_d668: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d66d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d672: stloc.s V_8
IL_d674: ldloc.s V_6
IL_d676: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d67b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d680: stloc.s V_9
IL_d682: br.s IL_d6ca
IL_d684: ldloc.s V_10
IL_d686: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d68b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d690: stloc.s V_8
IL_d692: ldloc.s V_7
IL_d694: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d699: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d69e: stloc.s V_6
IL_d6a0: ldloc.s V_8
IL_d6a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d6a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d6ac: stloc.s V_7
IL_d6ae: ldloc.s V_10
IL_d6b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6ba: stloc.s V_7
IL_d6bc: ldloc.s V_7
IL_d6be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6c8: stloc.s V_7
IL_d6ca: ldloc.s V_10
IL_d6cc: ldloc.s V_8
IL_d6ce: blt.s IL_d718
IL_d6d0: ldloc.s V_10
IL_d6d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6dc: stloc.s V_7
IL_d6de: ldloc.s V_7
IL_d6e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d6e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d6ea: stloc.s V_9
IL_d6ec: ldloc.s V_8
IL_d6ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6f8: stloc.s V_8
IL_d6fa: ldloc.s V_9
IL_d6fc: call string [mscorlib]System.Convert::ToString(int32)
IL_d701: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d706: stloc.s V_9
IL_d708: ldloc.s V_9
IL_d70a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d70f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d714: stloc.s V_8
IL_d716: br.s IL_d75e
IL_d718: ldloc.s V_10
IL_d71a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d71f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d724: stloc.s V_6
IL_d726: ldloc.s V_8
IL_d728: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d72d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d732: stloc.s V_9
IL_d734: ldloc.s V_9
IL_d736: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d73b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d740: stloc.s V_10
IL_d742: ldloc.s V_7
IL_d744: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d749: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d74e: stloc.s V_8
IL_d750: ldloc.s V_6
IL_d752: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d757: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d75c: stloc.s V_7
IL_d75e: ldloc.s V_6
IL_d760: ldloc.s V_8
IL_d762: bne.un.s IL_d7ac
IL_d764: ldloc.s V_8
IL_d766: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d76b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d770: stloc.s V_6
IL_d772: ldloc.s V_6
IL_d774: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d779: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d77e: stloc.s V_6
IL_d780: ldloc.s V_10
IL_d782: call string [mscorlib]System.Convert::ToString(int32)
IL_d787: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d78c: stloc.s V_8
IL_d78e: ldloc.s V_8
IL_d790: call string [mscorlib]System.Convert::ToString(int32)
IL_d795: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d79a: stloc.s V_10
IL_d79c: ldloc.s V_10
IL_d79e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d7a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d7a8: stloc.s V_9
IL_d7aa: br.s IL_d7f2
IL_d7ac: ldloc.s V_8
IL_d7ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d7b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d7b8: stloc.s V_6
IL_d7ba: ldloc.s V_9
IL_d7bc: call string [mscorlib]System.Convert::ToString(int32)
IL_d7c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d7c6: stloc.s V_7
IL_d7c8: ldloc.s V_10
IL_d7ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d7cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d7d4: stloc.s V_6
IL_d7d6: ldloc.s V_9
IL_d7d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d7dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d7e2: stloc.s V_7
IL_d7e4: ldloc.s V_10
IL_d7e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d7eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d7f0: stloc.s V_6
IL_d7f2: ldloc.s V_6
IL_d7f4: ldloc.s V_8
IL_d7f6: blt.s IL_d840
IL_d7f8: ldloc.s V_6
IL_d7fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d7ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d804: stloc.s V_7
IL_d806: ldloc.s V_6
IL_d808: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d80d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d812: stloc.s V_7
IL_d814: ldloc.s V_9
IL_d816: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d81b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d820: stloc.s V_10
IL_d822: ldloc.s V_10
IL_d824: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d829: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d82e: stloc.s V_8
IL_d830: ldloc.s V_8
IL_d832: call string [mscorlib]System.Convert::ToString(int32)
IL_d837: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d83c: stloc.s V_7
IL_d83e: br.s IL_d886
IL_d840: ldloc.s V_7
IL_d842: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d847: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d84c: stloc.s V_8
IL_d84e: ldloc.s V_8
IL_d850: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d855: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d85a: stloc.s V_9
IL_d85c: ldloc.s V_10
IL_d85e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d863: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d868: stloc.s V_9
IL_d86a: ldloc.s V_8
IL_d86c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d871: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d876: stloc.s V_9
IL_d878: ldloc.s V_8
IL_d87a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d87f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d884: stloc.s V_7
IL_d886: ldloc.s V_7
IL_d888: ldloc.s V_8
IL_d88a: ble.s IL_d8d4
IL_d88c: ldloc.s V_8
IL_d88e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d893: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d898: stloc.s V_10
IL_d89a: ldloc.s V_7
IL_d89c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d8a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d8a6: stloc.s V_9
IL_d8a8: ldloc.s V_7
IL_d8aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d8af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d8b4: stloc.s V_7
IL_d8b6: ldloc.s V_7
IL_d8b8: call string [mscorlib]System.Convert::ToString(int32)
IL_d8bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d8c2: stloc.s V_6
IL_d8c4: ldloc.s V_8
IL_d8c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d8cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d8d0: stloc.s V_10
IL_d8d2: br.s IL_d91a
IL_d8d4: ldloc.s V_10
IL_d8d6: call string [mscorlib]System.Convert::ToString(int32)
IL_d8db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d8e0: stloc.s V_6
IL_d8e2: ldloc.s V_8
IL_d8e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d8e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d8ee: stloc.s V_8
IL_d8f0: ldloc.s V_7
IL_d8f2: call string [mscorlib]System.Convert::ToString(int32)
IL_d8f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d8fc: stloc.s V_6
IL_d8fe: ldloc.s V_6
IL_d900: call string [mscorlib]System.Convert::ToString(int32)
IL_d905: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d90a: stloc.s V_7
IL_d90c: ldloc.s V_10
IL_d90e: call string [mscorlib]System.Convert::ToString(int32)
IL_d913: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d918: stloc.s V_8
IL_d91a: ldloc.s V_8
IL_d91c: ldloc.s V_10
IL_d91e: bge.s IL_d968
IL_d920: ldloc.s V_6
IL_d922: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d927: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d92c: stloc.s V_7
IL_d92e: ldloc.s V_7
IL_d930: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d935: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d93a: stloc.s V_6
IL_d93c: ldloc.s V_6
IL_d93e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d943: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d948: stloc.s V_10
IL_d94a: ldloc.s V_7
IL_d94c: call string [mscorlib]System.Convert::ToString(int32)
IL_d951: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d956: stloc.s V_6
IL_d958: ldloc.s V_10
IL_d95a: call string [mscorlib]System.Convert::ToString(int32)
IL_d95f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d964: stloc.s V_8
IL_d966: br.s IL_d9ae
IL_d968: ldloc.s V_10
IL_d96a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d96f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d974: stloc.s V_6
IL_d976: ldloc.s V_8
IL_d978: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d97d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d982: stloc.s V_9
IL_d984: ldloc.s V_10
IL_d986: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d98b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d990: stloc.s V_10
IL_d992: ldloc.s V_7
IL_d994: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d999: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d99e: stloc.s V_6
IL_d9a0: ldloc.s V_9
IL_d9a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d9a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d9ac: stloc.s V_7
IL_d9ae: ldloc.s V_10
IL_d9b0: ldloc.s V_6
IL_d9b2: bgt.s IL_d9fc
IL_d9b4: ldloc.s V_10
IL_d9b6: call string [mscorlib]System.Convert::ToString(int32)
IL_d9bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d9c0: stloc.s V_8
IL_d9c2: ldloc.s V_9
IL_d9c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d9c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d9ce: stloc.s V_7
IL_d9d0: ldloc.s V_9
IL_d9d2: call string [mscorlib]System.Convert::ToString(int32)
IL_d9d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d9dc: stloc.s V_8
IL_d9de: ldloc.s V_6
IL_d9e0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d9e5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d9ea: stloc.s V_8
IL_d9ec: ldloc.s V_10
IL_d9ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d9f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d9f8: stloc.s V_10
IL_d9fa: br.s IL_da42
IL_d9fc: ldloc.s V_8
IL_d9fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_da03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_da08: stloc.s V_7
IL_da0a: ldloc.s V_6
IL_da0c: call string [mscorlib]System.Convert::ToString(int32)
IL_da11: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da16: stloc.s V_10
IL_da18: ldloc.s V_7
IL_da1a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_da1f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_da24: stloc.s V_7
IL_da26: ldloc.s V_8
IL_da28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_da2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_da32: stloc.s V_7
IL_da34: ldloc.s V_8
IL_da36: call string [mscorlib]System.Convert::ToString(int32)
IL_da3b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da40: stloc.s V_10
IL_da42: ldloc.s V_8
IL_da44: ldloc.s V_9
IL_da46: blt.s IL_da90
IL_da48: ldloc.s V_6
IL_da4a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_da4f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_da54: stloc.s V_7
IL_da56: ldloc.s V_6
IL_da58: call string [mscorlib]System.Convert::ToString(int32)
IL_da5d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da62: stloc.s V_6
IL_da64: ldloc.s V_9
IL_da66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_da6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_da70: stloc.s V_7
IL_da72: ldloc.s V_6
IL_da74: call string [mscorlib]System.Convert::ToString(int32)
IL_da79: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da7e: stloc.s V_10
IL_da80: ldloc.s V_8
IL_da82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_da87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_da8c: stloc.s V_10
IL_da8e: br.s IL_dad6
IL_da90: ldloc.s V_7
IL_da92: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_da97: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_da9c: stloc.s V_7
IL_da9e: ldloc.s V_7
IL_daa0: call string [mscorlib]System.Convert::ToString(int32)
IL_daa5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_daaa: stloc.s V_7
IL_daac: ldloc.s V_7
IL_daae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dab3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dab8: stloc.s V_6
IL_daba: ldloc.s V_7
IL_dabc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dac1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dac6: stloc.s V_8
IL_dac8: ldloc.s V_6
IL_daca: call string [mscorlib]System.Convert::ToString(int32)
IL_dacf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dad4: stloc.s V_6
IL_dad6: ldloc.s V_6
IL_dad8: ldloc.s V_8
IL_dada: ble.s IL_db24
IL_dadc: ldloc.s V_9
IL_dade: call string [mscorlib]System.Convert::ToString(int32)
IL_dae3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dae8: stloc.s V_7
IL_daea: ldloc.s V_10
IL_daec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_daf1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_daf6: stloc.s V_10
IL_daf8: ldloc.s V_8
IL_dafa: call string [mscorlib]System.Convert::ToString(int32)
IL_daff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db04: stloc.s V_8
IL_db06: ldloc.s V_10
IL_db08: call string [mscorlib]System.Convert::ToString(int32)
IL_db0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db12: stloc.s V_7
IL_db14: ldloc.s V_9
IL_db16: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db1b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db20: stloc.s V_7
IL_db22: br.s IL_db6a
IL_db24: ldloc.s V_9
IL_db26: call string [mscorlib]System.Convert::ToString(int32)
IL_db2b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db30: stloc.s V_6
IL_db32: ldloc.s V_10
IL_db34: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_db39: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_db3e: stloc.s V_6
IL_db40: ldloc.s V_6
IL_db42: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db47: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db4c: stloc.s V_7
IL_db4e: ldloc.s V_8
IL_db50: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db55: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db5a: stloc.s V_9
IL_db5c: ldloc.s V_8
IL_db5e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_db63: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_db68: stloc.s V_9
IL_db6a: ldloc.s V_9
IL_db6c: ldloc.s V_8
IL_db6e: bgt.s IL_dbb8
IL_db70: ldloc.s V_8
IL_db72: call string [mscorlib]System.Convert::ToString(int32)
IL_db77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db7c: stloc.s V_9
IL_db7e: ldloc.s V_9
IL_db80: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db85: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db8a: stloc.s V_10
IL_db8c: ldloc.s V_10
IL_db8e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_db93: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_db98: stloc.s V_8
IL_db9a: ldloc.s V_8
IL_db9c: call string [mscorlib]System.Convert::ToString(int32)
IL_dba1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dba6: stloc.s V_9
IL_dba8: ldloc.s V_9
IL_dbaa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dbaf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dbb4: stloc.s V_8
IL_dbb6: br.s IL_dbfe
IL_dbb8: ldloc.s V_6
IL_dbba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dbbf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dbc4: stloc.s V_9
IL_dbc6: ldloc.s V_6
IL_dbc8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dbcd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dbd2: stloc.s V_8
IL_dbd4: ldloc.s V_7
IL_dbd6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dbdb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dbe0: stloc.s V_8
IL_dbe2: ldloc.s V_9
IL_dbe4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dbe9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dbee: stloc.s V_8
IL_dbf0: ldloc.s V_8
IL_dbf2: call string [mscorlib]System.Convert::ToString(int32)
IL_dbf7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dbfc: stloc.s V_7
IL_dbfe: ldloc.s V_9
IL_dc00: ldloc.s V_10
IL_dc02: ble.s IL_dc4c
IL_dc04: ldloc.s V_10
IL_dc06: call string [mscorlib]System.Convert::ToString(int32)
IL_dc0b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dc10: stloc.s V_7
IL_dc12: ldloc.s V_6
IL_dc14: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc19: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc1e: stloc.s V_6
IL_dc20: ldloc.s V_7
IL_dc22: call string [mscorlib]System.Convert::ToString(int32)
IL_dc27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dc2c: stloc.s V_10
IL_dc2e: ldloc.s V_8
IL_dc30: call string [mscorlib]System.Convert::ToString(int32)
IL_dc35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dc3a: stloc.s V_10
IL_dc3c: ldloc.s V_7
IL_dc3e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dc43: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dc48: stloc.s V_9
IL_dc4a: br.s IL_dc92
IL_dc4c: ldloc.s V_6
IL_dc4e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc53: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc58: stloc.s V_10
IL_dc5a: ldloc.s V_8
IL_dc5c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dc61: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dc66: stloc.s V_7
IL_dc68: ldloc.s V_8
IL_dc6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc74: stloc.s V_8
IL_dc76: ldloc.s V_6
IL_dc78: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dc7d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dc82: stloc.s V_6
IL_dc84: ldloc.s V_6
IL_dc86: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc8b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc90: stloc.s V_10
IL_dc92: ldloc.s V_8
IL_dc94: ldloc.s V_6
IL_dc96: blt.s IL_dce0
IL_dc98: ldloc.s V_8
IL_dc9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dca4: stloc.s V_8
IL_dca6: ldloc.s V_10
IL_dca8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dcad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dcb2: stloc.s V_9
IL_dcb4: ldloc.s V_8
IL_dcb6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dcbb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dcc0: stloc.s V_10
IL_dcc2: ldloc.s V_7
IL_dcc4: call string [mscorlib]System.Convert::ToString(int32)
IL_dcc9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dcce: stloc.s V_9
IL_dcd0: ldloc.s V_10
IL_dcd2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dcd7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dcdc: stloc.s V_10
IL_dcde: br.s IL_dd26
IL_dce0: ldloc.s V_9
IL_dce2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dce7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dcec: stloc.s V_8
IL_dcee: ldloc.s V_7
IL_dcf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dcf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dcfa: stloc.s V_7
IL_dcfc: ldloc.s V_8
IL_dcfe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dd03: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dd08: stloc.s V_7
IL_dd0a: ldloc.s V_9
IL_dd0c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd11: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd16: stloc.s V_7
IL_dd18: ldloc.s V_7
IL_dd1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd24: stloc.s V_6
IL_dd26: ldloc.s V_8
IL_dd28: ldloc.s V_6
IL_dd2a: bge.s IL_dd74
IL_dd2c: ldloc.s V_7
IL_dd2e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd33: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd38: stloc.s V_8
IL_dd3a: ldloc.s V_9
IL_dd3c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd41: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd46: stloc.s V_9
IL_dd48: ldloc.s V_9
IL_dd4a: call string [mscorlib]System.Convert::ToString(int32)
IL_dd4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dd54: stloc.s V_7
IL_dd56: ldloc.s V_9
IL_dd58: call string [mscorlib]System.Convert::ToString(int32)
IL_dd5d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dd62: stloc.s V_6
IL_dd64: ldloc.s V_8
IL_dd66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dd6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dd70: stloc.s V_7
IL_dd72: br.s IL_ddba
IL_dd74: ldloc.s V_10
IL_dd76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dd7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dd80: stloc.s V_6
IL_dd82: ldloc.s V_10
IL_dd84: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd89: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd8e: stloc.s V_7
IL_dd90: ldloc.s V_6
IL_dd92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dd97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dd9c: stloc.s V_9
IL_dd9e: ldloc.s V_7
IL_dda0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dda5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ddaa: stloc.s V_6
IL_ddac: ldloc.s V_8
IL_ddae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ddb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ddb8: stloc.s V_6
IL_ddba: ldloc.s V_7
IL_ddbc: ldloc.s V_6
IL_ddbe: ble.s IL_de08
IL_ddc0: ldloc.s V_9
IL_ddc2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ddc7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ddcc: stloc.s V_6
IL_ddce: ldloc.s V_7
IL_ddd0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ddd5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ddda: stloc.s V_9
IL_dddc: ldloc.s V_6
IL_ddde: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dde3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dde8: stloc.s V_10
IL_ddea: ldloc.s V_7
IL_ddec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ddf1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ddf6: stloc.s V_8
IL_ddf8: ldloc.s V_9
IL_ddfa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ddff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de04: stloc.s V_10
IL_de06: br.s IL_de4e
IL_de08: ldloc.s V_9
IL_de0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_de0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_de14: stloc.s V_6
IL_de16: ldloc.s V_7
IL_de18: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_de1d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_de22: stloc.s V_8
IL_de24: ldloc.s V_9
IL_de26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_de2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_de30: stloc.s V_7
IL_de32: ldloc.s V_9
IL_de34: call string [mscorlib]System.Convert::ToString(int32)
IL_de39: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_de3e: stloc.s V_6
IL_de40: ldloc.s V_9
IL_de42: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de47: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de4c: stloc.s V_7
IL_de4e: ldloc.s V_10
IL_de50: ldloc.s V_7
IL_de52: blt.s IL_de9c
IL_de54: ldloc.s V_6
IL_de56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de60: stloc.s V_9
IL_de62: ldloc.s V_8
IL_de64: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_de69: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_de6e: stloc.s V_9
IL_de70: ldloc.s V_6
IL_de72: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_de77: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_de7c: stloc.s V_9
IL_de7e: ldloc.s V_6
IL_de80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de8a: stloc.s V_9
IL_de8c: ldloc.s V_7
IL_de8e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de93: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de98: stloc.s V_10
IL_de9a: br.s IL_dee2
IL_de9c: ldloc.s V_10
IL_de9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dea3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dea8: stloc.s V_9
IL_deaa: ldloc.s V_8
IL_deac: call string [mscorlib]System.Convert::ToString(int32)
IL_deb1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_deb6: stloc.s V_10
IL_deb8: ldloc.s V_8
IL_deba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_debf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dec4: stloc.s V_9
IL_dec6: ldloc.s V_7
IL_dec8: call string [mscorlib]System.Convert::ToString(int32)
IL_decd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ded2: stloc.s V_6
IL_ded4: ldloc.s V_6
IL_ded6: call string [mscorlib]System.Convert::ToString(int32)
IL_dedb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dee0: stloc.s V_8
IL_dee2: ldloc.s V_7
IL_dee4: ldloc.s V_6
IL_dee6: blt.s IL_df30
IL_dee8: ldloc.s V_10
IL_deea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_deef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_def4: stloc.s V_10
IL_def6: ldloc.s V_8
IL_def8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_defd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_df02: stloc.s V_9
IL_df04: ldloc.s V_8
IL_df06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df10: stloc.s V_6
IL_df12: ldloc.s V_9
IL_df14: call string [mscorlib]System.Convert::ToString(int32)
IL_df19: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_df1e: stloc.s V_7
IL_df20: ldloc.s V_8
IL_df22: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_df27: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_df2c: stloc.s V_9
IL_df2e: br.s IL_df76
IL_df30: ldloc.s V_6
IL_df32: call string [mscorlib]System.Convert::ToString(int32)
IL_df37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_df3c: stloc.s V_7
IL_df3e: ldloc.s V_7
IL_df40: call string [mscorlib]System.Convert::ToString(int32)
IL_df45: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_df4a: stloc.s V_10
IL_df4c: ldloc.s V_7
IL_df4e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df53: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df58: stloc.s V_10
IL_df5a: ldloc.s V_9
IL_df5c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df61: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df66: stloc.s V_8
IL_df68: ldloc.s V_9
IL_df6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_df6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_df74: stloc.s V_7
IL_df76: ldloc.s V_6
IL_df78: ldloc.s V_10
IL_df7a: ble.s IL_dfc4
IL_df7c: ldloc.s V_9
IL_df7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df88: stloc.s V_10
IL_df8a: ldloc.s V_9
IL_df8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df96: stloc.s V_8
IL_df98: ldloc.s V_9
IL_df9a: call string [mscorlib]System.Convert::ToString(int32)
IL_df9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dfa4: stloc.s V_8
IL_dfa6: ldloc.s V_7
IL_dfa8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dfad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dfb2: stloc.s V_6
IL_dfb4: ldloc.s V_7
IL_dfb6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dfbb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dfc0: stloc.s V_9
IL_dfc2: br.s IL_e00a
IL_dfc4: ldloc.s V_10
IL_dfc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dfcb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dfd0: stloc.s V_9
IL_dfd2: ldloc.s V_9
IL_dfd4: call string [mscorlib]System.Convert::ToString(int32)
IL_dfd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dfde: stloc.s V_10
IL_dfe0: ldloc.s V_7
IL_dfe2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dfe7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dfec: stloc.s V_9
IL_dfee: ldloc.s V_9
IL_dff0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dff5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dffa: stloc.s V_9
IL_dffc: ldloc.s V_9
IL_dffe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e003: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e008: stloc.s V_9
IL_e00a: ldloc.s V_7
IL_e00c: ldloc.s V_8
IL_e00e: bne.un.s IL_e058
IL_e010: ldloc.s V_8
IL_e012: call string [mscorlib]System.Convert::ToString(int32)
IL_e017: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e01c: stloc.s V_10
IL_e01e: ldloc.s V_10
IL_e020: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e025: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e02a: stloc.s V_9
IL_e02c: ldloc.s V_9
IL_e02e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e033: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e038: stloc.s V_8
IL_e03a: ldloc.s V_9
IL_e03c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e041: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e046: stloc.s V_9
IL_e048: ldloc.s V_7
IL_e04a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e04f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e054: stloc.s V_10
IL_e056: br.s IL_e09e
IL_e058: ldloc.s V_6
IL_e05a: call string [mscorlib]System.Convert::ToString(int32)
IL_e05f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e064: stloc.s V_8
IL_e066: ldloc.s V_8
IL_e068: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e06d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e072: stloc.s V_10
IL_e074: ldloc.s V_10
IL_e076: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e07b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e080: stloc.s V_6
IL_e082: ldloc.s V_9
IL_e084: call string [mscorlib]System.Convert::ToString(int32)
IL_e089: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e08e: stloc.s V_8
IL_e090: ldloc.s V_10
IL_e092: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e097: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e09c: stloc.s V_10
IL_e09e: ldloc.s V_7
IL_e0a0: ldloc.s V_10
IL_e0a2: ble.s IL_e0ec
IL_e0a4: ldloc.s V_9
IL_e0a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e0ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e0b0: stloc.s V_9
IL_e0b2: ldloc.s V_6
IL_e0b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e0b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e0be: stloc.s V_10
IL_e0c0: ldloc.s V_7
IL_e0c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e0c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e0cc: stloc.s V_6
IL_e0ce: ldloc.s V_7
IL_e0d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e0d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e0da: stloc.s V_10
IL_e0dc: ldloc.s V_7
IL_e0de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e0e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e0e8: stloc.s V_9
IL_e0ea: br.s IL_e132
IL_e0ec: ldloc.s V_7
IL_e0ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e0f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e0f8: stloc.s V_7
IL_e0fa: ldloc.s V_7
IL_e0fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e101: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e106: stloc.s V_9
IL_e108: ldloc.s V_8
IL_e10a: call string [mscorlib]System.Convert::ToString(int32)
IL_e10f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e114: stloc.s V_10
IL_e116: ldloc.s V_7
IL_e118: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e11d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e122: stloc.s V_9
IL_e124: ldloc.s V_8
IL_e126: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e12b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e130: stloc.s V_6
IL_e132: ldloc.s V_8
IL_e134: ldloc.s V_8
IL_e136: beq.s IL_e180
IL_e138: ldloc.s V_10
IL_e13a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e13f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e144: stloc.s V_10
IL_e146: ldloc.s V_8
IL_e148: call string [mscorlib]System.Convert::ToString(int32)
IL_e14d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e152: stloc.s V_9
IL_e154: ldloc.s V_9
IL_e156: call string [mscorlib]System.Convert::ToString(int32)
IL_e15b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e160: stloc.s V_10
IL_e162: ldloc.s V_10
IL_e164: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e169: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e16e: stloc.s V_7
IL_e170: ldloc.s V_10
IL_e172: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e177: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e17c: stloc.s V_8
IL_e17e: br.s IL_e1c6
IL_e180: ldloc.s V_9
IL_e182: call string [mscorlib]System.Convert::ToString(int32)
IL_e187: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e18c: stloc.s V_7
IL_e18e: ldloc.s V_8
IL_e190: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e195: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e19a: stloc.s V_9
IL_e19c: ldloc.s V_6
IL_e19e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1a8: stloc.s V_9
IL_e1aa: ldloc.s V_9
IL_e1ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e1b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e1b6: stloc.s V_6
IL_e1b8: ldloc.s V_10
IL_e1ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1c4: stloc.s V_10
IL_e1c6: ldloc.s V_6
IL_e1c8: ldloc.s V_8
IL_e1ca: bne.un.s IL_e214
IL_e1cc: ldloc.s V_9
IL_e1ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1d8: stloc.s V_10
IL_e1da: ldloc.s V_9
IL_e1dc: call string [mscorlib]System.Convert::ToString(int32)
IL_e1e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e1e6: stloc.s V_7
IL_e1e8: ldloc.s V_6
IL_e1ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1f4: stloc.s V_9
IL_e1f6: ldloc.s V_8
IL_e1f8: call string [mscorlib]System.Convert::ToString(int32)
IL_e1fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e202: stloc.s V_9
IL_e204: ldloc.s V_8
IL_e206: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e20b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e210: stloc.s V_8
IL_e212: br.s IL_e25a
IL_e214: ldloc.s V_9
IL_e216: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e21b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e220: stloc.s V_7
IL_e222: ldloc.s V_7
IL_e224: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e229: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e22e: stloc.s V_10
IL_e230: ldloc.s V_7
IL_e232: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e237: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e23c: stloc.s V_10
IL_e23e: ldloc.s V_7
IL_e240: call string [mscorlib]System.Convert::ToString(int32)
IL_e245: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e24a: stloc.s V_10
IL_e24c: ldloc.s V_9
IL_e24e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e253: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e258: stloc.s V_10
IL_e25a: ldloc.s V_9
IL_e25c: ldloc.s V_6
IL_e25e: bgt.s IL_e2a8
IL_e260: ldloc.s V_6
IL_e262: call string [mscorlib]System.Convert::ToString(int32)
IL_e267: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e26c: stloc.s V_8
IL_e26e: ldloc.s V_6
IL_e270: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e275: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e27a: stloc.s V_7
IL_e27c: ldloc.s V_9
IL_e27e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e283: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e288: stloc.s V_6
IL_e28a: ldloc.s V_7
IL_e28c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e291: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e296: stloc.s V_7
IL_e298: ldloc.s V_7
IL_e29a: call string [mscorlib]System.Convert::ToString(int32)
IL_e29f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2a4: stloc.s V_9
IL_e2a6: br.s IL_e2ee
IL_e2a8: ldloc.s V_6
IL_e2aa: call string [mscorlib]System.Convert::ToString(int32)
IL_e2af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2b4: stloc.s V_6
IL_e2b6: ldloc.s V_10
IL_e2b8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e2bd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e2c2: stloc.s V_7
IL_e2c4: ldloc.s V_8
IL_e2c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e2cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e2d0: stloc.s V_7
IL_e2d2: ldloc.s V_6
IL_e2d4: call string [mscorlib]System.Convert::ToString(int32)
IL_e2d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2de: stloc.s V_7
IL_e2e0: ldloc.s V_9
IL_e2e2: call string [mscorlib]System.Convert::ToString(int32)
IL_e2e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2ec: stloc.s V_7
IL_e2ee: ldloc.s V_10
IL_e2f0: ldloc.s V_10
IL_e2f2: blt.s IL_e33c
IL_e2f4: ldloc.s V_7
IL_e2f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e2fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e300: stloc.s V_7
IL_e302: ldloc.s V_6
IL_e304: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e309: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e30e: stloc.s V_8
IL_e310: ldloc.s V_6
IL_e312: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e317: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e31c: stloc.s V_9
IL_e31e: ldloc.s V_7
IL_e320: call string [mscorlib]System.Convert::ToString(int32)
IL_e325: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e32a: stloc.s V_8
IL_e32c: ldloc.s V_10
IL_e32e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e333: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e338: stloc.s V_6
IL_e33a: br.s IL_e382
IL_e33c: ldloc.s V_8
IL_e33e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e343: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e348: stloc.s V_6
IL_e34a: ldloc.s V_10
IL_e34c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e351: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e356: stloc.s V_9
IL_e358: ldloc.s V_10
IL_e35a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e35f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e364: stloc.s V_7
IL_e366: ldloc.s V_7
IL_e368: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e36d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e372: stloc.s V_8
IL_e374: ldloc.s V_7
IL_e376: call string [mscorlib]System.Convert::ToString(int32)
IL_e37b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e380: stloc.s V_6
IL_e382: ldloc.s V_10
IL_e384: ldloc.s V_10
IL_e386: beq.s IL_e3d0
IL_e388: ldloc.s V_8
IL_e38a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e38f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e394: stloc.s V_7
IL_e396: ldloc.s V_8
IL_e398: call string [mscorlib]System.Convert::ToString(int32)
IL_e39d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e3a2: stloc.s V_10
IL_e3a4: ldloc.s V_10
IL_e3a6: call string [mscorlib]System.Convert::ToString(int32)
IL_e3ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e3b0: stloc.s V_10
IL_e3b2: ldloc.s V_6
IL_e3b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e3b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e3be: stloc.s V_10
IL_e3c0: ldloc.s V_7
IL_e3c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e3c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e3cc: stloc.s V_7
IL_e3ce: br.s IL_e416
IL_e3d0: ldloc.s V_10
IL_e3d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e3d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e3dc: stloc.s V_6
IL_e3de: ldloc.s V_8
IL_e3e0: call string [mscorlib]System.Convert::ToString(int32)
IL_e3e5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e3ea: stloc.s V_7
IL_e3ec: ldloc.s V_6
IL_e3ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e3f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e3f8: stloc.s V_6
IL_e3fa: ldloc.s V_6
IL_e3fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e401: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e406: stloc.s V_8
IL_e408: ldloc.s V_7
IL_e40a: call string [mscorlib]System.Convert::ToString(int32)
IL_e40f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e414: stloc.s V_9
IL_e416: ldloc.s V_9
IL_e418: ldloc.s V_10
IL_e41a: bne.un.s IL_e464
IL_e41c: ldloc.s V_6
IL_e41e: call string [mscorlib]System.Convert::ToString(int32)
IL_e423: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e428: stloc.s V_7
IL_e42a: ldloc.s V_7
IL_e42c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e431: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e436: stloc.s V_8
IL_e438: ldloc.s V_10
IL_e43a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e43f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e444: stloc.s V_10
IL_e446: ldloc.s V_7
IL_e448: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e44d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e452: stloc.s V_6
IL_e454: ldloc.s V_9
IL_e456: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e45b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e460: stloc.s V_9
IL_e462: br.s IL_e4aa
IL_e464: ldloc.s V_8
IL_e466: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e46b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e470: stloc.s V_6
IL_e472: ldloc.s V_7
IL_e474: call string [mscorlib]System.Convert::ToString(int32)
IL_e479: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e47e: stloc.s V_8
IL_e480: ldloc.s V_6
IL_e482: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e487: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e48c: stloc.s V_8
IL_e48e: ldloc.s V_8
IL_e490: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e495: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e49a: stloc.s V_8
IL_e49c: ldloc.s V_10
IL_e49e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e4a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e4a8: stloc.s V_8
IL_e4aa: ldloc.s V_6
IL_e4ac: ldloc.s V_6
IL_e4ae: bgt.s IL_e4f8
IL_e4b0: ldloc.s V_9
IL_e4b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e4b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e4bc: stloc.s V_7
IL_e4be: ldloc.s V_6
IL_e4c0: call string [mscorlib]System.Convert::ToString(int32)
IL_e4c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e4ca: stloc.s V_7
IL_e4cc: ldloc.s V_10
IL_e4ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e4d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e4d8: stloc.s V_8
IL_e4da: ldloc.s V_9
IL_e4dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e4e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e4e6: stloc.s V_9
IL_e4e8: ldloc.s V_10
IL_e4ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e4ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e4f4: stloc.s V_9
IL_e4f6: br.s IL_e53e
IL_e4f8: ldloc.s V_9
IL_e4fa: call string [mscorlib]System.Convert::ToString(int32)
IL_e4ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e504: stloc.s V_7
IL_e506: ldloc.s V_6
IL_e508: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e50d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e512: stloc.s V_10
IL_e514: ldloc.s V_7
IL_e516: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e51b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e520: stloc.s V_9
IL_e522: ldloc.s V_10
IL_e524: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e529: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e52e: stloc.s V_10
IL_e530: ldloc.s V_8
IL_e532: call string [mscorlib]System.Convert::ToString(int32)
IL_e537: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e53c: stloc.s V_9
IL_e53e: ldloc.s V_8
IL_e540: ldloc.s V_6
IL_e542: beq.s IL_e58c
IL_e544: ldloc.s V_7
IL_e546: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e54b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e550: stloc.s V_6
IL_e552: ldloc.s V_6
IL_e554: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e559: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e55e: stloc.s V_6
IL_e560: ldloc.s V_6
IL_e562: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e567: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e56c: stloc.s V_7
IL_e56e: ldloc.s V_7
IL_e570: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e575: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e57a: stloc.s V_7
IL_e57c: ldloc.s V_8
IL_e57e: call string [mscorlib]System.Convert::ToString(int32)
IL_e583: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e588: stloc.s V_7
IL_e58a: br.s IL_e5d2
IL_e58c: ldloc.s V_10
IL_e58e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e593: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e598: stloc.s V_9
IL_e59a: ldloc.s V_10
IL_e59c: call string [mscorlib]System.Convert::ToString(int32)
IL_e5a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e5a6: stloc.s V_7
IL_e5a8: ldloc.s V_6
IL_e5aa: call string [mscorlib]System.Convert::ToString(int32)
IL_e5af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e5b4: stloc.s V_10
IL_e5b6: ldloc.s V_9
IL_e5b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e5bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e5c2: stloc.s V_7
IL_e5c4: ldloc.s V_10
IL_e5c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e5cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e5d0: stloc.s V_7
IL_e5d2: ldloc.s V_9
IL_e5d4: ldloc.s V_8
IL_e5d6: blt.s IL_e620
IL_e5d8: ldloc.s V_7
IL_e5da: call string [mscorlib]System.Convert::ToString(int32)
IL_e5df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e5e4: stloc.s V_9
IL_e5e6: ldloc.s V_8
IL_e5e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e5ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e5f2: stloc.s V_8
IL_e5f4: ldloc.s V_7
IL_e5f6: call string [mscorlib]System.Convert::ToString(int32)
IL_e5fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e600: stloc.s V_8
IL_e602: ldloc.s V_6
IL_e604: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e609: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e60e: stloc.s V_6
IL_e610: ldloc.s V_7
IL_e612: call string [mscorlib]System.Convert::ToString(int32)
IL_e617: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e61c: stloc.s V_10
IL_e61e: br.s IL_e666
IL_e620: ldloc.s V_8
IL_e622: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e627: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e62c: stloc.s V_7
IL_e62e: ldloc.s V_10
IL_e630: call string [mscorlib]System.Convert::ToString(int32)
IL_e635: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e63a: stloc.s V_8
IL_e63c: ldloc.s V_9
IL_e63e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e643: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e648: stloc.s V_6
IL_e64a: ldloc.s V_8
IL_e64c: call string [mscorlib]System.Convert::ToString(int32)
IL_e651: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e656: stloc.s V_6
IL_e658: ldloc.s V_6
IL_e65a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e65f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e664: stloc.s V_8
IL_e666: ldloc.s V_10
IL_e668: ldloc.s V_6
IL_e66a: bge.s IL_e6b4
IL_e66c: ldloc.s V_6
IL_e66e: call string [mscorlib]System.Convert::ToString(int32)
IL_e673: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e678: stloc.s V_10
IL_e67a: ldloc.s V_10
IL_e67c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e681: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e686: stloc.s V_7
IL_e688: ldloc.s V_6
IL_e68a: call string [mscorlib]System.Convert::ToString(int32)
IL_e68f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e694: stloc.s V_7
IL_e696: ldloc.s V_8
IL_e698: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e69d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e6a2: stloc.s V_9
IL_e6a4: ldloc.s V_10
IL_e6a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e6ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e6b0: stloc.s V_6
IL_e6b2: br.s IL_e6fa
IL_e6b4: ldloc.s V_10
IL_e6b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e6bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e6c0: stloc.s V_7
IL_e6c2: ldloc.s V_10
IL_e6c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e6c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e6ce: stloc.s V_8
IL_e6d0: ldloc.s V_7
IL_e6d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e6d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e6dc: stloc.s V_8
IL_e6de: ldloc.s V_8
IL_e6e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e6e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e6ea: stloc.s V_9
IL_e6ec: ldloc.s V_7
IL_e6ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e6f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e6f8: stloc.s V_6
IL_e6fa: ldloc.s V_9
IL_e6fc: ldloc.s V_8
IL_e6fe: bge.s IL_e748
IL_e700: ldloc.s V_9
IL_e702: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e707: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e70c: stloc.s V_10
IL_e70e: ldloc.s V_10
IL_e710: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e715: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e71a: stloc.s V_7
IL_e71c: ldloc.s V_6
IL_e71e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e723: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e728: stloc.s V_8
IL_e72a: ldloc.s V_7
IL_e72c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e731: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e736: stloc.s V_9
IL_e738: ldloc.s V_7
IL_e73a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e73f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e744: stloc.s V_7
IL_e746: br.s IL_e78e
IL_e748: ldloc.s V_6
IL_e74a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e74f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e754: stloc.s V_9
IL_e756: ldloc.s V_10
IL_e758: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e75d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e762: stloc.s V_7
IL_e764: ldloc.s V_7
IL_e766: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e76b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e770: stloc.s V_6
IL_e772: ldloc.s V_9
IL_e774: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e779: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e77e: stloc.s V_9
IL_e780: ldloc.s V_8
IL_e782: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e787: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e78c: stloc.s V_7
IL_e78e: ldloc.s V_8
IL_e790: ldloc.s V_7
IL_e792: bne.un.s IL_e7dc
IL_e794: ldloc.s V_8
IL_e796: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e79b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e7a0: stloc.s V_10
IL_e7a2: ldloc.s V_10
IL_e7a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e7a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e7ae: stloc.s V_6
IL_e7b0: ldloc.s V_8
IL_e7b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e7b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e7bc: stloc.s V_6
IL_e7be: ldloc.s V_10
IL_e7c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e7c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e7ca: stloc.s V_10
IL_e7cc: ldloc.s V_7
IL_e7ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e7d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e7d8: stloc.s V_6
IL_e7da: br.s IL_e822
IL_e7dc: ldloc.s V_6
IL_e7de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e7e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e7e8: stloc.s V_7
IL_e7ea: ldloc.s V_10
IL_e7ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e7f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e7f6: stloc.s V_6
IL_e7f8: ldloc.s V_9
IL_e7fa: call string [mscorlib]System.Convert::ToString(int32)
IL_e7ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e804: stloc.s V_9
IL_e806: ldloc.s V_8
IL_e808: call string [mscorlib]System.Convert::ToString(int32)
IL_e80d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e812: stloc.s V_8
IL_e814: ldloc.s V_6
IL_e816: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e81b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e820: stloc.s V_6
IL_e822: ldloc.s V_10
IL_e824: ldloc.s V_10
IL_e826: bgt.s IL_e870
IL_e828: ldloc.s V_10
IL_e82a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e82f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e834: stloc.s V_6
IL_e836: ldloc.s V_10
IL_e838: call string [mscorlib]System.Convert::ToString(int32)
IL_e83d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e842: stloc.s V_9
IL_e844: ldloc.s V_10
IL_e846: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e84b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e850: stloc.s V_7
IL_e852: ldloc.s V_8
IL_e854: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e859: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e85e: stloc.s V_7
IL_e860: ldloc.s V_10
IL_e862: call string [mscorlib]System.Convert::ToString(int32)
IL_e867: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e86c: stloc.s V_7
IL_e86e: br.s IL_e8b6
IL_e870: ldloc.s V_9
IL_e872: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e877: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e87c: stloc.s V_8
IL_e87e: ldloc.s V_8
IL_e880: call string [mscorlib]System.Convert::ToString(int32)
IL_e885: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e88a: stloc.s V_8
IL_e88c: ldloc.s V_8
IL_e88e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e893: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e898: stloc.s V_7
IL_e89a: ldloc.s V_8
IL_e89c: call string [mscorlib]System.Convert::ToString(int32)
IL_e8a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e8a6: stloc.s V_10
IL_e8a8: ldloc.s V_9
IL_e8aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e8b4: stloc.s V_7
IL_e8b6: ldloc.s V_7
IL_e8b8: ldloc.s V_6
IL_e8ba: blt.s IL_e904
IL_e8bc: ldloc.s V_6
IL_e8be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e8c8: stloc.s V_6
IL_e8ca: ldloc.s V_10
IL_e8cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e8d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e8d6: stloc.s V_7
IL_e8d8: ldloc.s V_10
IL_e8da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e8df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e8e4: stloc.s V_6
IL_e8e6: ldloc.s V_7
IL_e8e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e8f2: stloc.s V_6
IL_e8f4: ldloc.s V_10
IL_e8f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e900: stloc.s V_6
IL_e902: br.s IL_e94a
IL_e904: ldloc.s V_7
IL_e906: call string [mscorlib]System.Convert::ToString(int32)
IL_e90b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e910: stloc.s V_9
IL_e912: ldloc.s V_7
IL_e914: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e919: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e91e: stloc.s V_8
IL_e920: ldloc.s V_6
IL_e922: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e927: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e92c: stloc.s V_7
IL_e92e: ldloc.s V_10
IL_e930: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e935: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e93a: stloc.s V_8
IL_e93c: ldloc.s V_6
IL_e93e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e943: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e948: stloc.s V_7
IL_e94a: ldloc.s V_6
IL_e94c: ldloc.s V_6
IL_e94e: bge.s IL_e998
IL_e950: ldloc.s V_8
IL_e952: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e957: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e95c: stloc.s V_7
IL_e95e: ldloc.s V_8
IL_e960: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e965: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e96a: stloc.s V_10
IL_e96c: ldloc.s V_9
IL_e96e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e973: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e978: stloc.s V_10
IL_e97a: ldloc.s V_6
IL_e97c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e981: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e986: stloc.s V_9
IL_e988: ldloc.s V_8
IL_e98a: call string [mscorlib]System.Convert::ToString(int32)
IL_e98f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e994: stloc.s V_6
IL_e996: br.s IL_e9de
IL_e998: ldloc.s V_8
IL_e99a: call string [mscorlib]System.Convert::ToString(int32)
IL_e99f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9a4: stloc.s V_9
IL_e9a6: ldloc.s V_6
IL_e9a8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e9ad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e9b2: stloc.s V_7
IL_e9b4: ldloc.s V_7
IL_e9b6: call string [mscorlib]System.Convert::ToString(int32)
IL_e9bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9c0: stloc.s V_9
IL_e9c2: ldloc.s V_8
IL_e9c4: call string [mscorlib]System.Convert::ToString(int32)
IL_e9c9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9ce: stloc.s V_6
IL_e9d0: ldloc.s V_10
IL_e9d2: call string [mscorlib]System.Convert::ToString(int32)
IL_e9d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9dc: stloc.s V_10
IL_e9de: ldstr "a is: "
IL_e9e3: ldloc.s V_6
IL_e9e5: ldloc.0
IL_e9e6: add
IL_e9e7: box [mscorlib]System.Int32
IL_e9ec: call string [mscorlib]System.String::Concat(object,
object)
IL_e9f1: call void [System.Console]System.Console::WriteLine(string)
IL_e9f6: ldstr "b is: "
IL_e9fb: ldloc.s V_7
IL_e9fd: ldloc.1
IL_e9fe: add
IL_e9ff: box [mscorlib]System.Int32
IL_ea04: call string [mscorlib]System.String::Concat(object,
object)
IL_ea09: call void [System.Console]System.Console::WriteLine(string)
IL_ea0e: ldstr "c is: "
IL_ea13: ldloc.s V_8
IL_ea15: ldloc.2
IL_ea16: add
IL_ea17: box [mscorlib]System.Int32
IL_ea1c: call string [mscorlib]System.String::Concat(object,
object)
IL_ea21: call void [System.Console]System.Console::WriteLine(string)
IL_ea26: ldstr "d is: "
IL_ea2b: ldloc.s V_9
IL_ea2d: ldloc V_3
IL_ea2e: add
IL_ea2f: box [mscorlib]System.Int32
IL_ea34: call string [mscorlib]System.String::Concat(object,
object)
IL_ea39: call void [System.Console]System.Console::WriteLine(string)
IL_ea3e: ldstr "e is: "
IL_ea43: ldloc.s V_10
IL_ea45: ldloc.s V_4
IL_ea47: add
IL_ea48: ldc.i4.1
IL_ea49: add
IL_ea4a: box [mscorlib]System.Int32
IL_ea4f: call string [mscorlib]System.String::Concat(object,
object)
IL_ea54: call void [System.Console]System.Console::WriteLine(string)
IL_ea59: ldc.i4.s 100
IL_ea5b: stloc.s V_11
IL_ea5f: ldloc.s V_11
IL_ea61: ret
} // end of method CodeSize1::Main
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method CodeSize1::.ctor
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// DEFAULT_MIN_OPTS_CODE_SIZE 60000
// Code size 60001 (0xea61)
// OPTIONS: opts.MinOpts() == true
.assembly extern mscorlib { }
.assembly extern xunit.core {}
.assembly extern System.Console
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
.ver 4:0:0:0
}
.assembly CodeSize1 {}
.class private auto ansi beforefieldinit CodeSize1
extends [mscorlib]System.Object
{
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 3
.locals init (int32 V_0,
int32 V_1,
int32 V_2,
int32 V_3,
int32 V_4,
class [mscorlib]System.Random V_5,
int32 V_6,
int32 V_7,
int32 V_8,
int32 V_9,
int32 V_10,
int32 V_11)
IL_0000: ldc.i4.1
IL_0001: stloc.0
IL_0002: ldc.i4.2
IL_0003: stloc.1
IL_0004: ldc.i4.3
IL_0005: stloc.2
IL_0006: ldc.i4.4
IL_0007: stloc.3
IL_0008: ldc.i4.5
IL_0009: stloc.s V_4
IL_000b: newobj instance void [mscorlib]System.Random::.ctor()
IL_0010: stloc.s V_5
IL_0012: ldloc.s V_5
IL_0014: ldc.i4.1
IL_0015: ldc.i4.s 100
IL_0017: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_001c: stloc.s V_6
IL_001e: ldloc.s V_5
IL_0020: ldc.i4.1
IL_0021: ldc.i4.s 100
IL_0023: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_0028: stloc.s V_7
IL_002a: ldloc.s V_5
IL_002c: ldc.i4.1
IL_002d: ldc.i4.s 100
IL_002f: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_0034: stloc.s V_8
IL_0036: ldloc.s V_5
IL_0038: ldc.i4.1
IL_0039: ldc.i4.s 100
IL_003b: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_0040: stloc.s V_9
IL_0042: ldloc.s V_5
IL_0044: ldc.i4.1
IL_0045: ldc.i4.s 100
IL_0047: callvirt instance int32 [mscorlib]System.Random::Next(int32,
int32)
IL_004c: stloc.s V_10
IL_004e: ldloc.s V_6
IL_0050: ldloc.s V_7
IL_0052: bge.s IL_009c
IL_0054: ldloc.s V_10
IL_0056: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_005b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0060: stloc.s V_8
IL_0062: ldloc.s V_7
IL_0064: call string [mscorlib]System.Convert::ToString(int32)
IL_0069: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_006e: stloc.s V_7
IL_0070: ldloc.s V_10
IL_0072: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0077: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_007c: stloc.s V_8
IL_007e: ldloc.s V_7
IL_0080: call string [mscorlib]System.Convert::ToString(int32)
IL_0085: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_008a: stloc.s V_6
IL_008c: ldloc.s V_7
IL_008e: call string [mscorlib]System.Convert::ToString(int32)
IL_0093: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0098: stloc.s V_8
IL_009a: br.s IL_00e2
IL_009c: ldloc.s V_10
IL_009e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_00a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_00a8: stloc.s V_8
IL_00aa: ldloc.s V_10
IL_00ac: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_00b1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_00b6: stloc.s V_7
IL_00b8: ldloc.s V_7
IL_00ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_00bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_00c4: stloc.s V_10
IL_00c6: ldloc.s V_8
IL_00c8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_00cd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_00d2: stloc.s V_9
IL_00d4: ldloc.s V_7
IL_00d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_00db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_00e0: stloc.s V_8
IL_00e2: ldloc.s V_9
IL_00e4: ldloc.s V_6
IL_00e6: bgt.s IL_0130
IL_00e8: ldloc.s V_6
IL_00ea: call string [mscorlib]System.Convert::ToString(int32)
IL_00ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_00f4: stloc.s V_6
IL_00f6: ldloc.s V_10
IL_00f8: call string [mscorlib]System.Convert::ToString(int32)
IL_00fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0102: stloc.s V_6
IL_0104: ldloc.s V_7
IL_0106: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_010b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0110: stloc.s V_6
IL_0112: ldloc.s V_7
IL_0114: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0119: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_011e: stloc.s V_8
IL_0120: ldloc.s V_6
IL_0122: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0127: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_012c: stloc.s V_7
IL_012e: br.s IL_0176
IL_0130: ldloc.s V_6
IL_0132: call string [mscorlib]System.Convert::ToString(int32)
IL_0137: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_013c: stloc.s V_9
IL_013e: ldloc.s V_7
IL_0140: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0145: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_014a: stloc.s V_7
IL_014c: ldloc.s V_10
IL_014e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0153: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0158: stloc.s V_7
IL_015a: ldloc.s V_7
IL_015c: call string [mscorlib]System.Convert::ToString(int32)
IL_0161: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0166: stloc.s V_9
IL_0168: ldloc.s V_9
IL_016a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_016f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0174: stloc.s V_10
IL_0176: ldloc.s V_8
IL_0178: ldloc.s V_10
IL_017a: bgt.s IL_01c4
IL_017c: ldloc.s V_6
IL_017e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0183: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0188: stloc.s V_7
IL_018a: ldloc.s V_7
IL_018c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0191: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0196: stloc.s V_7
IL_0198: ldloc.s V_10
IL_019a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_019f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_01a4: stloc.s V_10
IL_01a6: ldloc.s V_7
IL_01a8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_01ad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_01b2: stloc.s V_9
IL_01b4: ldloc.s V_6
IL_01b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_01bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_01c0: stloc.s V_10
IL_01c2: br.s IL_020a
IL_01c4: ldloc.s V_8
IL_01c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_01cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_01d0: stloc.s V_8
IL_01d2: ldloc.s V_10
IL_01d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_01d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_01de: stloc.s V_7
IL_01e0: ldloc.s V_6
IL_01e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_01e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_01ec: stloc.s V_9
IL_01ee: ldloc.s V_6
IL_01f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_01f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_01fa: stloc.s V_7
IL_01fc: ldloc.s V_6
IL_01fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0203: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0208: stloc.s V_9
IL_020a: ldloc.s V_10
IL_020c: ldloc.s V_8
IL_020e: bgt.s IL_0258
IL_0210: ldloc.s V_10
IL_0212: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0217: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_021c: stloc.s V_8
IL_021e: ldloc.s V_7
IL_0220: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0225: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_022a: stloc.s V_6
IL_022c: ldloc.s V_9
IL_022e: call string [mscorlib]System.Convert::ToString(int32)
IL_0233: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0238: stloc.s V_9
IL_023a: ldloc.s V_6
IL_023c: call string [mscorlib]System.Convert::ToString(int32)
IL_0241: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0246: stloc.s V_8
IL_0248: ldloc.s V_7
IL_024a: call string [mscorlib]System.Convert::ToString(int32)
IL_024f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0254: stloc.s V_8
IL_0256: br.s IL_029e
IL_0258: ldloc.s V_10
IL_025a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_025f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0264: stloc.s V_6
IL_0266: ldloc.s V_7
IL_0268: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_026d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0272: stloc.s V_7
IL_0274: ldloc.s V_9
IL_0276: call string [mscorlib]System.Convert::ToString(int32)
IL_027b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0280: stloc.s V_10
IL_0282: ldloc.s V_10
IL_0284: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0289: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_028e: stloc.s V_10
IL_0290: ldloc.s V_10
IL_0292: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0297: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_029c: stloc.s V_6
IL_029e: ldloc.s V_6
IL_02a0: ldloc.s V_8
IL_02a2: bne.un.s IL_02ec
IL_02a4: ldloc.s V_7
IL_02a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_02ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_02b0: stloc.s V_10
IL_02b2: ldloc.s V_8
IL_02b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_02b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_02be: stloc.s V_6
IL_02c0: ldloc.s V_9
IL_02c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_02c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_02cc: stloc.s V_6
IL_02ce: ldloc.s V_6
IL_02d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_02d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_02da: stloc.s V_6
IL_02dc: ldloc.s V_10
IL_02de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_02e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_02e8: stloc.s V_6
IL_02ea: br.s IL_0332
IL_02ec: ldloc.s V_10
IL_02ee: call string [mscorlib]System.Convert::ToString(int32)
IL_02f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_02f8: stloc.s V_10
IL_02fa: ldloc.s V_8
IL_02fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0301: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0306: stloc.s V_6
IL_0308: ldloc.s V_8
IL_030a: call string [mscorlib]System.Convert::ToString(int32)
IL_030f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0314: stloc.s V_6
IL_0316: ldloc.s V_8
IL_0318: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_031d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0322: stloc.s V_7
IL_0324: ldloc.s V_7
IL_0326: call string [mscorlib]System.Convert::ToString(int32)
IL_032b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0330: stloc.s V_8
IL_0332: ldloc.s V_9
IL_0334: ldloc.s V_8
IL_0336: beq.s IL_0380
IL_0338: ldloc.s V_7
IL_033a: call string [mscorlib]System.Convert::ToString(int32)
IL_033f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0344: stloc.s V_8
IL_0346: ldloc.s V_6
IL_0348: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_034d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0352: stloc.s V_6
IL_0354: ldloc.s V_10
IL_0356: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_035b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0360: stloc.s V_8
IL_0362: ldloc.s V_7
IL_0364: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0369: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_036e: stloc.s V_9
IL_0370: ldloc.s V_7
IL_0372: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0377: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_037c: stloc.s V_8
IL_037e: br.s IL_03c6
IL_0380: ldloc.s V_8
IL_0382: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0387: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_038c: stloc.s V_6
IL_038e: ldloc.s V_10
IL_0390: call string [mscorlib]System.Convert::ToString(int32)
IL_0395: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_039a: stloc.s V_10
IL_039c: ldloc.s V_10
IL_039e: call string [mscorlib]System.Convert::ToString(int32)
IL_03a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03a8: stloc.s V_6
IL_03aa: ldloc.s V_6
IL_03ac: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_03b1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_03b6: stloc.s V_9
IL_03b8: ldloc.s V_10
IL_03ba: call string [mscorlib]System.Convert::ToString(int32)
IL_03bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03c4: stloc.s V_6
IL_03c6: ldloc.s V_6
IL_03c8: ldloc.s V_8
IL_03ca: bge.s IL_0414
IL_03cc: ldloc.s V_6
IL_03ce: call string [mscorlib]System.Convert::ToString(int32)
IL_03d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03d8: stloc.s V_8
IL_03da: ldloc.s V_9
IL_03dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_03e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_03e6: stloc.s V_9
IL_03e8: ldloc.s V_10
IL_03ea: call string [mscorlib]System.Convert::ToString(int32)
IL_03ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_03f4: stloc.s V_9
IL_03f6: ldloc.s V_9
IL_03f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_03fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0402: stloc.s V_9
IL_0404: ldloc.s V_7
IL_0406: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_040b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0410: stloc.s V_7
IL_0412: br.s IL_045a
IL_0414: ldloc.s V_7
IL_0416: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_041b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0420: stloc.s V_7
IL_0422: ldloc.s V_6
IL_0424: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0429: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_042e: stloc.s V_10
IL_0430: ldloc.s V_10
IL_0432: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0437: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_043c: stloc.s V_9
IL_043e: ldloc.s V_6
IL_0440: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0445: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_044a: stloc.s V_7
IL_044c: ldloc.s V_9
IL_044e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0453: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0458: stloc.s V_6
IL_045a: ldloc.s V_8
IL_045c: ldloc.s V_10
IL_045e: beq.s IL_04a8
IL_0460: ldloc.s V_7
IL_0462: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0467: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_046c: stloc.s V_10
IL_046e: ldloc.s V_8
IL_0470: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0475: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_047a: stloc.s V_6
IL_047c: ldloc.s V_6
IL_047e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0483: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0488: stloc.s V_10
IL_048a: ldloc.s V_7
IL_048c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0491: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0496: stloc.s V_10
IL_0498: ldloc.s V_6
IL_049a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_049f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_04a4: stloc.s V_7
IL_04a6: br.s IL_04ee
IL_04a8: ldloc.s V_7
IL_04aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_04af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_04b4: stloc.s V_9
IL_04b6: ldloc.s V_6
IL_04b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_04bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_04c2: stloc.s V_9
IL_04c4: ldloc.s V_7
IL_04c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_04cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_04d0: stloc.s V_8
IL_04d2: ldloc.s V_8
IL_04d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_04d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_04de: stloc.s V_7
IL_04e0: ldloc.s V_7
IL_04e2: call string [mscorlib]System.Convert::ToString(int32)
IL_04e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_04ec: stloc.s V_9
IL_04ee: ldloc.s V_9
IL_04f0: ldloc.s V_6
IL_04f2: blt.s IL_053c
IL_04f4: ldloc.s V_10
IL_04f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_04fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0500: stloc.s V_9
IL_0502: ldloc.s V_10
IL_0504: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0509: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_050e: stloc.s V_6
IL_0510: ldloc.s V_10
IL_0512: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0517: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_051c: stloc.s V_9
IL_051e: ldloc.s V_10
IL_0520: call string [mscorlib]System.Convert::ToString(int32)
IL_0525: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_052a: stloc.s V_10
IL_052c: ldloc.s V_6
IL_052e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0533: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0538: stloc.s V_9
IL_053a: br.s IL_0582
IL_053c: ldloc.s V_8
IL_053e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0543: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0548: stloc.s V_6
IL_054a: ldloc.s V_10
IL_054c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0551: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0556: stloc.s V_7
IL_0558: ldloc.s V_6
IL_055a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_055f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0564: stloc.s V_9
IL_0566: ldloc.s V_6
IL_0568: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_056d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0572: stloc.s V_6
IL_0574: ldloc.s V_8
IL_0576: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_057b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0580: stloc.s V_6
IL_0582: ldloc.s V_8
IL_0584: ldloc.s V_9
IL_0586: beq.s IL_05d0
IL_0588: ldloc.s V_6
IL_058a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_058f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0594: stloc.s V_7
IL_0596: ldloc.s V_9
IL_0598: call string [mscorlib]System.Convert::ToString(int32)
IL_059d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05a2: stloc.s V_6
IL_05a4: ldloc.s V_8
IL_05a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_05ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_05b0: stloc.s V_7
IL_05b2: ldloc.s V_6
IL_05b4: call string [mscorlib]System.Convert::ToString(int32)
IL_05b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05be: stloc.s V_7
IL_05c0: ldloc.s V_6
IL_05c2: call string [mscorlib]System.Convert::ToString(int32)
IL_05c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05cc: stloc.s V_7
IL_05ce: br.s IL_0616
IL_05d0: ldloc.s V_7
IL_05d2: call string [mscorlib]System.Convert::ToString(int32)
IL_05d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_05dc: stloc.s V_7
IL_05de: ldloc.s V_8
IL_05e0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_05e5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_05ea: stloc.s V_9
IL_05ec: ldloc.s V_10
IL_05ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_05f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_05f8: stloc.s V_6
IL_05fa: ldloc.s V_7
IL_05fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0601: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0606: stloc.s V_10
IL_0608: ldloc.s V_10
IL_060a: call string [mscorlib]System.Convert::ToString(int32)
IL_060f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0614: stloc.s V_10
IL_0616: ldloc.s V_6
IL_0618: ldloc.s V_6
IL_061a: blt.s IL_0664
IL_061c: ldloc.s V_9
IL_061e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0623: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0628: stloc.s V_6
IL_062a: ldloc.s V_8
IL_062c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0631: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0636: stloc.s V_6
IL_0638: ldloc.s V_7
IL_063a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_063f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0644: stloc.s V_9
IL_0646: ldloc.s V_10
IL_0648: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_064d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0652: stloc.s V_8
IL_0654: ldloc.s V_6
IL_0656: call string [mscorlib]System.Convert::ToString(int32)
IL_065b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0660: stloc.s V_10
IL_0662: br.s IL_06aa
IL_0664: ldloc.s V_8
IL_0666: call string [mscorlib]System.Convert::ToString(int32)
IL_066b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0670: stloc.s V_10
IL_0672: ldloc.s V_9
IL_0674: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0679: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_067e: stloc.s V_6
IL_0680: ldloc.s V_7
IL_0682: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0687: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_068c: stloc.s V_7
IL_068e: ldloc.s V_9
IL_0690: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0695: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_069a: stloc.s V_6
IL_069c: ldloc.s V_7
IL_069e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_06a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_06a8: stloc.s V_7
IL_06aa: ldloc.s V_10
IL_06ac: ldloc.s V_8
IL_06ae: bne.un.s IL_06f8
IL_06b0: ldloc.s V_7
IL_06b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_06b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_06bc: stloc.s V_6
IL_06be: ldloc.s V_9
IL_06c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_06c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_06ca: stloc.s V_8
IL_06cc: ldloc.s V_9
IL_06ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_06d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_06d8: stloc.s V_9
IL_06da: ldloc.s V_9
IL_06dc: call string [mscorlib]System.Convert::ToString(int32)
IL_06e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_06e6: stloc.s V_7
IL_06e8: ldloc.s V_7
IL_06ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_06ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_06f4: stloc.s V_10
IL_06f6: br.s IL_073e
IL_06f8: ldloc.s V_10
IL_06fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_06ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0704: stloc.s V_7
IL_0706: ldloc.s V_10
IL_0708: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_070d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0712: stloc.s V_7
IL_0714: ldloc.s V_7
IL_0716: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_071b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0720: stloc.s V_8
IL_0722: ldloc.s V_9
IL_0724: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0729: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_072e: stloc.s V_7
IL_0730: ldloc.s V_9
IL_0732: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0737: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_073c: stloc.s V_10
IL_073e: ldloc.s V_9
IL_0740: ldloc.s V_8
IL_0742: beq.s IL_078c
IL_0744: ldloc.s V_8
IL_0746: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_074b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0750: stloc.s V_8
IL_0752: ldloc.s V_8
IL_0754: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0759: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_075e: stloc.s V_10
IL_0760: ldloc.s V_6
IL_0762: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0767: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_076c: stloc.s V_10
IL_076e: ldloc.s V_8
IL_0770: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0775: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_077a: stloc.s V_10
IL_077c: ldloc.s V_7
IL_077e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0783: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0788: stloc.s V_9
IL_078a: br.s IL_07d2
IL_078c: ldloc.s V_8
IL_078e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0793: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0798: stloc.s V_7
IL_079a: ldloc.s V_8
IL_079c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07a1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_07a6: stloc.s V_7
IL_07a8: ldloc.s V_7
IL_07aa: call string [mscorlib]System.Convert::ToString(int32)
IL_07af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_07b4: stloc.s V_8
IL_07b6: ldloc.s V_7
IL_07b8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_07bd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_07c2: stloc.s V_6
IL_07c4: ldloc.s V_8
IL_07c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_07cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_07d0: stloc.s V_6
IL_07d2: ldloc.s V_7
IL_07d4: ldloc.s V_10
IL_07d6: beq.s IL_0820
IL_07d8: ldloc.s V_6
IL_07da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_07e4: stloc.s V_6
IL_07e6: ldloc.s V_8
IL_07e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_07f2: stloc.s V_9
IL_07f4: ldloc.s V_6
IL_07f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_07fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0800: stloc.s V_8
IL_0802: ldloc.s V_10
IL_0804: call string [mscorlib]System.Convert::ToString(int32)
IL_0809: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_080e: stloc.s V_9
IL_0810: ldloc.s V_9
IL_0812: call string [mscorlib]System.Convert::ToString(int32)
IL_0817: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_081c: stloc.s V_9
IL_081e: br.s IL_0866
IL_0820: ldloc.s V_7
IL_0822: call string [mscorlib]System.Convert::ToString(int32)
IL_0827: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_082c: stloc.s V_7
IL_082e: ldloc.s V_7
IL_0830: call string [mscorlib]System.Convert::ToString(int32)
IL_0835: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_083a: stloc.s V_7
IL_083c: ldloc.s V_7
IL_083e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0843: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0848: stloc.s V_6
IL_084a: ldloc.s V_7
IL_084c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0851: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0856: stloc.s V_7
IL_0858: ldloc.s V_8
IL_085a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_085f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0864: stloc.s V_6
IL_0866: ldloc.s V_10
IL_0868: ldloc.s V_9
IL_086a: bgt.s IL_08b4
IL_086c: ldloc.s V_10
IL_086e: call string [mscorlib]System.Convert::ToString(int32)
IL_0873: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0878: stloc.s V_9
IL_087a: ldloc.s V_9
IL_087c: call string [mscorlib]System.Convert::ToString(int32)
IL_0881: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0886: stloc.s V_7
IL_0888: ldloc.s V_6
IL_088a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_088f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0894: stloc.s V_6
IL_0896: ldloc.s V_10
IL_0898: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_089d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_08a2: stloc.s V_8
IL_08a4: ldloc.s V_9
IL_08a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_08ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_08b0: stloc.s V_7
IL_08b2: br.s IL_08fa
IL_08b4: ldloc.s V_7
IL_08b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_08bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_08c0: stloc.s V_9
IL_08c2: ldloc.s V_9
IL_08c4: call string [mscorlib]System.Convert::ToString(int32)
IL_08c9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_08ce: stloc.s V_7
IL_08d0: ldloc.s V_8
IL_08d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_08d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_08dc: stloc.s V_9
IL_08de: ldloc.s V_8
IL_08e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_08e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_08ea: stloc.s V_10
IL_08ec: ldloc.s V_8
IL_08ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_08f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_08f8: stloc.s V_6
IL_08fa: ldloc.s V_7
IL_08fc: ldloc.s V_9
IL_08fe: bgt.s IL_0948
IL_0900: ldloc.s V_10
IL_0902: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0907: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_090c: stloc.s V_6
IL_090e: ldloc.s V_6
IL_0910: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0915: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_091a: stloc.s V_9
IL_091c: ldloc.s V_10
IL_091e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0923: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0928: stloc.s V_8
IL_092a: ldloc.s V_6
IL_092c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0931: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0936: stloc.s V_6
IL_0938: ldloc.s V_8
IL_093a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_093f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0944: stloc.s V_7
IL_0946: br.s IL_098e
IL_0948: ldloc.s V_10
IL_094a: call string [mscorlib]System.Convert::ToString(int32)
IL_094f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0954: stloc.s V_9
IL_0956: ldloc.s V_6
IL_0958: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_095d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0962: stloc.s V_6
IL_0964: ldloc.s V_9
IL_0966: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_096b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0970: stloc.s V_6
IL_0972: ldloc.s V_6
IL_0974: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0979: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_097e: stloc.s V_7
IL_0980: ldloc.s V_8
IL_0982: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0987: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_098c: stloc.s V_7
IL_098e: ldloc.s V_10
IL_0990: ldloc.s V_8
IL_0992: blt.s IL_09dc
IL_0994: ldloc.s V_8
IL_0996: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_099b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_09a0: stloc.s V_6
IL_09a2: ldloc.s V_9
IL_09a4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_09a9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_09ae: stloc.s V_9
IL_09b0: ldloc.s V_8
IL_09b2: call string [mscorlib]System.Convert::ToString(int32)
IL_09b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_09bc: stloc.s V_7
IL_09be: ldloc.s V_8
IL_09c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_09c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_09ca: stloc.s V_9
IL_09cc: ldloc.s V_8
IL_09ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_09d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_09d8: stloc.s V_8
IL_09da: br.s IL_0a22
IL_09dc: ldloc.s V_10
IL_09de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_09e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_09e8: stloc.s V_10
IL_09ea: ldloc.s V_10
IL_09ec: call string [mscorlib]System.Convert::ToString(int32)
IL_09f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_09f6: stloc.s V_9
IL_09f8: ldloc.s V_10
IL_09fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_09ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a04: stloc.s V_8
IL_0a06: ldloc.s V_8
IL_0a08: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0a0d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0a12: stloc.s V_7
IL_0a14: ldloc.s V_7
IL_0a16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0a1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a20: stloc.s V_10
IL_0a22: ldloc.s V_9
IL_0a24: ldloc.s V_8
IL_0a26: blt.s IL_0a70
IL_0a28: ldloc.s V_9
IL_0a2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0a2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a34: stloc.s V_8
IL_0a36: ldloc.s V_9
IL_0a38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a42: stloc.s V_6
IL_0a44: ldloc.s V_9
IL_0a46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a50: stloc.s V_6
IL_0a52: ldloc.s V_9
IL_0a54: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0a59: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0a5e: stloc.s V_9
IL_0a60: ldloc.s V_10
IL_0a62: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a67: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a6c: stloc.s V_6
IL_0a6e: br.s IL_0ab6
IL_0a70: ldloc.s V_8
IL_0a72: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0a77: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0a7c: stloc.s V_8
IL_0a7e: ldloc.s V_8
IL_0a80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0a85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0a8a: stloc.s V_8
IL_0a8c: ldloc.s V_6
IL_0a8e: call string [mscorlib]System.Convert::ToString(int32)
IL_0a93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0a98: stloc.s V_8
IL_0a9a: ldloc.s V_8
IL_0a9c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0aa1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0aa6: stloc.s V_8
IL_0aa8: ldloc.s V_8
IL_0aaa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0aaf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ab4: stloc.s V_6
IL_0ab6: ldloc.s V_7
IL_0ab8: ldloc.s V_9
IL_0aba: bge.s IL_0b04
IL_0abc: ldloc.s V_7
IL_0abe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0ac3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0ac8: stloc.s V_6
IL_0aca: ldloc.s V_8
IL_0acc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0ad1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0ad6: stloc.s V_9
IL_0ad8: ldloc.s V_9
IL_0ada: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0adf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ae4: stloc.s V_6
IL_0ae6: ldloc.s V_10
IL_0ae8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0aed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0af2: stloc.s V_7
IL_0af4: ldloc.s V_8
IL_0af6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0afb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0b00: stloc.s V_7
IL_0b02: br.s IL_0b4a
IL_0b04: ldloc.s V_10
IL_0b06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0b0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0b10: stloc.s V_9
IL_0b12: ldloc.s V_10
IL_0b14: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b19: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b1e: stloc.s V_9
IL_0b20: ldloc.s V_8
IL_0b22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b2c: stloc.s V_6
IL_0b2e: ldloc.s V_8
IL_0b30: call string [mscorlib]System.Convert::ToString(int32)
IL_0b35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0b3a: stloc.s V_9
IL_0b3c: ldloc.s V_8
IL_0b3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b48: stloc.s V_7
IL_0b4a: ldloc.s V_8
IL_0b4c: ldloc.s V_10
IL_0b4e: ble.s IL_0b98
IL_0b50: ldloc.s V_6
IL_0b52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0b57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0b5c: stloc.s V_10
IL_0b5e: ldloc.s V_8
IL_0b60: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0b65: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0b6a: stloc.s V_9
IL_0b6c: ldloc.s V_8
IL_0b6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0b73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0b78: stloc.s V_10
IL_0b7a: ldloc.s V_9
IL_0b7c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0b81: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0b86: stloc.s V_9
IL_0b88: ldloc.s V_7
IL_0b8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0b8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0b94: stloc.s V_6
IL_0b96: br.s IL_0bde
IL_0b98: ldloc.s V_10
IL_0b9a: call string [mscorlib]System.Convert::ToString(int32)
IL_0b9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ba4: stloc.s V_10
IL_0ba6: ldloc.s V_7
IL_0ba8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0bad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0bb2: stloc.s V_9
IL_0bb4: ldloc.s V_10
IL_0bb6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0bbb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0bc0: stloc.s V_10
IL_0bc2: ldloc.s V_7
IL_0bc4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0bc9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0bce: stloc.s V_9
IL_0bd0: ldloc.s V_8
IL_0bd2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0bd7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0bdc: stloc.s V_6
IL_0bde: ldloc.s V_7
IL_0be0: ldloc.s V_8
IL_0be2: bge.s IL_0c2c
IL_0be4: ldloc.s V_6
IL_0be6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0beb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0bf0: stloc.s V_10
IL_0bf2: ldloc.s V_8
IL_0bf4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0bf9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0bfe: stloc.s V_8
IL_0c00: ldloc.s V_8
IL_0c02: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0c07: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0c0c: stloc.s V_7
IL_0c0e: ldloc.s V_9
IL_0c10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c1a: stloc.s V_8
IL_0c1c: ldloc.s V_8
IL_0c1e: call string [mscorlib]System.Convert::ToString(int32)
IL_0c23: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0c28: stloc.s V_10
IL_0c2a: br.s IL_0c72
IL_0c2c: ldloc.s V_8
IL_0c2e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c33: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c38: stloc.s V_6
IL_0c3a: ldloc.s V_10
IL_0c3c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c41: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c46: stloc.s V_8
IL_0c48: ldloc.s V_6
IL_0c4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0c4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0c54: stloc.s V_9
IL_0c56: ldloc.s V_9
IL_0c58: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0c5d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0c62: stloc.s V_6
IL_0c64: ldloc.s V_7
IL_0c66: call string [mscorlib]System.Convert::ToString(int32)
IL_0c6b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0c70: stloc.s V_7
IL_0c72: ldloc.s V_8
IL_0c74: ldloc.s V_6
IL_0c76: beq.s IL_0cc0
IL_0c78: ldloc.s V_9
IL_0c7a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0c7f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0c84: stloc.s V_6
IL_0c86: ldloc.s V_8
IL_0c88: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c8d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0c92: stloc.s V_6
IL_0c94: ldloc.s V_8
IL_0c96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0c9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ca0: stloc.s V_7
IL_0ca2: ldloc.s V_9
IL_0ca4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0ca9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0cae: stloc.s V_9
IL_0cb0: ldloc.s V_7
IL_0cb2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0cb7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0cbc: stloc.s V_7
IL_0cbe: br.s IL_0d06
IL_0cc0: ldloc.s V_8
IL_0cc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0cc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0ccc: stloc.s V_10
IL_0cce: ldloc.s V_10
IL_0cd0: call string [mscorlib]System.Convert::ToString(int32)
IL_0cd5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0cda: stloc.s V_6
IL_0cdc: ldloc.s V_8
IL_0cde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0ce3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ce8: stloc.s V_8
IL_0cea: ldloc.s V_6
IL_0cec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0cf1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0cf6: stloc.s V_6
IL_0cf8: ldloc.s V_6
IL_0cfa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0cff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0d04: stloc.s V_10
IL_0d06: ldloc.s V_8
IL_0d08: ldloc.s V_9
IL_0d0a: bge.s IL_0d54
IL_0d0c: ldloc.s V_8
IL_0d0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d18: stloc.s V_9
IL_0d1a: ldloc.s V_6
IL_0d1c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d21: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d26: stloc.s V_9
IL_0d28: ldloc.s V_6
IL_0d2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0d2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0d34: stloc.s V_10
IL_0d36: ldloc.s V_8
IL_0d38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d42: stloc.s V_7
IL_0d44: ldloc.s V_6
IL_0d46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d50: stloc.s V_7
IL_0d52: br.s IL_0d9a
IL_0d54: ldloc.s V_9
IL_0d56: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0d5b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0d60: stloc.s V_7
IL_0d62: ldloc.s V_10
IL_0d64: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d69: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d6e: stloc.s V_10
IL_0d70: ldloc.s V_9
IL_0d72: call string [mscorlib]System.Convert::ToString(int32)
IL_0d77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0d7c: stloc.s V_7
IL_0d7e: ldloc.s V_10
IL_0d80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0d85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0d8a: stloc.s V_7
IL_0d8c: ldloc.s V_7
IL_0d8e: call string [mscorlib]System.Convert::ToString(int32)
IL_0d93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0d98: stloc.s V_8
IL_0d9a: ldloc.s V_8
IL_0d9c: ldloc.s V_10
IL_0d9e: blt.s IL_0de8
IL_0da0: ldloc.s V_10
IL_0da2: call string [mscorlib]System.Convert::ToString(int32)
IL_0da7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0dac: stloc.s V_10
IL_0dae: ldloc.s V_6
IL_0db0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0db5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0dba: stloc.s V_10
IL_0dbc: ldloc.s V_8
IL_0dbe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0dc3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0dc8: stloc.s V_8
IL_0dca: ldloc.s V_8
IL_0dcc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0dd1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0dd6: stloc.s V_9
IL_0dd8: ldloc.s V_9
IL_0dda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0ddf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0de4: stloc.s V_6
IL_0de6: br.s IL_0e2e
IL_0de8: ldloc.s V_9
IL_0dea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0def: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0df4: stloc.s V_10
IL_0df6: ldloc.s V_9
IL_0df8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0dfd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e02: stloc.s V_8
IL_0e04: ldloc.s V_6
IL_0e06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e10: stloc.s V_10
IL_0e12: ldloc.s V_10
IL_0e14: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e19: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e1e: stloc.s V_9
IL_0e20: ldloc.s V_8
IL_0e22: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e27: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e2c: stloc.s V_7
IL_0e2e: ldloc.s V_10
IL_0e30: ldloc.s V_7
IL_0e32: bne.un.s IL_0e7c
IL_0e34: ldloc.s V_7
IL_0e36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e40: stloc.s V_8
IL_0e42: ldloc.s V_6
IL_0e44: call string [mscorlib]System.Convert::ToString(int32)
IL_0e49: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0e4e: stloc.s V_7
IL_0e50: ldloc.s V_9
IL_0e52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e5c: stloc.s V_9
IL_0e5e: ldloc.s V_8
IL_0e60: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0e65: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0e6a: stloc.s V_7
IL_0e6c: ldloc.s V_6
IL_0e6e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0e73: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0e78: stloc.s V_7
IL_0e7a: br.s IL_0ec2
IL_0e7c: ldloc.s V_6
IL_0e7e: call string [mscorlib]System.Convert::ToString(int32)
IL_0e83: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0e88: stloc.s V_7
IL_0e8a: ldloc.s V_7
IL_0e8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0e91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0e96: stloc.s V_8
IL_0e98: ldloc.s V_6
IL_0e9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0e9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0ea4: stloc.s V_7
IL_0ea6: ldloc.s V_9
IL_0ea8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0ead: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0eb2: stloc.s V_10
IL_0eb4: ldloc.s V_10
IL_0eb6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0ebb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0ec0: stloc.s V_6
IL_0ec2: ldloc.s V_6
IL_0ec4: ldloc.s V_7
IL_0ec6: beq.s IL_0f10
IL_0ec8: ldloc.s V_8
IL_0eca: call string [mscorlib]System.Convert::ToString(int32)
IL_0ecf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ed4: stloc.s V_6
IL_0ed6: ldloc.s V_10
IL_0ed8: call string [mscorlib]System.Convert::ToString(int32)
IL_0edd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ee2: stloc.s V_7
IL_0ee4: ldloc.s V_6
IL_0ee6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0eeb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0ef0: stloc.s V_8
IL_0ef2: ldloc.s V_6
IL_0ef4: call string [mscorlib]System.Convert::ToString(int32)
IL_0ef9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0efe: stloc.s V_6
IL_0f00: ldloc.s V_7
IL_0f02: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0f07: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0f0c: stloc.s V_9
IL_0f0e: br.s IL_0f56
IL_0f10: ldloc.s V_9
IL_0f12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f1c: stloc.s V_10
IL_0f1e: ldloc.s V_10
IL_0f20: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f25: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f2a: stloc.s V_8
IL_0f2c: ldloc.s V_7
IL_0f2e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f33: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f38: stloc.s V_6
IL_0f3a: ldloc.s V_8
IL_0f3c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0f41: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0f46: stloc.s V_7
IL_0f48: ldloc.s V_6
IL_0f4a: call string [mscorlib]System.Convert::ToString(int32)
IL_0f4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0f54: stloc.s V_7
IL_0f56: ldloc.s V_7
IL_0f58: ldloc.s V_8
IL_0f5a: bne.un.s IL_0fa4
IL_0f5c: ldloc.s V_9
IL_0f5e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f63: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f68: stloc.s V_6
IL_0f6a: ldloc.s V_6
IL_0f6c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0f71: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0f76: stloc.s V_9
IL_0f78: ldloc.s V_6
IL_0f7a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_0f7f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_0f84: stloc.s V_7
IL_0f86: ldloc.s V_8
IL_0f88: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f8d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0f92: stloc.s V_6
IL_0f94: ldloc.s V_9
IL_0f96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0f9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0fa0: stloc.s V_6
IL_0fa2: br.s IL_0fea
IL_0fa4: ldloc.s V_7
IL_0fa6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0fab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0fb0: stloc.s V_8
IL_0fb2: ldloc.s V_10
IL_0fb4: call string [mscorlib]System.Convert::ToString(int32)
IL_0fb9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0fbe: stloc.s V_6
IL_0fc0: ldloc.s V_7
IL_0fc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0fc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0fcc: stloc.s V_7
IL_0fce: ldloc.s V_7
IL_0fd0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_0fd5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_0fda: stloc.s V_6
IL_0fdc: ldloc.s V_7
IL_0fde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_0fe3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_0fe8: stloc.s V_8
IL_0fea: ldloc.s V_7
IL_0fec: ldloc.s V_7
IL_0fee: ble.s IL_1038
IL_0ff0: ldloc.s V_7
IL_0ff2: call string [mscorlib]System.Convert::ToString(int32)
IL_0ff7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_0ffc: stloc.s V_9
IL_0ffe: ldloc.s V_6
IL_1000: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1005: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_100a: stloc.s V_8
IL_100c: ldloc.s V_6
IL_100e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1013: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1018: stloc.s V_9
IL_101a: ldloc.s V_10
IL_101c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1021: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1026: stloc.s V_9
IL_1028: ldloc.s V_7
IL_102a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_102f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1034: stloc.s V_10
IL_1036: br.s IL_107e
IL_1038: ldloc.s V_7
IL_103a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_103f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1044: stloc.s V_9
IL_1046: ldloc.s V_9
IL_1048: call string [mscorlib]System.Convert::ToString(int32)
IL_104d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1052: stloc.s V_9
IL_1054: ldloc.s V_6
IL_1056: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_105b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1060: stloc.s V_8
IL_1062: ldloc.s V_10
IL_1064: call string [mscorlib]System.Convert::ToString(int32)
IL_1069: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_106e: stloc.s V_7
IL_1070: ldloc.s V_9
IL_1072: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1077: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_107c: stloc.s V_10
IL_107e: ldloc.s V_6
IL_1080: ldloc.s V_10
IL_1082: beq.s IL_10cc
IL_1084: ldloc.s V_8
IL_1086: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_108b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1090: stloc.s V_7
IL_1092: ldloc.s V_6
IL_1094: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1099: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_109e: stloc.s V_7
IL_10a0: ldloc.s V_8
IL_10a2: call string [mscorlib]System.Convert::ToString(int32)
IL_10a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_10ac: stloc.s V_6
IL_10ae: ldloc.s V_6
IL_10b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_10b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_10ba: stloc.s V_9
IL_10bc: ldloc.s V_10
IL_10be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_10c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_10c8: stloc.s V_7
IL_10ca: br.s IL_1112
IL_10cc: ldloc.s V_8
IL_10ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_10d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_10d8: stloc.s V_10
IL_10da: ldloc.s V_9
IL_10dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_10e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_10e6: stloc.s V_10
IL_10e8: ldloc.s V_9
IL_10ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_10ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_10f4: stloc.s V_8
IL_10f6: ldloc.s V_8
IL_10f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_10fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1102: stloc.s V_7
IL_1104: ldloc.s V_7
IL_1106: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_110b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1110: stloc.s V_7
IL_1112: ldloc.s V_10
IL_1114: ldloc.s V_10
IL_1116: blt.s IL_1160
IL_1118: ldloc.s V_9
IL_111a: call string [mscorlib]System.Convert::ToString(int32)
IL_111f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1124: stloc.s V_6
IL_1126: ldloc.s V_9
IL_1128: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_112d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1132: stloc.s V_10
IL_1134: ldloc.s V_6
IL_1136: call string [mscorlib]System.Convert::ToString(int32)
IL_113b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1140: stloc.s V_6
IL_1142: ldloc.s V_8
IL_1144: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1149: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_114e: stloc.s V_7
IL_1150: ldloc.s V_8
IL_1152: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1157: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_115c: stloc.s V_10
IL_115e: br.s IL_11a6
IL_1160: ldloc.s V_10
IL_1162: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1167: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_116c: stloc.s V_10
IL_116e: ldloc.s V_9
IL_1170: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1175: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_117a: stloc.s V_7
IL_117c: ldloc.s V_7
IL_117e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1183: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1188: stloc.s V_7
IL_118a: ldloc.s V_10
IL_118c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1191: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1196: stloc.s V_9
IL_1198: ldloc.s V_9
IL_119a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_119f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_11a4: stloc.s V_8
IL_11a6: ldloc.s V_7
IL_11a8: ldloc.s V_9
IL_11aa: ble.s IL_11f4
IL_11ac: ldloc.s V_7
IL_11ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_11b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_11b8: stloc.s V_7
IL_11ba: ldloc.s V_7
IL_11bc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_11c1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_11c6: stloc.s V_6
IL_11c8: ldloc.s V_9
IL_11ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_11cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_11d4: stloc.s V_9
IL_11d6: ldloc.s V_7
IL_11d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_11dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_11e2: stloc.s V_8
IL_11e4: ldloc.s V_7
IL_11e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_11eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_11f0: stloc.s V_7
IL_11f2: br.s IL_123a
IL_11f4: ldloc.s V_9
IL_11f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_11fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1200: stloc.s V_6
IL_1202: ldloc.s V_10
IL_1204: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1209: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_120e: stloc.s V_7
IL_1210: ldloc.s V_10
IL_1212: call string [mscorlib]System.Convert::ToString(int32)
IL_1217: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_121c: stloc.s V_6
IL_121e: ldloc.s V_8
IL_1220: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1225: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_122a: stloc.s V_7
IL_122c: ldloc.s V_9
IL_122e: call string [mscorlib]System.Convert::ToString(int32)
IL_1233: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1238: stloc.s V_10
IL_123a: ldloc.s V_7
IL_123c: ldloc.s V_8
IL_123e: bge.s IL_1288
IL_1240: ldloc.s V_9
IL_1242: call string [mscorlib]System.Convert::ToString(int32)
IL_1247: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_124c: stloc.s V_10
IL_124e: ldloc.s V_6
IL_1250: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1255: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_125a: stloc.s V_6
IL_125c: ldloc.s V_7
IL_125e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1263: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1268: stloc.s V_9
IL_126a: ldloc.s V_9
IL_126c: call string [mscorlib]System.Convert::ToString(int32)
IL_1271: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1276: stloc.s V_6
IL_1278: ldloc.s V_9
IL_127a: call string [mscorlib]System.Convert::ToString(int32)
IL_127f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1284: stloc.s V_6
IL_1286: br.s IL_12ce
IL_1288: ldloc.s V_8
IL_128a: call string [mscorlib]System.Convert::ToString(int32)
IL_128f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1294: stloc.s V_8
IL_1296: ldloc.s V_6
IL_1298: call string [mscorlib]System.Convert::ToString(int32)
IL_129d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_12a2: stloc.s V_6
IL_12a4: ldloc.s V_9
IL_12a6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_12ab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_12b0: stloc.s V_9
IL_12b2: ldloc.s V_9
IL_12b4: call string [mscorlib]System.Convert::ToString(int32)
IL_12b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_12be: stloc.s V_8
IL_12c0: ldloc.s V_6
IL_12c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_12c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_12cc: stloc.s V_10
IL_12ce: ldloc.s V_7
IL_12d0: ldloc.s V_9
IL_12d2: beq.s IL_131c
IL_12d4: ldloc.s V_9
IL_12d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_12db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_12e0: stloc.s V_9
IL_12e2: ldloc.s V_9
IL_12e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_12e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_12ee: stloc.s V_9
IL_12f0: ldloc.s V_9
IL_12f2: call string [mscorlib]System.Convert::ToString(int32)
IL_12f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_12fc: stloc.s V_8
IL_12fe: ldloc.s V_10
IL_1300: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1305: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_130a: stloc.s V_8
IL_130c: ldloc.s V_9
IL_130e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1313: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1318: stloc.s V_6
IL_131a: br.s IL_1362
IL_131c: ldloc.s V_6
IL_131e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1323: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1328: stloc.s V_9
IL_132a: ldloc.s V_9
IL_132c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1331: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1336: stloc.s V_7
IL_1338: ldloc.s V_8
IL_133a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_133f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1344: stloc.s V_8
IL_1346: ldloc.s V_6
IL_1348: call string [mscorlib]System.Convert::ToString(int32)
IL_134d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1352: stloc.s V_10
IL_1354: ldloc.s V_8
IL_1356: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_135b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1360: stloc.s V_8
IL_1362: ldloc.s V_6
IL_1364: ldloc.s V_8
IL_1366: ble.s IL_13b0
IL_1368: ldloc.s V_6
IL_136a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_136f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1374: stloc.s V_6
IL_1376: ldloc.s V_9
IL_1378: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_137d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1382: stloc.s V_10
IL_1384: ldloc.s V_10
IL_1386: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_138b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1390: stloc.s V_10
IL_1392: ldloc.s V_7
IL_1394: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1399: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_139e: stloc.s V_7
IL_13a0: ldloc.s V_8
IL_13a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_13a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_13ac: stloc.s V_9
IL_13ae: br.s IL_13f6
IL_13b0: ldloc.s V_8
IL_13b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_13b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_13bc: stloc.s V_10
IL_13be: ldloc.s V_6
IL_13c0: call string [mscorlib]System.Convert::ToString(int32)
IL_13c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_13ca: stloc.s V_6
IL_13cc: ldloc.s V_7
IL_13ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_13d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_13d8: stloc.s V_10
IL_13da: ldloc.s V_7
IL_13dc: call string [mscorlib]System.Convert::ToString(int32)
IL_13e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_13e6: stloc.s V_7
IL_13e8: ldloc.s V_10
IL_13ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_13ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_13f4: stloc.s V_8
IL_13f6: ldloc.s V_8
IL_13f8: ldloc.s V_10
IL_13fa: bge.s IL_1444
IL_13fc: ldloc.s V_9
IL_13fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1403: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1408: stloc.s V_8
IL_140a: ldloc.s V_8
IL_140c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1411: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1416: stloc.s V_8
IL_1418: ldloc.s V_9
IL_141a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_141f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1424: stloc.s V_7
IL_1426: ldloc.s V_9
IL_1428: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_142d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1432: stloc.s V_10
IL_1434: ldloc.s V_7
IL_1436: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_143b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1440: stloc.s V_7
IL_1442: br.s IL_148a
IL_1444: ldloc.s V_9
IL_1446: call string [mscorlib]System.Convert::ToString(int32)
IL_144b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1450: stloc.s V_8
IL_1452: ldloc.s V_8
IL_1454: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1459: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_145e: stloc.s V_6
IL_1460: ldloc.s V_8
IL_1462: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1467: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_146c: stloc.s V_8
IL_146e: ldloc.s V_6
IL_1470: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1475: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_147a: stloc.s V_9
IL_147c: ldloc.s V_8
IL_147e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1483: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1488: stloc.s V_7
IL_148a: ldloc.s V_6
IL_148c: ldloc.s V_9
IL_148e: beq.s IL_14d8
IL_1490: ldloc.s V_7
IL_1492: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1497: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_149c: stloc.s V_7
IL_149e: ldloc.s V_8
IL_14a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_14a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_14aa: stloc.s V_9
IL_14ac: ldloc.s V_6
IL_14ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_14b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_14b8: stloc.s V_6
IL_14ba: ldloc.s V_9
IL_14bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_14c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_14c6: stloc.s V_7
IL_14c8: ldloc.s V_7
IL_14ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_14cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_14d4: stloc.s V_8
IL_14d6: br.s IL_151e
IL_14d8: ldloc.s V_8
IL_14da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_14df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_14e4: stloc.s V_10
IL_14e6: ldloc.s V_8
IL_14e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_14ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_14f2: stloc.s V_7
IL_14f4: ldloc.s V_10
IL_14f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_14fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1500: stloc.s V_8
IL_1502: ldloc.s V_10
IL_1504: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1509: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_150e: stloc.s V_7
IL_1510: ldloc.s V_6
IL_1512: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1517: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_151c: stloc.s V_7
IL_151e: ldloc.s V_10
IL_1520: ldloc.s V_7
IL_1522: blt.s IL_156c
IL_1524: ldloc.s V_6
IL_1526: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_152b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1530: stloc.s V_6
IL_1532: ldloc.s V_6
IL_1534: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1539: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_153e: stloc.s V_6
IL_1540: ldloc.s V_6
IL_1542: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1547: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_154c: stloc.s V_7
IL_154e: ldloc.s V_6
IL_1550: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1555: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_155a: stloc.s V_7
IL_155c: ldloc.s V_10
IL_155e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1563: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1568: stloc.s V_9
IL_156a: br.s IL_15b2
IL_156c: ldloc.s V_7
IL_156e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1573: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1578: stloc.s V_9
IL_157a: ldloc.s V_10
IL_157c: call string [mscorlib]System.Convert::ToString(int32)
IL_1581: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1586: stloc.s V_10
IL_1588: ldloc.s V_6
IL_158a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_158f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1594: stloc.s V_7
IL_1596: ldloc.s V_8
IL_1598: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_159d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_15a2: stloc.s V_7
IL_15a4: ldloc.s V_9
IL_15a6: call string [mscorlib]System.Convert::ToString(int32)
IL_15ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_15b0: stloc.s V_8
IL_15b2: ldloc.s V_10
IL_15b4: ldloc.s V_7
IL_15b6: beq.s IL_1600
IL_15b8: ldloc.s V_6
IL_15ba: call string [mscorlib]System.Convert::ToString(int32)
IL_15bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_15c4: stloc.s V_8
IL_15c6: ldloc.s V_6
IL_15c8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_15cd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_15d2: stloc.s V_6
IL_15d4: ldloc.s V_6
IL_15d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_15db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_15e0: stloc.s V_8
IL_15e2: ldloc.s V_10
IL_15e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_15e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_15ee: stloc.s V_7
IL_15f0: ldloc.s V_9
IL_15f2: call string [mscorlib]System.Convert::ToString(int32)
IL_15f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_15fc: stloc.s V_10
IL_15fe: br.s IL_1646
IL_1600: ldloc.s V_8
IL_1602: call string [mscorlib]System.Convert::ToString(int32)
IL_1607: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_160c: stloc.s V_6
IL_160e: ldloc.s V_6
IL_1610: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1615: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_161a: stloc.s V_10
IL_161c: ldloc.s V_10
IL_161e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1623: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1628: stloc.s V_8
IL_162a: ldloc.s V_9
IL_162c: call string [mscorlib]System.Convert::ToString(int32)
IL_1631: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1636: stloc.s V_6
IL_1638: ldloc.s V_7
IL_163a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_163f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1644: stloc.s V_8
IL_1646: ldloc.s V_7
IL_1648: ldloc.s V_7
IL_164a: blt.s IL_1694
IL_164c: ldloc.s V_8
IL_164e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1653: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1658: stloc.s V_9
IL_165a: ldloc.s V_8
IL_165c: call string [mscorlib]System.Convert::ToString(int32)
IL_1661: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1666: stloc.s V_9
IL_1668: ldloc.s V_9
IL_166a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_166f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1674: stloc.s V_7
IL_1676: ldloc.s V_9
IL_1678: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_167d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1682: stloc.s V_9
IL_1684: ldloc.s V_8
IL_1686: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_168b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1690: stloc.s V_7
IL_1692: br.s IL_16da
IL_1694: ldloc.s V_6
IL_1696: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_169b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_16a0: stloc.s V_9
IL_16a2: ldloc.s V_7
IL_16a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16ae: stloc.s V_6
IL_16b0: ldloc.s V_10
IL_16b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16bc: stloc.s V_6
IL_16be: ldloc.s V_7
IL_16c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16ca: stloc.s V_6
IL_16cc: ldloc.s V_7
IL_16ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_16d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_16d8: stloc.s V_8
IL_16da: ldloc.s V_10
IL_16dc: ldloc.s V_10
IL_16de: bne.un.s IL_1728
IL_16e0: ldloc.s V_8
IL_16e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_16e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_16ec: stloc.s V_8
IL_16ee: ldloc.s V_10
IL_16f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_16f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_16fa: stloc.s V_6
IL_16fc: ldloc.s V_6
IL_16fe: call string [mscorlib]System.Convert::ToString(int32)
IL_1703: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1708: stloc.s V_6
IL_170a: ldloc.s V_10
IL_170c: call string [mscorlib]System.Convert::ToString(int32)
IL_1711: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1716: stloc.s V_8
IL_1718: ldloc.s V_6
IL_171a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_171f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1724: stloc.s V_7
IL_1726: br.s IL_176e
IL_1728: ldloc.s V_8
IL_172a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_172f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1734: stloc.s V_6
IL_1736: ldloc.s V_6
IL_1738: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_173d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1742: stloc.s V_7
IL_1744: ldloc.s V_7
IL_1746: call string [mscorlib]System.Convert::ToString(int32)
IL_174b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1750: stloc.s V_10
IL_1752: ldloc.s V_8
IL_1754: call string [mscorlib]System.Convert::ToString(int32)
IL_1759: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_175e: stloc.s V_9
IL_1760: ldloc.s V_9
IL_1762: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1767: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_176c: stloc.s V_6
IL_176e: ldloc.s V_10
IL_1770: ldloc.s V_6
IL_1772: bge.s IL_17bc
IL_1774: ldloc.s V_7
IL_1776: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_177b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1780: stloc.s V_10
IL_1782: ldloc.s V_6
IL_1784: call string [mscorlib]System.Convert::ToString(int32)
IL_1789: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_178e: stloc.s V_6
IL_1790: ldloc.s V_8
IL_1792: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1797: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_179c: stloc.s V_6
IL_179e: ldloc.s V_7
IL_17a0: call string [mscorlib]System.Convert::ToString(int32)
IL_17a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_17aa: stloc.s V_7
IL_17ac: ldloc.s V_7
IL_17ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_17b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_17b8: stloc.s V_10
IL_17ba: br.s IL_1802
IL_17bc: ldloc.s V_6
IL_17be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_17c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_17c8: stloc.s V_6
IL_17ca: ldloc.s V_9
IL_17cc: call string [mscorlib]System.Convert::ToString(int32)
IL_17d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_17d6: stloc.s V_10
IL_17d8: ldloc.s V_9
IL_17da: call string [mscorlib]System.Convert::ToString(int32)
IL_17df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_17e4: stloc.s V_9
IL_17e6: ldloc.s V_8
IL_17e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_17ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_17f2: stloc.s V_7
IL_17f4: ldloc.s V_9
IL_17f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_17fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1800: stloc.s V_8
IL_1802: ldloc.s V_6
IL_1804: ldloc.s V_9
IL_1806: blt.s IL_1850
IL_1808: ldloc.s V_6
IL_180a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_180f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1814: stloc.s V_10
IL_1816: ldloc.s V_6
IL_1818: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_181d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1822: stloc.s V_10
IL_1824: ldloc.s V_6
IL_1826: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_182b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1830: stloc.s V_8
IL_1832: ldloc.s V_10
IL_1834: call string [mscorlib]System.Convert::ToString(int32)
IL_1839: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_183e: stloc.s V_8
IL_1840: ldloc.s V_10
IL_1842: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1847: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_184c: stloc.s V_10
IL_184e: br.s IL_1896
IL_1850: ldloc.s V_8
IL_1852: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1857: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_185c: stloc.s V_7
IL_185e: ldloc.s V_7
IL_1860: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1865: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_186a: stloc.s V_9
IL_186c: ldloc.s V_7
IL_186e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1873: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1878: stloc.s V_7
IL_187a: ldloc.s V_6
IL_187c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1881: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1886: stloc.s V_9
IL_1888: ldloc.s V_6
IL_188a: call string [mscorlib]System.Convert::ToString(int32)
IL_188f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1894: stloc.s V_8
IL_1896: ldloc.s V_10
IL_1898: ldloc.s V_8
IL_189a: beq.s IL_18e4
IL_189c: ldloc.s V_8
IL_189e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18a8: stloc.s V_8
IL_18aa: ldloc.s V_8
IL_18ac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18b1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18b6: stloc.s V_6
IL_18b8: ldloc.s V_8
IL_18ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_18bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_18c4: stloc.s V_10
IL_18c6: ldloc.s V_10
IL_18c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18d2: stloc.s V_9
IL_18d4: ldloc.s V_9
IL_18d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_18db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_18e0: stloc.s V_10
IL_18e2: br.s IL_192a
IL_18e4: ldloc.s V_10
IL_18e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_18eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_18f0: stloc.s V_9
IL_18f2: ldloc.s V_9
IL_18f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_18f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_18fe: stloc.s V_6
IL_1900: ldloc.s V_6
IL_1902: call string [mscorlib]System.Convert::ToString(int32)
IL_1907: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_190c: stloc.s V_8
IL_190e: ldloc.s V_6
IL_1910: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1915: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_191a: stloc.s V_10
IL_191c: ldloc.s V_7
IL_191e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1923: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1928: stloc.s V_6
IL_192a: ldloc.s V_9
IL_192c: ldloc.s V_8
IL_192e: beq.s IL_1978
IL_1930: ldloc.s V_9
IL_1932: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1937: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_193c: stloc.s V_7
IL_193e: ldloc.s V_10
IL_1940: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1945: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_194a: stloc.s V_7
IL_194c: ldloc.s V_6
IL_194e: call string [mscorlib]System.Convert::ToString(int32)
IL_1953: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1958: stloc.s V_6
IL_195a: ldloc.s V_6
IL_195c: call string [mscorlib]System.Convert::ToString(int32)
IL_1961: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1966: stloc.s V_10
IL_1968: ldloc.s V_8
IL_196a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_196f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1974: stloc.s V_7
IL_1976: br.s IL_19be
IL_1978: ldloc.s V_8
IL_197a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_197f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1984: stloc.s V_8
IL_1986: ldloc.s V_6
IL_1988: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_198d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1992: stloc.s V_7
IL_1994: ldloc.s V_8
IL_1996: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_199b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_19a0: stloc.s V_10
IL_19a2: ldloc.s V_10
IL_19a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_19a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_19ae: stloc.s V_8
IL_19b0: ldloc.s V_8
IL_19b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_19b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_19bc: stloc.s V_7
IL_19be: ldloc.s V_9
IL_19c0: ldloc.s V_8
IL_19c2: ble.s IL_1a0c
IL_19c4: ldloc.s V_10
IL_19c6: call string [mscorlib]System.Convert::ToString(int32)
IL_19cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_19d0: stloc.s V_7
IL_19d2: ldloc.s V_6
IL_19d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_19d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_19de: stloc.s V_6
IL_19e0: ldloc.s V_6
IL_19e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_19e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_19ec: stloc.s V_10
IL_19ee: ldloc.s V_10
IL_19f0: call string [mscorlib]System.Convert::ToString(int32)
IL_19f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_19fa: stloc.s V_9
IL_19fc: ldloc.s V_8
IL_19fe: call string [mscorlib]System.Convert::ToString(int32)
IL_1a03: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a08: stloc.s V_10
IL_1a0a: br.s IL_1a52
IL_1a0c: ldloc.s V_7
IL_1a0e: call string [mscorlib]System.Convert::ToString(int32)
IL_1a13: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a18: stloc.s V_8
IL_1a1a: ldloc.s V_10
IL_1a1c: call string [mscorlib]System.Convert::ToString(int32)
IL_1a21: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a26: stloc.s V_10
IL_1a28: ldloc.s V_7
IL_1a2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a34: stloc.s V_7
IL_1a36: ldloc.s V_9
IL_1a38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1a3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1a42: stloc.s V_6
IL_1a44: ldloc.s V_10
IL_1a46: call string [mscorlib]System.Convert::ToString(int32)
IL_1a4b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1a50: stloc.s V_10
IL_1a52: ldloc.s V_9
IL_1a54: ldloc.s V_6
IL_1a56: bgt.s IL_1aa0
IL_1a58: ldloc.s V_7
IL_1a5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1a5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1a64: stloc.s V_9
IL_1a66: ldloc.s V_8
IL_1a68: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a6d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a72: stloc.s V_8
IL_1a74: ldloc.s V_9
IL_1a76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a80: stloc.s V_8
IL_1a82: ldloc.s V_8
IL_1a84: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1a89: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1a8e: stloc.s V_6
IL_1a90: ldloc.s V_10
IL_1a92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1a97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1a9c: stloc.s V_9
IL_1a9e: br.s IL_1ae6
IL_1aa0: ldloc.s V_7
IL_1aa2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1aa7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1aac: stloc.s V_8
IL_1aae: ldloc.s V_10
IL_1ab0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1ab5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1aba: stloc.s V_6
IL_1abc: ldloc.s V_6
IL_1abe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1ac3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ac8: stloc.s V_8
IL_1aca: ldloc.s V_7
IL_1acc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1ad1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ad6: stloc.s V_8
IL_1ad8: ldloc.s V_8
IL_1ada: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1adf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ae4: stloc.s V_8
IL_1ae6: ldloc.s V_10
IL_1ae8: ldloc.s V_10
IL_1aea: ble.s IL_1b34
IL_1aec: ldloc.s V_9
IL_1aee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1af3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1af8: stloc.s V_10
IL_1afa: ldloc.s V_6
IL_1afc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1b01: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1b06: stloc.s V_7
IL_1b08: ldloc.s V_7
IL_1b0a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b0f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b14: stloc.s V_9
IL_1b16: ldloc.s V_7
IL_1b18: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b1d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b22: stloc.s V_7
IL_1b24: ldloc.s V_8
IL_1b26: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b2b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b30: stloc.s V_10
IL_1b32: br.s IL_1b7a
IL_1b34: ldloc.s V_10
IL_1b36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b40: stloc.s V_10
IL_1b42: ldloc.s V_8
IL_1b44: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1b49: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1b4e: stloc.s V_8
IL_1b50: ldloc.s V_10
IL_1b52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b5c: stloc.s V_6
IL_1b5e: ldloc.s V_7
IL_1b60: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b65: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b6a: stloc.s V_6
IL_1b6c: ldloc.s V_7
IL_1b6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1b73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1b78: stloc.s V_7
IL_1b7a: ldloc.s V_6
IL_1b7c: ldloc.s V_7
IL_1b7e: ble.s IL_1bc8
IL_1b80: ldloc.s V_6
IL_1b82: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1b87: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1b8c: stloc.s V_9
IL_1b8e: ldloc.s V_10
IL_1b90: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1b95: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1b9a: stloc.s V_6
IL_1b9c: ldloc.s V_10
IL_1b9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1ba3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1ba8: stloc.s V_7
IL_1baa: ldloc.s V_9
IL_1bac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1bb1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1bb6: stloc.s V_9
IL_1bb8: ldloc.s V_9
IL_1bba: call string [mscorlib]System.Convert::ToString(int32)
IL_1bbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1bc4: stloc.s V_9
IL_1bc6: br.s IL_1c0e
IL_1bc8: ldloc.s V_9
IL_1bca: call string [mscorlib]System.Convert::ToString(int32)
IL_1bcf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1bd4: stloc.s V_9
IL_1bd6: ldloc.s V_8
IL_1bd8: call string [mscorlib]System.Convert::ToString(int32)
IL_1bdd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1be2: stloc.s V_9
IL_1be4: ldloc.s V_6
IL_1be6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1beb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1bf0: stloc.s V_7
IL_1bf2: ldloc.s V_10
IL_1bf4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1bf9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1bfe: stloc.s V_10
IL_1c00: ldloc.s V_8
IL_1c02: call string [mscorlib]System.Convert::ToString(int32)
IL_1c07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c0c: stloc.s V_9
IL_1c0e: ldloc.s V_6
IL_1c10: ldloc.s V_7
IL_1c12: ble.s IL_1c5c
IL_1c14: ldloc.s V_8
IL_1c16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1c1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1c20: stloc.s V_6
IL_1c22: ldloc.s V_6
IL_1c24: call string [mscorlib]System.Convert::ToString(int32)
IL_1c29: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c2e: stloc.s V_8
IL_1c30: ldloc.s V_6
IL_1c32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c3c: stloc.s V_6
IL_1c3e: ldloc.s V_10
IL_1c40: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c45: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c4a: stloc.s V_9
IL_1c4c: ldloc.s V_7
IL_1c4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c58: stloc.s V_6
IL_1c5a: br.s IL_1ca2
IL_1c5c: ldloc.s V_7
IL_1c5e: call string [mscorlib]System.Convert::ToString(int32)
IL_1c63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c68: stloc.s V_8
IL_1c6a: ldloc.s V_8
IL_1c6c: call string [mscorlib]System.Convert::ToString(int32)
IL_1c71: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1c76: stloc.s V_8
IL_1c78: ldloc.s V_6
IL_1c7a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c7f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c84: stloc.s V_9
IL_1c86: ldloc.s V_6
IL_1c88: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c8d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1c92: stloc.s V_6
IL_1c94: ldloc.s V_10
IL_1c96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1c9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1ca0: stloc.s V_10
IL_1ca2: ldloc.s V_9
IL_1ca4: ldloc.s V_6
IL_1ca6: blt.s IL_1cf0
IL_1ca8: ldloc.s V_8
IL_1caa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1caf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1cb4: stloc.s V_8
IL_1cb6: ldloc.s V_10
IL_1cb8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1cbd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1cc2: stloc.s V_7
IL_1cc4: ldloc.s V_7
IL_1cc6: call string [mscorlib]System.Convert::ToString(int32)
IL_1ccb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1cd0: stloc.s V_8
IL_1cd2: ldloc.s V_7
IL_1cd4: call string [mscorlib]System.Convert::ToString(int32)
IL_1cd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1cde: stloc.s V_8
IL_1ce0: ldloc.s V_9
IL_1ce2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ce7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1cec: stloc.s V_6
IL_1cee: br.s IL_1d36
IL_1cf0: ldloc.s V_6
IL_1cf2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1cf7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1cfc: stloc.s V_8
IL_1cfe: ldloc.s V_8
IL_1d00: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d05: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d0a: stloc.s V_6
IL_1d0c: ldloc.s V_9
IL_1d0e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d13: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d18: stloc.s V_10
IL_1d1a: ldloc.s V_8
IL_1d1c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d21: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d26: stloc.s V_8
IL_1d28: ldloc.s V_10
IL_1d2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d34: stloc.s V_6
IL_1d36: ldloc.s V_7
IL_1d38: ldloc.s V_9
IL_1d3a: ble.s IL_1d84
IL_1d3c: ldloc.s V_8
IL_1d3e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d43: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d48: stloc.s V_10
IL_1d4a: ldloc.s V_7
IL_1d4c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d51: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d56: stloc.s V_9
IL_1d58: ldloc.s V_10
IL_1d5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d64: stloc.s V_8
IL_1d66: ldloc.s V_9
IL_1d68: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d6d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d72: stloc.s V_6
IL_1d74: ldloc.s V_8
IL_1d76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1d7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1d80: stloc.s V_9
IL_1d82: br.s IL_1dca
IL_1d84: ldloc.s V_7
IL_1d86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d90: stloc.s V_7
IL_1d92: ldloc.s V_6
IL_1d94: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1d99: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1d9e: stloc.s V_10
IL_1da0: ldloc.s V_8
IL_1da2: call string [mscorlib]System.Convert::ToString(int32)
IL_1da7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1dac: stloc.s V_8
IL_1dae: ldloc.s V_10
IL_1db0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1db5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1dba: stloc.s V_10
IL_1dbc: ldloc.s V_8
IL_1dbe: call string [mscorlib]System.Convert::ToString(int32)
IL_1dc3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1dc8: stloc.s V_8
IL_1dca: ldloc.s V_7
IL_1dcc: ldloc.s V_7
IL_1dce: blt.s IL_1e18
IL_1dd0: ldloc.s V_7
IL_1dd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1dd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ddc: stloc.s V_8
IL_1dde: ldloc.s V_10
IL_1de0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1de5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1dea: stloc.s V_6
IL_1dec: ldloc.s V_8
IL_1dee: call string [mscorlib]System.Convert::ToString(int32)
IL_1df3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1df8: stloc.s V_10
IL_1dfa: ldloc.s V_10
IL_1dfc: call string [mscorlib]System.Convert::ToString(int32)
IL_1e01: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1e06: stloc.s V_9
IL_1e08: ldloc.s V_7
IL_1e0a: call string [mscorlib]System.Convert::ToString(int32)
IL_1e0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1e14: stloc.s V_6
IL_1e16: br.s IL_1e5e
IL_1e18: ldloc.s V_10
IL_1e1a: call string [mscorlib]System.Convert::ToString(int32)
IL_1e1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1e24: stloc.s V_10
IL_1e26: ldloc.s V_6
IL_1e28: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e2d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e32: stloc.s V_9
IL_1e34: ldloc.s V_9
IL_1e36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1e3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1e40: stloc.s V_9
IL_1e42: ldloc.s V_7
IL_1e44: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1e49: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1e4e: stloc.s V_6
IL_1e50: ldloc.s V_8
IL_1e52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e5c: stloc.s V_7
IL_1e5e: ldloc.s V_9
IL_1e60: ldloc.s V_10
IL_1e62: bgt.s IL_1eac
IL_1e64: ldloc.s V_9
IL_1e66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e70: stloc.s V_7
IL_1e72: ldloc.s V_8
IL_1e74: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e79: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e7e: stloc.s V_7
IL_1e80: ldloc.s V_9
IL_1e82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1e87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1e8c: stloc.s V_7
IL_1e8e: ldloc.s V_6
IL_1e90: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1e95: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1e9a: stloc.s V_9
IL_1e9c: ldloc.s V_7
IL_1e9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ea3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1ea8: stloc.s V_8
IL_1eaa: br.s IL_1ef2
IL_1eac: ldloc.s V_10
IL_1eae: call string [mscorlib]System.Convert::ToString(int32)
IL_1eb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1eb8: stloc.s V_9
IL_1eba: ldloc.s V_6
IL_1ebc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ec1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1ec6: stloc.s V_8
IL_1ec8: ldloc.s V_10
IL_1eca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1ecf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1ed4: stloc.s V_7
IL_1ed6: ldloc.s V_10
IL_1ed8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1edd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1ee2: stloc.s V_8
IL_1ee4: ldloc.s V_8
IL_1ee6: call string [mscorlib]System.Convert::ToString(int32)
IL_1eeb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1ef0: stloc.s V_9
IL_1ef2: ldloc.s V_6
IL_1ef4: ldloc.s V_6
IL_1ef6: beq.s IL_1f40
IL_1ef8: ldloc.s V_8
IL_1efa: call string [mscorlib]System.Convert::ToString(int32)
IL_1eff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f04: stloc.s V_6
IL_1f06: ldloc.s V_8
IL_1f08: call string [mscorlib]System.Convert::ToString(int32)
IL_1f0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f12: stloc.s V_8
IL_1f14: ldloc.s V_6
IL_1f16: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1f1b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1f20: stloc.s V_7
IL_1f22: ldloc.s V_8
IL_1f24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1f29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1f2e: stloc.s V_7
IL_1f30: ldloc.s V_6
IL_1f32: call string [mscorlib]System.Convert::ToString(int32)
IL_1f37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f3c: stloc.s V_9
IL_1f3e: br.s IL_1f86
IL_1f40: ldloc.s V_8
IL_1f42: call string [mscorlib]System.Convert::ToString(int32)
IL_1f47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f4c: stloc.s V_6
IL_1f4e: ldloc.s V_10
IL_1f50: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1f55: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1f5a: stloc.s V_9
IL_1f5c: ldloc.s V_7
IL_1f5e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1f63: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1f68: stloc.s V_9
IL_1f6a: ldloc.s V_6
IL_1f6c: call string [mscorlib]System.Convert::ToString(int32)
IL_1f71: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f76: stloc.s V_10
IL_1f78: ldloc.s V_8
IL_1f7a: call string [mscorlib]System.Convert::ToString(int32)
IL_1f7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1f84: stloc.s V_9
IL_1f86: ldloc.s V_10
IL_1f88: ldloc.s V_9
IL_1f8a: blt.s IL_1fd4
IL_1f8c: ldloc.s V_6
IL_1f8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1f93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1f98: stloc.s V_6
IL_1f9a: ldloc.s V_10
IL_1f9c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1fa1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1fa6: stloc.s V_9
IL_1fa8: ldloc.s V_7
IL_1faa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1faf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1fb4: stloc.s V_7
IL_1fb6: ldloc.s V_6
IL_1fb8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_1fbd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_1fc2: stloc.s V_6
IL_1fc4: ldloc.s V_8
IL_1fc6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_1fcb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_1fd0: stloc.s V_8
IL_1fd2: br.s IL_201a
IL_1fd4: ldloc.s V_6
IL_1fd6: call string [mscorlib]System.Convert::ToString(int32)
IL_1fdb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_1fe0: stloc.s V_9
IL_1fe2: ldloc.s V_6
IL_1fe4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1fe9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1fee: stloc.s V_10
IL_1ff0: ldloc.s V_9
IL_1ff2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_1ff7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_1ffc: stloc.s V_6
IL_1ffe: ldloc.s V_10
IL_2000: call string [mscorlib]System.Convert::ToString(int32)
IL_2005: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_200a: stloc.s V_7
IL_200c: ldloc.s V_10
IL_200e: call string [mscorlib]System.Convert::ToString(int32)
IL_2013: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2018: stloc.s V_8
IL_201a: ldloc.s V_10
IL_201c: ldloc.s V_6
IL_201e: bgt.s IL_2068
IL_2020: ldloc.s V_7
IL_2022: call string [mscorlib]System.Convert::ToString(int32)
IL_2027: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_202c: stloc.s V_9
IL_202e: ldloc.s V_7
IL_2030: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2035: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_203a: stloc.s V_6
IL_203c: ldloc.s V_10
IL_203e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2043: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2048: stloc.s V_9
IL_204a: ldloc.s V_10
IL_204c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2051: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2056: stloc.s V_9
IL_2058: ldloc.s V_10
IL_205a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_205f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2064: stloc.s V_6
IL_2066: br.s IL_20ae
IL_2068: ldloc.s V_10
IL_206a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_206f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2074: stloc.s V_9
IL_2076: ldloc.s V_8
IL_2078: call string [mscorlib]System.Convert::ToString(int32)
IL_207d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2082: stloc.s V_8
IL_2084: ldloc.s V_6
IL_2086: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_208b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2090: stloc.s V_9
IL_2092: ldloc.s V_8
IL_2094: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2099: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_209e: stloc.s V_8
IL_20a0: ldloc.s V_8
IL_20a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_20a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_20ac: stloc.s V_10
IL_20ae: ldloc.s V_8
IL_20b0: ldloc.s V_6
IL_20b2: blt.s IL_20fc
IL_20b4: ldloc.s V_6
IL_20b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_20bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_20c0: stloc.s V_6
IL_20c2: ldloc.s V_6
IL_20c4: call string [mscorlib]System.Convert::ToString(int32)
IL_20c9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_20ce: stloc.s V_7
IL_20d0: ldloc.s V_6
IL_20d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_20d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_20dc: stloc.s V_9
IL_20de: ldloc.s V_8
IL_20e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_20e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_20ea: stloc.s V_7
IL_20ec: ldloc.s V_7
IL_20ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_20f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_20f8: stloc.s V_10
IL_20fa: br.s IL_2142
IL_20fc: ldloc.s V_9
IL_20fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2103: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2108: stloc.s V_6
IL_210a: ldloc.s V_8
IL_210c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2111: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2116: stloc.s V_10
IL_2118: ldloc.s V_9
IL_211a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_211f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2124: stloc.s V_8
IL_2126: ldloc.s V_6
IL_2128: call string [mscorlib]System.Convert::ToString(int32)
IL_212d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2132: stloc.s V_6
IL_2134: ldloc.s V_8
IL_2136: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_213b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2140: stloc.s V_9
IL_2142: ldloc.s V_7
IL_2144: ldloc.s V_7
IL_2146: blt.s IL_2190
IL_2148: ldloc.s V_8
IL_214a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_214f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2154: stloc.s V_9
IL_2156: ldloc.s V_7
IL_2158: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_215d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2162: stloc.s V_9
IL_2164: ldloc.s V_7
IL_2166: call string [mscorlib]System.Convert::ToString(int32)
IL_216b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2170: stloc.s V_10
IL_2172: ldloc.s V_8
IL_2174: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2179: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_217e: stloc.s V_8
IL_2180: ldloc.s V_6
IL_2182: call string [mscorlib]System.Convert::ToString(int32)
IL_2187: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_218c: stloc.s V_9
IL_218e: br.s IL_21d6
IL_2190: ldloc.s V_10
IL_2192: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2197: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_219c: stloc.s V_7
IL_219e: ldloc.s V_7
IL_21a0: call string [mscorlib]System.Convert::ToString(int32)
IL_21a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_21aa: stloc.s V_9
IL_21ac: ldloc.s V_10
IL_21ae: call string [mscorlib]System.Convert::ToString(int32)
IL_21b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_21b8: stloc.s V_9
IL_21ba: ldloc.s V_6
IL_21bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_21c6: stloc.s V_8
IL_21c8: ldloc.s V_7
IL_21ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_21d4: stloc.s V_6
IL_21d6: ldloc.s V_10
IL_21d8: ldloc.s V_7
IL_21da: bgt.s IL_2224
IL_21dc: ldloc.s V_7
IL_21de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_21e8: stloc.s V_6
IL_21ea: ldloc.s V_8
IL_21ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_21f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_21f6: stloc.s V_9
IL_21f8: ldloc.s V_8
IL_21fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_21ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2204: stloc.s V_7
IL_2206: ldloc.s V_8
IL_2208: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_220d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2212: stloc.s V_6
IL_2214: ldloc.s V_10
IL_2216: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_221b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2220: stloc.s V_6
IL_2222: br.s IL_226a
IL_2224: ldloc.s V_10
IL_2226: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_222b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2230: stloc.s V_10
IL_2232: ldloc.s V_9
IL_2234: call string [mscorlib]System.Convert::ToString(int32)
IL_2239: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_223e: stloc.s V_8
IL_2240: ldloc.s V_7
IL_2242: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2247: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_224c: stloc.s V_6
IL_224e: ldloc.s V_7
IL_2250: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2255: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_225a: stloc.s V_9
IL_225c: ldloc.s V_9
IL_225e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2263: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2268: stloc.s V_7
IL_226a: ldloc.s V_9
IL_226c: ldloc.s V_8
IL_226e: ble.s IL_22b8
IL_2270: ldloc.s V_8
IL_2272: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2277: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_227c: stloc.s V_7
IL_227e: ldloc.s V_9
IL_2280: call string [mscorlib]System.Convert::ToString(int32)
IL_2285: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_228a: stloc.s V_10
IL_228c: ldloc.s V_8
IL_228e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2293: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2298: stloc.s V_8
IL_229a: ldloc.s V_8
IL_229c: call string [mscorlib]System.Convert::ToString(int32)
IL_22a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_22a6: stloc.s V_9
IL_22a8: ldloc.s V_9
IL_22aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_22af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_22b4: stloc.s V_7
IL_22b6: br.s IL_22fe
IL_22b8: ldloc.s V_9
IL_22ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22c4: stloc.s V_6
IL_22c6: ldloc.s V_7
IL_22c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22d2: stloc.s V_8
IL_22d4: ldloc.s V_6
IL_22d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22e0: stloc.s V_8
IL_22e2: ldloc.s V_10
IL_22e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_22e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_22ee: stloc.s V_10
IL_22f0: ldloc.s V_6
IL_22f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_22f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_22fc: stloc.s V_7
IL_22fe: ldloc.s V_6
IL_2300: ldloc.s V_7
IL_2302: bne.un.s IL_234c
IL_2304: ldloc.s V_6
IL_2306: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_230b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2310: stloc.s V_6
IL_2312: ldloc.s V_8
IL_2314: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2319: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_231e: stloc.s V_8
IL_2320: ldloc.s V_7
IL_2322: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2327: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_232c: stloc.s V_7
IL_232e: ldloc.s V_7
IL_2330: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2335: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_233a: stloc.s V_6
IL_233c: ldloc.s V_10
IL_233e: call string [mscorlib]System.Convert::ToString(int32)
IL_2343: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2348: stloc.s V_10
IL_234a: br.s IL_2392
IL_234c: ldloc.s V_9
IL_234e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2353: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2358: stloc.s V_8
IL_235a: ldloc.s V_9
IL_235c: call string [mscorlib]System.Convert::ToString(int32)
IL_2361: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2366: stloc.s V_6
IL_2368: ldloc.s V_8
IL_236a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_236f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2374: stloc.s V_7
IL_2376: ldloc.s V_10
IL_2378: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_237d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2382: stloc.s V_8
IL_2384: ldloc.s V_7
IL_2386: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_238b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2390: stloc.s V_9
IL_2392: ldloc.s V_6
IL_2394: ldloc.s V_9
IL_2396: bge.s IL_23e0
IL_2398: ldloc.s V_8
IL_239a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_239f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_23a4: stloc.s V_6
IL_23a6: ldloc.s V_6
IL_23a8: call string [mscorlib]System.Convert::ToString(int32)
IL_23ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_23b2: stloc.s V_9
IL_23b4: ldloc.s V_10
IL_23b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_23bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_23c0: stloc.s V_6
IL_23c2: ldloc.s V_9
IL_23c4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_23c9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_23ce: stloc.s V_10
IL_23d0: ldloc.s V_7
IL_23d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_23d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_23dc: stloc.s V_10
IL_23de: br.s IL_2426
IL_23e0: ldloc.s V_10
IL_23e2: call string [mscorlib]System.Convert::ToString(int32)
IL_23e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_23ec: stloc.s V_6
IL_23ee: ldloc.s V_8
IL_23f0: call string [mscorlib]System.Convert::ToString(int32)
IL_23f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_23fa: stloc.s V_8
IL_23fc: ldloc.s V_10
IL_23fe: call string [mscorlib]System.Convert::ToString(int32)
IL_2403: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2408: stloc.s V_9
IL_240a: ldloc.s V_10
IL_240c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2411: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2416: stloc.s V_8
IL_2418: ldloc.s V_10
IL_241a: call string [mscorlib]System.Convert::ToString(int32)
IL_241f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2424: stloc.s V_9
IL_2426: ldloc.s V_10
IL_2428: ldloc.s V_7
IL_242a: beq.s IL_2474
IL_242c: ldloc.s V_7
IL_242e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2433: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2438: stloc.s V_9
IL_243a: ldloc.s V_8
IL_243c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2441: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2446: stloc.s V_8
IL_2448: ldloc.s V_7
IL_244a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_244f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2454: stloc.s V_9
IL_2456: ldloc.s V_8
IL_2458: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_245d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2462: stloc.s V_9
IL_2464: ldloc.s V_6
IL_2466: call string [mscorlib]System.Convert::ToString(int32)
IL_246b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2470: stloc.s V_9
IL_2472: br.s IL_24ba
IL_2474: ldloc.s V_8
IL_2476: call string [mscorlib]System.Convert::ToString(int32)
IL_247b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2480: stloc.s V_8
IL_2482: ldloc.s V_7
IL_2484: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2489: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_248e: stloc.s V_7
IL_2490: ldloc.s V_8
IL_2492: call string [mscorlib]System.Convert::ToString(int32)
IL_2497: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_249c: stloc.s V_6
IL_249e: ldloc.s V_9
IL_24a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_24a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_24aa: stloc.s V_8
IL_24ac: ldloc.s V_8
IL_24ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_24b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_24b8: stloc.s V_6
IL_24ba: ldloc.s V_10
IL_24bc: ldloc.s V_8
IL_24be: ble.s IL_2508
IL_24c0: ldloc.s V_6
IL_24c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_24c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_24cc: stloc.s V_8
IL_24ce: ldloc.s V_9
IL_24d0: call string [mscorlib]System.Convert::ToString(int32)
IL_24d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_24da: stloc.s V_10
IL_24dc: ldloc.s V_9
IL_24de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_24e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_24e8: stloc.s V_8
IL_24ea: ldloc.s V_7
IL_24ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_24f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_24f6: stloc.s V_6
IL_24f8: ldloc.s V_7
IL_24fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_24ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2504: stloc.s V_8
IL_2506: br.s IL_254e
IL_2508: ldloc.s V_6
IL_250a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_250f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2514: stloc.s V_10
IL_2516: ldloc.s V_10
IL_2518: call string [mscorlib]System.Convert::ToString(int32)
IL_251d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2522: stloc.s V_8
IL_2524: ldloc.s V_7
IL_2526: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_252b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2530: stloc.s V_10
IL_2532: ldloc.s V_10
IL_2534: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2539: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_253e: stloc.s V_9
IL_2540: ldloc.s V_9
IL_2542: call string [mscorlib]System.Convert::ToString(int32)
IL_2547: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_254c: stloc.s V_9
IL_254e: ldloc.s V_9
IL_2550: ldloc.s V_8
IL_2552: bne.un.s IL_259c
IL_2554: ldloc.s V_8
IL_2556: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_255b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2560: stloc.s V_10
IL_2562: ldloc.s V_10
IL_2564: call string [mscorlib]System.Convert::ToString(int32)
IL_2569: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_256e: stloc.s V_6
IL_2570: ldloc.s V_6
IL_2572: call string [mscorlib]System.Convert::ToString(int32)
IL_2577: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_257c: stloc.s V_9
IL_257e: ldloc.s V_9
IL_2580: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2585: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_258a: stloc.s V_9
IL_258c: ldloc.s V_7
IL_258e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2593: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2598: stloc.s V_7
IL_259a: br.s IL_25e2
IL_259c: ldloc.s V_7
IL_259e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_25a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_25a8: stloc.s V_7
IL_25aa: ldloc.s V_7
IL_25ac: call string [mscorlib]System.Convert::ToString(int32)
IL_25b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25b6: stloc.s V_8
IL_25b8: ldloc.s V_9
IL_25ba: call string [mscorlib]System.Convert::ToString(int32)
IL_25bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25c4: stloc.s V_8
IL_25c6: ldloc.s V_9
IL_25c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_25cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_25d2: stloc.s V_10
IL_25d4: ldloc.s V_7
IL_25d6: call string [mscorlib]System.Convert::ToString(int32)
IL_25db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25e0: stloc.s V_10
IL_25e2: ldloc.s V_7
IL_25e4: ldloc.s V_6
IL_25e6: ble.s IL_2630
IL_25e8: ldloc.s V_8
IL_25ea: call string [mscorlib]System.Convert::ToString(int32)
IL_25ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_25f4: stloc.s V_10
IL_25f6: ldloc.s V_8
IL_25f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_25fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2602: stloc.s V_10
IL_2604: ldloc.s V_6
IL_2606: call string [mscorlib]System.Convert::ToString(int32)
IL_260b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2610: stloc.s V_6
IL_2612: ldloc.s V_8
IL_2614: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2619: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_261e: stloc.s V_10
IL_2620: ldloc.s V_10
IL_2622: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2627: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_262c: stloc.s V_8
IL_262e: br.s IL_2676
IL_2630: ldloc.s V_7
IL_2632: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2637: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_263c: stloc.s V_9
IL_263e: ldloc.s V_6
IL_2640: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2645: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_264a: stloc.s V_7
IL_264c: ldloc.s V_9
IL_264e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2653: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2658: stloc.s V_6
IL_265a: ldloc.s V_8
IL_265c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2661: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2666: stloc.s V_9
IL_2668: ldloc.s V_10
IL_266a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_266f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2674: stloc.s V_6
IL_2676: ldloc.s V_8
IL_2678: ldloc.s V_9
IL_267a: beq.s IL_26c4
IL_267c: ldloc.s V_8
IL_267e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2683: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2688: stloc.s V_8
IL_268a: ldloc.s V_8
IL_268c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2691: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2696: stloc.s V_9
IL_2698: ldloc.s V_10
IL_269a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_269f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_26a4: stloc.s V_9
IL_26a6: ldloc.s V_7
IL_26a8: call string [mscorlib]System.Convert::ToString(int32)
IL_26ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_26b2: stloc.s V_7
IL_26b4: ldloc.s V_9
IL_26b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_26bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_26c0: stloc.s V_7
IL_26c2: br.s IL_270a
IL_26c4: ldloc.s V_7
IL_26c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_26cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_26d0: stloc.s V_10
IL_26d2: ldloc.s V_6
IL_26d4: call string [mscorlib]System.Convert::ToString(int32)
IL_26d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_26de: stloc.s V_10
IL_26e0: ldloc.s V_6
IL_26e2: call string [mscorlib]System.Convert::ToString(int32)
IL_26e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_26ec: stloc.s V_6
IL_26ee: ldloc.s V_8
IL_26f0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_26f5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_26fa: stloc.s V_10
IL_26fc: ldloc.s V_9
IL_26fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2703: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2708: stloc.s V_6
IL_270a: ldloc.s V_6
IL_270c: ldloc.s V_9
IL_270e: ble.s IL_2758
IL_2710: ldloc.s V_6
IL_2712: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2717: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_271c: stloc.s V_9
IL_271e: ldloc.s V_10
IL_2720: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2725: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_272a: stloc.s V_7
IL_272c: ldloc.s V_10
IL_272e: call string [mscorlib]System.Convert::ToString(int32)
IL_2733: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2738: stloc.s V_10
IL_273a: ldloc.s V_9
IL_273c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2741: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2746: stloc.s V_6
IL_2748: ldloc.s V_10
IL_274a: call string [mscorlib]System.Convert::ToString(int32)
IL_274f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2754: stloc.s V_7
IL_2756: br.s IL_279e
IL_2758: ldloc.s V_10
IL_275a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_275f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2764: stloc.s V_9
IL_2766: ldloc.s V_10
IL_2768: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_276d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2772: stloc.s V_9
IL_2774: ldloc.s V_9
IL_2776: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_277b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2780: stloc.s V_9
IL_2782: ldloc.s V_8
IL_2784: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2789: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_278e: stloc.s V_7
IL_2790: ldloc.s V_8
IL_2792: call string [mscorlib]System.Convert::ToString(int32)
IL_2797: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_279c: stloc.s V_10
IL_279e: ldloc.s V_6
IL_27a0: ldloc.s V_9
IL_27a2: bge.s IL_27ec
IL_27a4: ldloc.s V_6
IL_27a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_27ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_27b0: stloc.s V_9
IL_27b2: ldloc.s V_6
IL_27b4: call string [mscorlib]System.Convert::ToString(int32)
IL_27b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_27be: stloc.s V_9
IL_27c0: ldloc.s V_10
IL_27c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_27c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_27cc: stloc.s V_7
IL_27ce: ldloc.s V_9
IL_27d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_27d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_27da: stloc.s V_6
IL_27dc: ldloc.s V_8
IL_27de: call string [mscorlib]System.Convert::ToString(int32)
IL_27e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_27e8: stloc.s V_8
IL_27ea: br.s IL_2832
IL_27ec: ldloc.s V_9
IL_27ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_27f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_27f8: stloc.s V_9
IL_27fa: ldloc.s V_6
IL_27fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2801: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2806: stloc.s V_9
IL_2808: ldloc.s V_9
IL_280a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_280f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2814: stloc.s V_10
IL_2816: ldloc.s V_6
IL_2818: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_281d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2822: stloc.s V_7
IL_2824: ldloc.s V_7
IL_2826: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_282b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2830: stloc.s V_8
IL_2832: ldloc.s V_10
IL_2834: ldloc.s V_9
IL_2836: bgt.s IL_2880
IL_2838: ldloc.s V_6
IL_283a: call string [mscorlib]System.Convert::ToString(int32)
IL_283f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2844: stloc.s V_6
IL_2846: ldloc.s V_8
IL_2848: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_284d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2852: stloc.s V_10
IL_2854: ldloc.s V_10
IL_2856: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_285b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2860: stloc.s V_9
IL_2862: ldloc.s V_8
IL_2864: call string [mscorlib]System.Convert::ToString(int32)
IL_2869: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_286e: stloc.s V_10
IL_2870: ldloc.s V_7
IL_2872: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2877: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_287c: stloc.s V_6
IL_287e: br.s IL_28c6
IL_2880: ldloc.s V_6
IL_2882: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2887: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_288c: stloc.s V_10
IL_288e: ldloc.s V_10
IL_2890: call string [mscorlib]System.Convert::ToString(int32)
IL_2895: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_289a: stloc.s V_9
IL_289c: ldloc.s V_8
IL_289e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_28a8: stloc.s V_8
IL_28aa: ldloc.s V_8
IL_28ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_28b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_28b6: stloc.s V_8
IL_28b8: ldloc.s V_6
IL_28ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_28c4: stloc.s V_10
IL_28c6: ldloc.s V_8
IL_28c8: ldloc.s V_6
IL_28ca: bne.un.s IL_2914
IL_28cc: ldloc.s V_10
IL_28ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_28d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_28d8: stloc.s V_10
IL_28da: ldloc.s V_7
IL_28dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_28e6: stloc.s V_8
IL_28e8: ldloc.s V_10
IL_28ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_28ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_28f4: stloc.s V_6
IL_28f6: ldloc.s V_8
IL_28f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_28fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2902: stloc.s V_6
IL_2904: ldloc.s V_7
IL_2906: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_290b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2910: stloc.s V_6
IL_2912: br.s IL_295a
IL_2914: ldloc.s V_9
IL_2916: call string [mscorlib]System.Convert::ToString(int32)
IL_291b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2920: stloc.s V_10
IL_2922: ldloc.s V_7
IL_2924: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2929: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_292e: stloc.s V_6
IL_2930: ldloc.s V_9
IL_2932: call string [mscorlib]System.Convert::ToString(int32)
IL_2937: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_293c: stloc.s V_10
IL_293e: ldloc.s V_9
IL_2940: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2945: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_294a: stloc.s V_9
IL_294c: ldloc.s V_9
IL_294e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2953: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2958: stloc.s V_6
IL_295a: ldloc.s V_6
IL_295c: ldloc.s V_6
IL_295e: beq.s IL_29a8
IL_2960: ldloc.s V_8
IL_2962: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2967: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_296c: stloc.s V_8
IL_296e: ldloc.s V_8
IL_2970: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2975: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_297a: stloc.s V_7
IL_297c: ldloc.s V_8
IL_297e: call string [mscorlib]System.Convert::ToString(int32)
IL_2983: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2988: stloc.s V_10
IL_298a: ldloc.s V_10
IL_298c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2991: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2996: stloc.s V_10
IL_2998: ldloc.s V_7
IL_299a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_299f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_29a4: stloc.s V_10
IL_29a6: br.s IL_29ee
IL_29a8: ldloc.s V_6
IL_29aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_29af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_29b4: stloc.s V_7
IL_29b6: ldloc.s V_9
IL_29b8: call string [mscorlib]System.Convert::ToString(int32)
IL_29bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_29c2: stloc.s V_7
IL_29c4: ldloc.s V_10
IL_29c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_29cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_29d0: stloc.s V_9
IL_29d2: ldloc.s V_8
IL_29d4: call string [mscorlib]System.Convert::ToString(int32)
IL_29d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_29de: stloc.s V_7
IL_29e0: ldloc.s V_7
IL_29e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_29e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_29ec: stloc.s V_9
IL_29ee: ldloc.s V_7
IL_29f0: ldloc.s V_10
IL_29f2: bge.s IL_2a3c
IL_29f4: ldloc.s V_10
IL_29f6: call string [mscorlib]System.Convert::ToString(int32)
IL_29fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a00: stloc.s V_7
IL_2a02: ldloc.s V_6
IL_2a04: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2a09: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2a0e: stloc.s V_10
IL_2a10: ldloc.s V_7
IL_2a12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2a17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2a1c: stloc.s V_7
IL_2a1e: ldloc.s V_6
IL_2a20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2a25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2a2a: stloc.s V_10
IL_2a2c: ldloc.s V_10
IL_2a2e: call string [mscorlib]System.Convert::ToString(int32)
IL_2a33: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a38: stloc.s V_9
IL_2a3a: br.s IL_2a82
IL_2a3c: ldloc.s V_9
IL_2a3e: call string [mscorlib]System.Convert::ToString(int32)
IL_2a43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a48: stloc.s V_8
IL_2a4a: ldloc.s V_7
IL_2a4c: call string [mscorlib]System.Convert::ToString(int32)
IL_2a51: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a56: stloc.s V_8
IL_2a58: ldloc.s V_7
IL_2a5a: call string [mscorlib]System.Convert::ToString(int32)
IL_2a5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2a64: stloc.s V_8
IL_2a66: ldloc.s V_9
IL_2a68: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2a6d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2a72: stloc.s V_9
IL_2a74: ldloc.s V_8
IL_2a76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2a7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2a80: stloc.s V_6
IL_2a82: ldloc.s V_9
IL_2a84: ldloc.s V_6
IL_2a86: bge.s IL_2ad0
IL_2a88: ldloc.s V_9
IL_2a8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2a8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2a94: stloc.s V_6
IL_2a96: ldloc.s V_9
IL_2a98: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2a9d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2aa2: stloc.s V_7
IL_2aa4: ldloc.s V_8
IL_2aa6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2aab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2ab0: stloc.s V_6
IL_2ab2: ldloc.s V_6
IL_2ab4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ab9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2abe: stloc.s V_7
IL_2ac0: ldloc.s V_6
IL_2ac2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2ac7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2acc: stloc.s V_9
IL_2ace: br.s IL_2b16
IL_2ad0: ldloc.s V_7
IL_2ad2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2ad7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2adc: stloc.s V_8
IL_2ade: ldloc.s V_9
IL_2ae0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ae5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2aea: stloc.s V_8
IL_2aec: ldloc.s V_10
IL_2aee: call string [mscorlib]System.Convert::ToString(int32)
IL_2af3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2af8: stloc.s V_8
IL_2afa: ldloc.s V_7
IL_2afc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2b01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2b06: stloc.s V_9
IL_2b08: ldloc.s V_10
IL_2b0a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b0f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b14: stloc.s V_7
IL_2b16: ldloc.s V_9
IL_2b18: ldloc.s V_7
IL_2b1a: bne.un.s IL_2b64
IL_2b1c: ldloc.s V_10
IL_2b1e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2b23: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2b28: stloc.s V_6
IL_2b2a: ldloc.s V_7
IL_2b2c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2b31: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2b36: stloc.s V_6
IL_2b38: ldloc.s V_8
IL_2b3a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b3f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b44: stloc.s V_6
IL_2b46: ldloc.s V_9
IL_2b48: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2b4d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2b52: stloc.s V_10
IL_2b54: ldloc.s V_9
IL_2b56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2b5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2b60: stloc.s V_7
IL_2b62: br.s IL_2baa
IL_2b64: ldloc.s V_6
IL_2b66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b70: stloc.s V_9
IL_2b72: ldloc.s V_9
IL_2b74: call string [mscorlib]System.Convert::ToString(int32)
IL_2b79: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2b7e: stloc.s V_6
IL_2b80: ldloc.s V_6
IL_2b82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2b87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2b8c: stloc.s V_7
IL_2b8e: ldloc.s V_7
IL_2b90: call string [mscorlib]System.Convert::ToString(int32)
IL_2b95: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2b9a: stloc.s V_10
IL_2b9c: ldloc.s V_9
IL_2b9e: call string [mscorlib]System.Convert::ToString(int32)
IL_2ba3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ba8: stloc.s V_7
IL_2baa: ldloc.s V_8
IL_2bac: ldloc.s V_7
IL_2bae: blt.s IL_2bf8
IL_2bb0: ldloc.s V_9
IL_2bb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bbc: stloc.s V_9
IL_2bbe: ldloc.s V_6
IL_2bc0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bc5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bca: stloc.s V_6
IL_2bcc: ldloc.s V_7
IL_2bce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bd3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bd8: stloc.s V_6
IL_2bda: ldloc.s V_8
IL_2bdc: call string [mscorlib]System.Convert::ToString(int32)
IL_2be1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2be6: stloc.s V_7
IL_2be8: ldloc.s V_7
IL_2bea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2bef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2bf4: stloc.s V_6
IL_2bf6: br.s IL_2c3e
IL_2bf8: ldloc.s V_10
IL_2bfa: call string [mscorlib]System.Convert::ToString(int32)
IL_2bff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c04: stloc.s V_9
IL_2c06: ldloc.s V_10
IL_2c08: call string [mscorlib]System.Convert::ToString(int32)
IL_2c0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c12: stloc.s V_10
IL_2c14: ldloc.s V_7
IL_2c16: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2c1b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2c20: stloc.s V_8
IL_2c22: ldloc.s V_7
IL_2c24: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2c29: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2c2e: stloc.s V_10
IL_2c30: ldloc.s V_10
IL_2c32: call string [mscorlib]System.Convert::ToString(int32)
IL_2c37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c3c: stloc.s V_10
IL_2c3e: ldloc.s V_8
IL_2c40: ldloc.s V_8
IL_2c42: beq.s IL_2c8c
IL_2c44: ldloc.s V_8
IL_2c46: call string [mscorlib]System.Convert::ToString(int32)
IL_2c4b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c50: stloc.s V_8
IL_2c52: ldloc.s V_6
IL_2c54: call string [mscorlib]System.Convert::ToString(int32)
IL_2c59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c5e: stloc.s V_10
IL_2c60: ldloc.s V_7
IL_2c62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2c67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2c6c: stloc.s V_10
IL_2c6e: ldloc.s V_10
IL_2c70: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2c75: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2c7a: stloc.s V_8
IL_2c7c: ldloc.s V_6
IL_2c7e: call string [mscorlib]System.Convert::ToString(int32)
IL_2c83: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c88: stloc.s V_8
IL_2c8a: br.s IL_2cd2
IL_2c8c: ldloc.s V_10
IL_2c8e: call string [mscorlib]System.Convert::ToString(int32)
IL_2c93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2c98: stloc.s V_6
IL_2c9a: ldloc.s V_10
IL_2c9c: call string [mscorlib]System.Convert::ToString(int32)
IL_2ca1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ca6: stloc.s V_10
IL_2ca8: ldloc.s V_8
IL_2caa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2caf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2cb4: stloc.s V_7
IL_2cb6: ldloc.s V_6
IL_2cb8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2cbd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2cc2: stloc.s V_8
IL_2cc4: ldloc.s V_9
IL_2cc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2ccb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2cd0: stloc.s V_9
IL_2cd2: ldloc.s V_7
IL_2cd4: ldloc.s V_6
IL_2cd6: blt.s IL_2d20
IL_2cd8: ldloc.s V_10
IL_2cda: call string [mscorlib]System.Convert::ToString(int32)
IL_2cdf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ce4: stloc.s V_10
IL_2ce6: ldloc.s V_6
IL_2ce8: call string [mscorlib]System.Convert::ToString(int32)
IL_2ced: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2cf2: stloc.s V_10
IL_2cf4: ldloc.s V_8
IL_2cf6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2cfb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d00: stloc.s V_10
IL_2d02: ldloc.s V_10
IL_2d04: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d09: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d0e: stloc.s V_9
IL_2d10: ldloc.s V_9
IL_2d12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2d17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2d1c: stloc.s V_7
IL_2d1e: br.s IL_2d66
IL_2d20: ldloc.s V_6
IL_2d22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2d27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2d2c: stloc.s V_7
IL_2d2e: ldloc.s V_10
IL_2d30: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2d35: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2d3a: stloc.s V_10
IL_2d3c: ldloc.s V_8
IL_2d3e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d43: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d48: stloc.s V_9
IL_2d4a: ldloc.s V_7
IL_2d4c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2d51: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2d56: stloc.s V_10
IL_2d58: ldloc.s V_10
IL_2d5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d64: stloc.s V_10
IL_2d66: ldloc.s V_10
IL_2d68: ldloc.s V_9
IL_2d6a: blt.s IL_2db4
IL_2d6c: ldloc.s V_10
IL_2d6e: call string [mscorlib]System.Convert::ToString(int32)
IL_2d73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2d78: stloc.s V_9
IL_2d7a: ldloc.s V_6
IL_2d7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d86: stloc.s V_7
IL_2d88: ldloc.s V_8
IL_2d8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2d8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2d94: stloc.s V_9
IL_2d96: ldloc.s V_10
IL_2d98: call string [mscorlib]System.Convert::ToString(int32)
IL_2d9d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2da2: stloc.s V_7
IL_2da4: ldloc.s V_10
IL_2da6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2dab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2db0: stloc.s V_9
IL_2db2: br.s IL_2dfa
IL_2db4: ldloc.s V_6
IL_2db6: call string [mscorlib]System.Convert::ToString(int32)
IL_2dbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2dc0: stloc.s V_8
IL_2dc2: ldloc.s V_8
IL_2dc4: call string [mscorlib]System.Convert::ToString(int32)
IL_2dc9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2dce: stloc.s V_9
IL_2dd0: ldloc.s V_9
IL_2dd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2dd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2ddc: stloc.s V_7
IL_2dde: ldloc.s V_6
IL_2de0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2de5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2dea: stloc.s V_8
IL_2dec: ldloc.s V_10
IL_2dee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2df3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2df8: stloc.s V_9
IL_2dfa: ldloc.s V_7
IL_2dfc: ldloc.s V_6
IL_2dfe: bgt.s IL_2e48
IL_2e00: ldloc.s V_8
IL_2e02: call string [mscorlib]System.Convert::ToString(int32)
IL_2e07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2e0c: stloc.s V_7
IL_2e0e: ldloc.s V_9
IL_2e10: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e15: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e1a: stloc.s V_9
IL_2e1c: ldloc.s V_10
IL_2e1e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2e23: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2e28: stloc.s V_10
IL_2e2a: ldloc.s V_8
IL_2e2c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2e31: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2e36: stloc.s V_8
IL_2e38: ldloc.s V_8
IL_2e3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2e3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2e44: stloc.s V_8
IL_2e46: br.s IL_2e8e
IL_2e48: ldloc.s V_8
IL_2e4a: call string [mscorlib]System.Convert::ToString(int32)
IL_2e4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2e54: stloc.s V_7
IL_2e56: ldloc.s V_8
IL_2e58: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e5d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e62: stloc.s V_9
IL_2e64: ldloc.s V_8
IL_2e66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2e6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2e70: stloc.s V_7
IL_2e72: ldloc.s V_7
IL_2e74: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e79: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e7e: stloc.s V_7
IL_2e80: ldloc.s V_6
IL_2e82: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2e87: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2e8c: stloc.s V_10
IL_2e8e: ldloc.s V_9
IL_2e90: ldloc.s V_8
IL_2e92: bgt.s IL_2edc
IL_2e94: ldloc.s V_8
IL_2e96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2e9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2ea0: stloc.s V_10
IL_2ea2: ldloc.s V_8
IL_2ea4: call string [mscorlib]System.Convert::ToString(int32)
IL_2ea9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2eae: stloc.s V_7
IL_2eb0: ldloc.s V_7
IL_2eb2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2eb7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2ebc: stloc.s V_7
IL_2ebe: ldloc.s V_10
IL_2ec0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ec5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2eca: stloc.s V_8
IL_2ecc: ldloc.s V_9
IL_2ece: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ed3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2ed8: stloc.s V_6
IL_2eda: br.s IL_2f22
IL_2edc: ldloc.s V_7
IL_2ede: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2ee3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2ee8: stloc.s V_9
IL_2eea: ldloc.s V_8
IL_2eec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2ef1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2ef6: stloc.s V_7
IL_2ef8: ldloc.s V_6
IL_2efa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2eff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2f04: stloc.s V_9
IL_2f06: ldloc.s V_6
IL_2f08: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2f0d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2f12: stloc.s V_6
IL_2f14: ldloc.s V_6
IL_2f16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f20: stloc.s V_8
IL_2f22: ldloc.s V_10
IL_2f24: ldloc.s V_8
IL_2f26: bne.un.s IL_2f70
IL_2f28: ldloc.s V_9
IL_2f2a: call string [mscorlib]System.Convert::ToString(int32)
IL_2f2f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2f34: stloc.s V_6
IL_2f36: ldloc.s V_10
IL_2f38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2f3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2f42: stloc.s V_6
IL_2f44: ldloc.s V_6
IL_2f46: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2f4b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2f50: stloc.s V_10
IL_2f52: ldloc.s V_9
IL_2f54: call string [mscorlib]System.Convert::ToString(int32)
IL_2f59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2f5e: stloc.s V_6
IL_2f60: ldloc.s V_10
IL_2f62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f6c: stloc.s V_8
IL_2f6e: br.s IL_2fb6
IL_2f70: ldloc.s V_8
IL_2f72: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f77: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f7c: stloc.s V_8
IL_2f7e: ldloc.s V_10
IL_2f80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f8a: stloc.s V_10
IL_2f8c: ldloc.s V_8
IL_2f8e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2f93: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2f98: stloc.s V_10
IL_2f9a: ldloc.s V_6
IL_2f9c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2fa1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2fa6: stloc.s V_7
IL_2fa8: ldloc.s V_9
IL_2faa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_2faf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_2fb4: stloc.s V_8
IL_2fb6: ldloc.s V_10
IL_2fb8: ldloc.s V_10
IL_2fba: ble.s IL_3004
IL_2fbc: ldloc.s V_6
IL_2fbe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_2fc3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_2fc8: stloc.s V_7
IL_2fca: ldloc.s V_8
IL_2fcc: call string [mscorlib]System.Convert::ToString(int32)
IL_2fd1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2fd6: stloc.s V_6
IL_2fd8: ldloc.s V_8
IL_2fda: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_2fdf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_2fe4: stloc.s V_8
IL_2fe6: ldloc.s V_7
IL_2fe8: call string [mscorlib]System.Convert::ToString(int32)
IL_2fed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_2ff2: stloc.s V_8
IL_2ff4: ldloc.s V_7
IL_2ff6: call string [mscorlib]System.Convert::ToString(int32)
IL_2ffb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3000: stloc.s V_8
IL_3002: br.s IL_304a
IL_3004: ldloc.s V_10
IL_3006: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_300b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3010: stloc.s V_6
IL_3012: ldloc.s V_9
IL_3014: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3019: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_301e: stloc.s V_9
IL_3020: ldloc.s V_9
IL_3022: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3027: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_302c: stloc.s V_9
IL_302e: ldloc.s V_9
IL_3030: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3035: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_303a: stloc.s V_6
IL_303c: ldloc.s V_8
IL_303e: call string [mscorlib]System.Convert::ToString(int32)
IL_3043: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3048: stloc.s V_9
IL_304a: ldloc.s V_10
IL_304c: ldloc.s V_10
IL_304e: bge.s IL_3098
IL_3050: ldloc.s V_6
IL_3052: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3057: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_305c: stloc.s V_9
IL_305e: ldloc.s V_7
IL_3060: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3065: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_306a: stloc.s V_10
IL_306c: ldloc.s V_9
IL_306e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3073: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3078: stloc.s V_6
IL_307a: ldloc.s V_8
IL_307c: call string [mscorlib]System.Convert::ToString(int32)
IL_3081: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3086: stloc.s V_8
IL_3088: ldloc.s V_9
IL_308a: call string [mscorlib]System.Convert::ToString(int32)
IL_308f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3094: stloc.s V_7
IL_3096: br.s IL_30de
IL_3098: ldloc.s V_10
IL_309a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_309f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_30a4: stloc.s V_10
IL_30a6: ldloc.s V_10
IL_30a8: call string [mscorlib]System.Convert::ToString(int32)
IL_30ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_30b2: stloc.s V_9
IL_30b4: ldloc.s V_6
IL_30b6: call string [mscorlib]System.Convert::ToString(int32)
IL_30bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_30c0: stloc.s V_6
IL_30c2: ldloc.s V_10
IL_30c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_30c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_30ce: stloc.s V_8
IL_30d0: ldloc.s V_10
IL_30d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_30d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_30dc: stloc.s V_10
IL_30de: ldloc.s V_6
IL_30e0: ldloc.s V_8
IL_30e2: beq.s IL_312c
IL_30e4: ldloc.s V_8
IL_30e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_30eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_30f0: stloc.s V_7
IL_30f2: ldloc.s V_8
IL_30f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_30f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_30fe: stloc.s V_7
IL_3100: ldloc.s V_8
IL_3102: call string [mscorlib]System.Convert::ToString(int32)
IL_3107: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_310c: stloc.s V_8
IL_310e: ldloc.s V_8
IL_3110: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3115: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_311a: stloc.s V_6
IL_311c: ldloc.s V_6
IL_311e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3123: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3128: stloc.s V_6
IL_312a: br.s IL_3172
IL_312c: ldloc.s V_7
IL_312e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3133: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3138: stloc.s V_10
IL_313a: ldloc.s V_8
IL_313c: call string [mscorlib]System.Convert::ToString(int32)
IL_3141: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3146: stloc.s V_9
IL_3148: ldloc.s V_8
IL_314a: call string [mscorlib]System.Convert::ToString(int32)
IL_314f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3154: stloc.s V_10
IL_3156: ldloc.s V_9
IL_3158: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_315d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3162: stloc.s V_10
IL_3164: ldloc.s V_8
IL_3166: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_316b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3170: stloc.s V_8
IL_3172: ldloc.s V_8
IL_3174: ldloc.s V_8
IL_3176: beq.s IL_31c0
IL_3178: ldloc.s V_10
IL_317a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_317f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3184: stloc.s V_6
IL_3186: ldloc.s V_6
IL_3188: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_318d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3192: stloc.s V_6
IL_3194: ldloc.s V_10
IL_3196: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_319b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_31a0: stloc.s V_7
IL_31a2: ldloc.s V_7
IL_31a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_31a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_31ae: stloc.s V_7
IL_31b0: ldloc.s V_10
IL_31b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_31b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_31bc: stloc.s V_8
IL_31be: br.s IL_3206
IL_31c0: ldloc.s V_10
IL_31c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_31c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_31cc: stloc.s V_10
IL_31ce: ldloc.s V_8
IL_31d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_31d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_31da: stloc.s V_9
IL_31dc: ldloc.s V_7
IL_31de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_31e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_31e8: stloc.s V_6
IL_31ea: ldloc.s V_10
IL_31ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_31f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_31f6: stloc.s V_6
IL_31f8: ldloc.s V_7
IL_31fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_31ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3204: stloc.s V_10
IL_3206: ldloc.s V_6
IL_3208: ldloc.s V_9
IL_320a: ble.s IL_3254
IL_320c: ldloc.s V_6
IL_320e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3213: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3218: stloc.s V_6
IL_321a: ldloc.s V_8
IL_321c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3221: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3226: stloc.s V_6
IL_3228: ldloc.s V_8
IL_322a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_322f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3234: stloc.s V_6
IL_3236: ldloc.s V_8
IL_3238: call string [mscorlib]System.Convert::ToString(int32)
IL_323d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3242: stloc.s V_8
IL_3244: ldloc.s V_10
IL_3246: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_324b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3250: stloc.s V_6
IL_3252: br.s IL_329a
IL_3254: ldloc.s V_8
IL_3256: call string [mscorlib]System.Convert::ToString(int32)
IL_325b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3260: stloc.s V_9
IL_3262: ldloc.s V_7
IL_3264: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3269: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_326e: stloc.s V_9
IL_3270: ldloc.s V_8
IL_3272: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3277: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_327c: stloc.s V_10
IL_327e: ldloc.s V_6
IL_3280: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3285: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_328a: stloc.s V_9
IL_328c: ldloc.s V_6
IL_328e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3293: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3298: stloc.s V_6
IL_329a: ldloc.s V_7
IL_329c: ldloc.s V_6
IL_329e: bne.un.s IL_32e8
IL_32a0: ldloc.s V_8
IL_32a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_32a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_32ac: stloc.s V_8
IL_32ae: ldloc.s V_10
IL_32b0: call string [mscorlib]System.Convert::ToString(int32)
IL_32b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_32ba: stloc.s V_10
IL_32bc: ldloc.s V_10
IL_32be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_32c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_32c8: stloc.s V_8
IL_32ca: ldloc.s V_10
IL_32cc: call string [mscorlib]System.Convert::ToString(int32)
IL_32d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_32d6: stloc.s V_6
IL_32d8: ldloc.s V_10
IL_32da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_32df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_32e4: stloc.s V_10
IL_32e6: br.s IL_332e
IL_32e8: ldloc.s V_8
IL_32ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_32ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_32f4: stloc.s V_6
IL_32f6: ldloc.s V_10
IL_32f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_32fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3302: stloc.s V_10
IL_3304: ldloc.s V_6
IL_3306: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_330b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3310: stloc.s V_8
IL_3312: ldloc.s V_9
IL_3314: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3319: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_331e: stloc.s V_9
IL_3320: ldloc.s V_10
IL_3322: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3327: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_332c: stloc.s V_7
IL_332e: ldloc.s V_10
IL_3330: ldloc.s V_6
IL_3332: blt.s IL_337c
IL_3334: ldloc.s V_6
IL_3336: call string [mscorlib]System.Convert::ToString(int32)
IL_333b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3340: stloc.s V_7
IL_3342: ldloc.s V_10
IL_3344: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3349: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_334e: stloc.s V_7
IL_3350: ldloc.s V_9
IL_3352: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3357: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_335c: stloc.s V_8
IL_335e: ldloc.s V_7
IL_3360: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3365: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_336a: stloc.s V_8
IL_336c: ldloc.s V_6
IL_336e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3373: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3378: stloc.s V_8
IL_337a: br.s IL_33c2
IL_337c: ldloc.s V_6
IL_337e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3383: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3388: stloc.s V_6
IL_338a: ldloc.s V_6
IL_338c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3391: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3396: stloc.s V_8
IL_3398: ldloc.s V_6
IL_339a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_339f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_33a4: stloc.s V_6
IL_33a6: ldloc.s V_7
IL_33a8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_33ad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_33b2: stloc.s V_8
IL_33b4: ldloc.s V_8
IL_33b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_33bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_33c0: stloc.s V_7
IL_33c2: ldloc.s V_9
IL_33c4: ldloc.s V_9
IL_33c6: beq.s IL_3410
IL_33c8: ldloc.s V_8
IL_33ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_33cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_33d4: stloc.s V_9
IL_33d6: ldloc.s V_8
IL_33d8: call string [mscorlib]System.Convert::ToString(int32)
IL_33dd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_33e2: stloc.s V_10
IL_33e4: ldloc.s V_6
IL_33e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_33eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_33f0: stloc.s V_9
IL_33f2: ldloc.s V_8
IL_33f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_33f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_33fe: stloc.s V_6
IL_3400: ldloc.s V_9
IL_3402: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3407: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_340c: stloc.s V_9
IL_340e: br.s IL_3456
IL_3410: ldloc.s V_10
IL_3412: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3417: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_341c: stloc.s V_8
IL_341e: ldloc.s V_10
IL_3420: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3425: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_342a: stloc.s V_9
IL_342c: ldloc.s V_7
IL_342e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3433: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3438: stloc.s V_6
IL_343a: ldloc.s V_8
IL_343c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3441: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3446: stloc.s V_10
IL_3448: ldloc.s V_6
IL_344a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_344f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3454: stloc.s V_9
IL_3456: ldloc.s V_8
IL_3458: ldloc.s V_6
IL_345a: bge.s IL_34a4
IL_345c: ldloc.s V_8
IL_345e: call string [mscorlib]System.Convert::ToString(int32)
IL_3463: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3468: stloc.s V_8
IL_346a: ldloc.s V_8
IL_346c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3471: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3476: stloc.s V_9
IL_3478: ldloc.s V_8
IL_347a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_347f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3484: stloc.s V_9
IL_3486: ldloc.s V_6
IL_3488: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_348d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3492: stloc.s V_10
IL_3494: ldloc.s V_6
IL_3496: call string [mscorlib]System.Convert::ToString(int32)
IL_349b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_34a0: stloc.s V_9
IL_34a2: br.s IL_34ea
IL_34a4: ldloc.s V_10
IL_34a6: call string [mscorlib]System.Convert::ToString(int32)
IL_34ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_34b0: stloc.s V_8
IL_34b2: ldloc.s V_10
IL_34b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34be: stloc.s V_8
IL_34c0: ldloc.s V_6
IL_34c2: call string [mscorlib]System.Convert::ToString(int32)
IL_34c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_34cc: stloc.s V_10
IL_34ce: ldloc.s V_9
IL_34d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34da: stloc.s V_6
IL_34dc: ldloc.s V_7
IL_34de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34e8: stloc.s V_10
IL_34ea: ldloc.s V_10
IL_34ec: ldloc.s V_7
IL_34ee: ble.s IL_3538
IL_34f0: ldloc.s V_8
IL_34f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_34f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_34fc: stloc.s V_7
IL_34fe: ldloc.s V_6
IL_3500: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3505: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_350a: stloc.s V_7
IL_350c: ldloc.s V_6
IL_350e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3513: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3518: stloc.s V_7
IL_351a: ldloc.s V_7
IL_351c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3521: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3526: stloc.s V_8
IL_3528: ldloc.s V_7
IL_352a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_352f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3534: stloc.s V_6
IL_3536: br.s IL_357e
IL_3538: ldloc.s V_8
IL_353a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_353f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3544: stloc.s V_7
IL_3546: ldloc.s V_7
IL_3548: call string [mscorlib]System.Convert::ToString(int32)
IL_354d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3552: stloc.s V_6
IL_3554: ldloc.s V_10
IL_3556: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_355b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3560: stloc.s V_7
IL_3562: ldloc.s V_6
IL_3564: call string [mscorlib]System.Convert::ToString(int32)
IL_3569: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_356e: stloc.s V_7
IL_3570: ldloc.s V_9
IL_3572: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3577: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_357c: stloc.s V_9
IL_357e: ldloc.s V_10
IL_3580: ldloc.s V_6
IL_3582: bge.s IL_35cc
IL_3584: ldloc.s V_8
IL_3586: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_358b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3590: stloc.s V_9
IL_3592: ldloc.s V_10
IL_3594: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3599: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_359e: stloc.s V_9
IL_35a0: ldloc.s V_6
IL_35a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_35a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_35ac: stloc.s V_10
IL_35ae: ldloc.s V_8
IL_35b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_35b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_35ba: stloc.s V_10
IL_35bc: ldloc.s V_10
IL_35be: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_35c3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_35c8: stloc.s V_9
IL_35ca: br.s IL_3612
IL_35cc: ldloc.s V_6
IL_35ce: call string [mscorlib]System.Convert::ToString(int32)
IL_35d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_35d8: stloc.s V_8
IL_35da: ldloc.s V_7
IL_35dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_35e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_35e6: stloc.s V_9
IL_35e8: ldloc.s V_8
IL_35ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_35ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_35f4: stloc.s V_6
IL_35f6: ldloc.s V_7
IL_35f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_35fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3602: stloc.s V_8
IL_3604: ldloc.s V_7
IL_3606: call string [mscorlib]System.Convert::ToString(int32)
IL_360b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3610: stloc.s V_10
IL_3612: ldloc.s V_6
IL_3614: ldloc.s V_7
IL_3616: bge.s IL_3660
IL_3618: ldloc.s V_10
IL_361a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_361f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3624: stloc.s V_7
IL_3626: ldloc.s V_9
IL_3628: call string [mscorlib]System.Convert::ToString(int32)
IL_362d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3632: stloc.s V_9
IL_3634: ldloc.s V_8
IL_3636: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_363b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3640: stloc.s V_8
IL_3642: ldloc.s V_7
IL_3644: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3649: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_364e: stloc.s V_7
IL_3650: ldloc.s V_9
IL_3652: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3657: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_365c: stloc.s V_8
IL_365e: br.s IL_36a6
IL_3660: ldloc.s V_6
IL_3662: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3667: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_366c: stloc.s V_7
IL_366e: ldloc.s V_6
IL_3670: call string [mscorlib]System.Convert::ToString(int32)
IL_3675: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_367a: stloc.s V_9
IL_367c: ldloc.s V_6
IL_367e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3683: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3688: stloc.s V_10
IL_368a: ldloc.s V_7
IL_368c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3691: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3696: stloc.s V_6
IL_3698: ldloc.s V_8
IL_369a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_369f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_36a4: stloc.s V_8
IL_36a6: ldloc.s V_9
IL_36a8: ldloc.s V_7
IL_36aa: beq.s IL_36f4
IL_36ac: ldloc.s V_8
IL_36ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_36b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_36b8: stloc.s V_6
IL_36ba: ldloc.s V_10
IL_36bc: call string [mscorlib]System.Convert::ToString(int32)
IL_36c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_36c6: stloc.s V_10
IL_36c8: ldloc.s V_8
IL_36ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_36cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_36d4: stloc.s V_7
IL_36d6: ldloc.s V_9
IL_36d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_36dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_36e2: stloc.s V_9
IL_36e4: ldloc.s V_8
IL_36e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_36eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_36f0: stloc.s V_6
IL_36f2: br.s IL_373a
IL_36f4: ldloc.s V_7
IL_36f6: call string [mscorlib]System.Convert::ToString(int32)
IL_36fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3700: stloc.s V_9
IL_3702: ldloc.s V_9
IL_3704: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3709: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_370e: stloc.s V_6
IL_3710: ldloc.s V_9
IL_3712: call string [mscorlib]System.Convert::ToString(int32)
IL_3717: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_371c: stloc.s V_7
IL_371e: ldloc.s V_7
IL_3720: call string [mscorlib]System.Convert::ToString(int32)
IL_3725: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_372a: stloc.s V_9
IL_372c: ldloc.s V_8
IL_372e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3733: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3738: stloc.s V_7
IL_373a: ldloc.s V_7
IL_373c: ldloc.s V_10
IL_373e: beq.s IL_3788
IL_3740: ldloc.s V_6
IL_3742: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3747: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_374c: stloc.s V_6
IL_374e: ldloc.s V_9
IL_3750: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3755: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_375a: stloc.s V_6
IL_375c: ldloc.s V_7
IL_375e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3763: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3768: stloc.s V_6
IL_376a: ldloc.s V_10
IL_376c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3771: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3776: stloc.s V_8
IL_3778: ldloc.s V_7
IL_377a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_377f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3784: stloc.s V_8
IL_3786: br.s IL_37ce
IL_3788: ldloc.s V_7
IL_378a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_378f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3794: stloc.s V_10
IL_3796: ldloc.s V_6
IL_3798: call string [mscorlib]System.Convert::ToString(int32)
IL_379d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_37a2: stloc.s V_7
IL_37a4: ldloc.s V_10
IL_37a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_37ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_37b0: stloc.s V_9
IL_37b2: ldloc.s V_10
IL_37b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_37b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_37be: stloc.s V_10
IL_37c0: ldloc.s V_7
IL_37c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_37c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_37cc: stloc.s V_9
IL_37ce: ldloc.s V_10
IL_37d0: ldloc.s V_8
IL_37d2: beq.s IL_381c
IL_37d4: ldloc.s V_8
IL_37d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_37db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_37e0: stloc.s V_10
IL_37e2: ldloc.s V_7
IL_37e4: call string [mscorlib]System.Convert::ToString(int32)
IL_37e9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_37ee: stloc.s V_8
IL_37f0: ldloc.s V_6
IL_37f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_37f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_37fc: stloc.s V_8
IL_37fe: ldloc.s V_8
IL_3800: call string [mscorlib]System.Convert::ToString(int32)
IL_3805: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_380a: stloc.s V_7
IL_380c: ldloc.s V_9
IL_380e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3813: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3818: stloc.s V_9
IL_381a: br.s IL_3862
IL_381c: ldloc.s V_6
IL_381e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3823: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3828: stloc.s V_6
IL_382a: ldloc.s V_9
IL_382c: call string [mscorlib]System.Convert::ToString(int32)
IL_3831: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3836: stloc.s V_7
IL_3838: ldloc.s V_8
IL_383a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_383f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3844: stloc.s V_9
IL_3846: ldloc.s V_7
IL_3848: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_384d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3852: stloc.s V_6
IL_3854: ldloc.s V_7
IL_3856: call string [mscorlib]System.Convert::ToString(int32)
IL_385b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3860: stloc.s V_9
IL_3862: ldloc.s V_9
IL_3864: ldloc.s V_7
IL_3866: ble.s IL_38b0
IL_3868: ldloc.s V_6
IL_386a: call string [mscorlib]System.Convert::ToString(int32)
IL_386f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3874: stloc.s V_8
IL_3876: ldloc.s V_7
IL_3878: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_387d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3882: stloc.s V_9
IL_3884: ldloc.s V_9
IL_3886: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_388b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3890: stloc.s V_10
IL_3892: ldloc.s V_7
IL_3894: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3899: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_389e: stloc.s V_6
IL_38a0: ldloc.s V_10
IL_38a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_38a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_38ac: stloc.s V_8
IL_38ae: br.s IL_38f6
IL_38b0: ldloc.s V_9
IL_38b2: call string [mscorlib]System.Convert::ToString(int32)
IL_38b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_38bc: stloc.s V_7
IL_38be: ldloc.s V_7
IL_38c0: call string [mscorlib]System.Convert::ToString(int32)
IL_38c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_38ca: stloc.s V_6
IL_38cc: ldloc.s V_8
IL_38ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_38d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_38d8: stloc.s V_9
IL_38da: ldloc.s V_7
IL_38dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_38e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_38e6: stloc.s V_6
IL_38e8: ldloc.s V_8
IL_38ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_38ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_38f4: stloc.s V_10
IL_38f6: ldloc.s V_7
IL_38f8: ldloc.s V_6
IL_38fa: bne.un.s IL_3944
IL_38fc: ldloc.s V_9
IL_38fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3903: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3908: stloc.s V_6
IL_390a: ldloc.s V_10
IL_390c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3911: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3916: stloc.s V_8
IL_3918: ldloc.s V_9
IL_391a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_391f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3924: stloc.s V_9
IL_3926: ldloc.s V_6
IL_3928: call string [mscorlib]System.Convert::ToString(int32)
IL_392d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3932: stloc.s V_10
IL_3934: ldloc.s V_6
IL_3936: call string [mscorlib]System.Convert::ToString(int32)
IL_393b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3940: stloc.s V_6
IL_3942: br.s IL_398a
IL_3944: ldloc.s V_10
IL_3946: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_394b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3950: stloc.s V_7
IL_3952: ldloc.s V_10
IL_3954: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3959: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_395e: stloc.s V_9
IL_3960: ldloc.s V_7
IL_3962: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3967: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_396c: stloc.s V_10
IL_396e: ldloc.s V_7
IL_3970: call string [mscorlib]System.Convert::ToString(int32)
IL_3975: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_397a: stloc.s V_9
IL_397c: ldloc.s V_6
IL_397e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3983: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3988: stloc.s V_6
IL_398a: ldloc.s V_7
IL_398c: ldloc.s V_6
IL_398e: bge.s IL_39d8
IL_3990: ldloc.s V_6
IL_3992: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3997: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_399c: stloc.s V_7
IL_399e: ldloc.s V_7
IL_39a0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_39a5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_39aa: stloc.s V_7
IL_39ac: ldloc.s V_7
IL_39ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_39b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_39b8: stloc.s V_9
IL_39ba: ldloc.s V_8
IL_39bc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_39c1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_39c6: stloc.s V_9
IL_39c8: ldloc.s V_8
IL_39ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_39cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_39d4: stloc.s V_7
IL_39d6: br.s IL_3a1e
IL_39d8: ldloc.s V_8
IL_39da: call string [mscorlib]System.Convert::ToString(int32)
IL_39df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_39e4: stloc.s V_6
IL_39e6: ldloc.s V_7
IL_39e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_39ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_39f2: stloc.s V_8
IL_39f4: ldloc.s V_7
IL_39f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_39fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3a00: stloc.s V_6
IL_3a02: ldloc.s V_9
IL_3a04: call string [mscorlib]System.Convert::ToString(int32)
IL_3a09: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3a0e: stloc.s V_7
IL_3a10: ldloc.s V_7
IL_3a12: call string [mscorlib]System.Convert::ToString(int32)
IL_3a17: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3a1c: stloc.s V_9
IL_3a1e: ldloc.s V_9
IL_3a20: ldloc.s V_7
IL_3a22: bgt.s IL_3a6c
IL_3a24: ldloc.s V_7
IL_3a26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3a2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3a30: stloc.s V_6
IL_3a32: ldloc.s V_8
IL_3a34: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3a39: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3a3e: stloc.s V_10
IL_3a40: ldloc.s V_8
IL_3a42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3a47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3a4c: stloc.s V_9
IL_3a4e: ldloc.s V_10
IL_3a50: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3a55: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3a5a: stloc.s V_8
IL_3a5c: ldloc.s V_9
IL_3a5e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3a63: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3a68: stloc.s V_9
IL_3a6a: br.s IL_3ab2
IL_3a6c: ldloc.s V_8
IL_3a6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3a73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3a78: stloc.s V_9
IL_3a7a: ldloc.s V_7
IL_3a7c: call string [mscorlib]System.Convert::ToString(int32)
IL_3a81: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3a86: stloc.s V_9
IL_3a88: ldloc.s V_6
IL_3a8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3a8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3a94: stloc.s V_9
IL_3a96: ldloc.s V_6
IL_3a98: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3a9d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3aa2: stloc.s V_9
IL_3aa4: ldloc.s V_9
IL_3aa6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3aab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ab0: stloc.s V_8
IL_3ab2: ldloc.s V_6
IL_3ab4: ldloc.s V_6
IL_3ab6: ble.s IL_3b00
IL_3ab8: ldloc.s V_10
IL_3aba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3abf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ac4: stloc.s V_7
IL_3ac6: ldloc.s V_8
IL_3ac8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3acd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ad2: stloc.s V_7
IL_3ad4: ldloc.s V_6
IL_3ad6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3adb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3ae0: stloc.s V_10
IL_3ae2: ldloc.s V_9
IL_3ae4: call string [mscorlib]System.Convert::ToString(int32)
IL_3ae9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3aee: stloc.s V_10
IL_3af0: ldloc.s V_7
IL_3af2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3af7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3afc: stloc.s V_7
IL_3afe: br.s IL_3b46
IL_3b00: ldloc.s V_9
IL_3b02: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3b07: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3b0c: stloc.s V_6
IL_3b0e: ldloc.s V_6
IL_3b10: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3b15: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3b1a: stloc.s V_10
IL_3b1c: ldloc.s V_10
IL_3b1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3b28: stloc.s V_6
IL_3b2a: ldloc.s V_6
IL_3b2c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3b31: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3b36: stloc.s V_7
IL_3b38: ldloc.s V_10
IL_3b3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3b3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3b44: stloc.s V_7
IL_3b46: ldloc.s V_8
IL_3b48: ldloc.s V_7
IL_3b4a: bne.un.s IL_3b94
IL_3b4c: ldloc.s V_7
IL_3b4e: call string [mscorlib]System.Convert::ToString(int32)
IL_3b53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3b58: stloc.s V_10
IL_3b5a: ldloc.s V_9
IL_3b5c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b61: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3b66: stloc.s V_9
IL_3b68: ldloc.s V_10
IL_3b6a: call string [mscorlib]System.Convert::ToString(int32)
IL_3b6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3b74: stloc.s V_10
IL_3b76: ldloc.s V_8
IL_3b78: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3b7d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3b82: stloc.s V_6
IL_3b84: ldloc.s V_8
IL_3b86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3b90: stloc.s V_7
IL_3b92: br.s IL_3bda
IL_3b94: ldloc.s V_10
IL_3b96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3b9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ba0: stloc.s V_10
IL_3ba2: ldloc.s V_6
IL_3ba4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3ba9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3bae: stloc.s V_6
IL_3bb0: ldloc.s V_9
IL_3bb2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3bb7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3bbc: stloc.s V_10
IL_3bbe: ldloc.s V_6
IL_3bc0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3bc5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3bca: stloc.s V_6
IL_3bcc: ldloc.s V_8
IL_3bce: call string [mscorlib]System.Convert::ToString(int32)
IL_3bd3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3bd8: stloc.s V_7
IL_3bda: ldloc.s V_6
IL_3bdc: ldloc.s V_6
IL_3bde: bge.s IL_3c28
IL_3be0: ldloc.s V_10
IL_3be2: call string [mscorlib]System.Convert::ToString(int32)
IL_3be7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3bec: stloc.s V_8
IL_3bee: ldloc.s V_9
IL_3bf0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3bf5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3bfa: stloc.s V_10
IL_3bfc: ldloc.s V_7
IL_3bfe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c03: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c08: stloc.s V_10
IL_3c0a: ldloc.s V_8
IL_3c0c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3c11: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3c16: stloc.s V_7
IL_3c18: ldloc.s V_9
IL_3c1a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c1f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c24: stloc.s V_8
IL_3c26: br.s IL_3c6e
IL_3c28: ldloc.s V_10
IL_3c2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3c2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3c34: stloc.s V_8
IL_3c36: ldloc.s V_7
IL_3c38: call string [mscorlib]System.Convert::ToString(int32)
IL_3c3d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3c42: stloc.s V_10
IL_3c44: ldloc.s V_7
IL_3c46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c50: stloc.s V_7
IL_3c52: ldloc.s V_8
IL_3c54: call string [mscorlib]System.Convert::ToString(int32)
IL_3c59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3c5e: stloc.s V_9
IL_3c60: ldloc.s V_10
IL_3c62: call string [mscorlib]System.Convert::ToString(int32)
IL_3c67: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3c6c: stloc.s V_8
IL_3c6e: ldloc.s V_9
IL_3c70: ldloc.s V_10
IL_3c72: bge.s IL_3cbc
IL_3c74: ldloc.s V_10
IL_3c76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c80: stloc.s V_7
IL_3c82: ldloc.s V_10
IL_3c84: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3c89: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3c8e: stloc.s V_9
IL_3c90: ldloc.s V_7
IL_3c92: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3c97: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3c9c: stloc.s V_7
IL_3c9e: ldloc.s V_6
IL_3ca0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3ca5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3caa: stloc.s V_10
IL_3cac: ldloc.s V_6
IL_3cae: call string [mscorlib]System.Convert::ToString(int32)
IL_3cb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3cb8: stloc.s V_6
IL_3cba: br.s IL_3d02
IL_3cbc: ldloc.s V_7
IL_3cbe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3cc3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3cc8: stloc.s V_7
IL_3cca: ldloc.s V_7
IL_3ccc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3cd1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3cd6: stloc.s V_9
IL_3cd8: ldloc.s V_9
IL_3cda: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3cdf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ce4: stloc.s V_9
IL_3ce6: ldloc.s V_10
IL_3ce8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3ced: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3cf2: stloc.s V_8
IL_3cf4: ldloc.s V_7
IL_3cf6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3cfb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3d00: stloc.s V_7
IL_3d02: ldloc.s V_10
IL_3d04: ldloc.s V_7
IL_3d06: bge.s IL_3d50
IL_3d08: ldloc.s V_10
IL_3d0a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3d0f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3d14: stloc.s V_9
IL_3d16: ldloc.s V_7
IL_3d18: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3d1d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3d22: stloc.s V_10
IL_3d24: ldloc.s V_8
IL_3d26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3d2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3d30: stloc.s V_10
IL_3d32: ldloc.s V_6
IL_3d34: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3d39: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3d3e: stloc.s V_6
IL_3d40: ldloc.s V_10
IL_3d42: call string [mscorlib]System.Convert::ToString(int32)
IL_3d47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3d4c: stloc.s V_7
IL_3d4e: br.s IL_3d96
IL_3d50: ldloc.s V_10
IL_3d52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3d57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3d5c: stloc.s V_7
IL_3d5e: ldloc.s V_8
IL_3d60: call string [mscorlib]System.Convert::ToString(int32)
IL_3d65: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3d6a: stloc.s V_8
IL_3d6c: ldloc.s V_9
IL_3d6e: call string [mscorlib]System.Convert::ToString(int32)
IL_3d73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3d78: stloc.s V_8
IL_3d7a: ldloc.s V_9
IL_3d7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3d81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3d86: stloc.s V_7
IL_3d88: ldloc.s V_9
IL_3d8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3d8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3d94: stloc.s V_10
IL_3d96: ldloc.s V_9
IL_3d98: ldloc.s V_10
IL_3d9a: ble.s IL_3de4
IL_3d9c: ldloc.s V_8
IL_3d9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3da3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3da8: stloc.s V_10
IL_3daa: ldloc.s V_10
IL_3dac: call string [mscorlib]System.Convert::ToString(int32)
IL_3db1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3db6: stloc.s V_7
IL_3db8: ldloc.s V_8
IL_3dba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3dbf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3dc4: stloc.s V_10
IL_3dc6: ldloc.s V_10
IL_3dc8: call string [mscorlib]System.Convert::ToString(int32)
IL_3dcd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3dd2: stloc.s V_10
IL_3dd4: ldloc.s V_8
IL_3dd6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3ddb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3de0: stloc.s V_8
IL_3de2: br.s IL_3e2a
IL_3de4: ldloc.s V_6
IL_3de6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3deb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3df0: stloc.s V_6
IL_3df2: ldloc.s V_8
IL_3df4: call string [mscorlib]System.Convert::ToString(int32)
IL_3df9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3dfe: stloc.s V_7
IL_3e00: ldloc.s V_8
IL_3e02: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3e07: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3e0c: stloc.s V_9
IL_3e0e: ldloc.s V_10
IL_3e10: call string [mscorlib]System.Convert::ToString(int32)
IL_3e15: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e1a: stloc.s V_7
IL_3e1c: ldloc.s V_10
IL_3e1e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3e23: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3e28: stloc.s V_9
IL_3e2a: ldloc.s V_6
IL_3e2c: ldloc.s V_9
IL_3e2e: bne.un.s IL_3e78
IL_3e30: ldloc.s V_7
IL_3e32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3e37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3e3c: stloc.s V_7
IL_3e3e: ldloc.s V_9
IL_3e40: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3e45: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3e4a: stloc.s V_7
IL_3e4c: ldloc.s V_9
IL_3e4e: call string [mscorlib]System.Convert::ToString(int32)
IL_3e53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e58: stloc.s V_6
IL_3e5a: ldloc.s V_10
IL_3e5c: call string [mscorlib]System.Convert::ToString(int32)
IL_3e61: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e66: stloc.s V_6
IL_3e68: ldloc.s V_9
IL_3e6a: call string [mscorlib]System.Convert::ToString(int32)
IL_3e6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e74: stloc.s V_9
IL_3e76: br.s IL_3ebe
IL_3e78: ldloc.s V_10
IL_3e7a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3e7f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3e84: stloc.s V_7
IL_3e86: ldloc.s V_6
IL_3e88: call string [mscorlib]System.Convert::ToString(int32)
IL_3e8d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3e92: stloc.s V_9
IL_3e94: ldloc.s V_6
IL_3e96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3e9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ea0: stloc.s V_7
IL_3ea2: ldloc.s V_10
IL_3ea4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3ea9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3eae: stloc.s V_6
IL_3eb0: ldloc.s V_10
IL_3eb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3eb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ebc: stloc.s V_10
IL_3ebe: ldloc.s V_6
IL_3ec0: ldloc.s V_9
IL_3ec2: bgt.s IL_3f0c
IL_3ec4: ldloc.s V_10
IL_3ec6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3ecb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3ed0: stloc.s V_7
IL_3ed2: ldloc.s V_6
IL_3ed4: call string [mscorlib]System.Convert::ToString(int32)
IL_3ed9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3ede: stloc.s V_7
IL_3ee0: ldloc.s V_6
IL_3ee2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3ee7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3eec: stloc.s V_8
IL_3eee: ldloc.s V_9
IL_3ef0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3ef5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3efa: stloc.s V_9
IL_3efc: ldloc.s V_10
IL_3efe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3f03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3f08: stloc.s V_8
IL_3f0a: br.s IL_3f52
IL_3f0c: ldloc.s V_6
IL_3f0e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3f13: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3f18: stloc.s V_6
IL_3f1a: ldloc.s V_7
IL_3f1c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3f21: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3f26: stloc.s V_10
IL_3f28: ldloc.s V_7
IL_3f2a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3f2f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3f34: stloc.s V_9
IL_3f36: ldloc.s V_6
IL_3f38: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_3f3d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_3f42: stloc.s V_6
IL_3f44: ldloc.s V_7
IL_3f46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3f4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3f50: stloc.s V_9
IL_3f52: ldloc.s V_7
IL_3f54: ldloc.s V_7
IL_3f56: bne.un.s IL_3fa0
IL_3f58: ldloc.s V_8
IL_3f5a: call string [mscorlib]System.Convert::ToString(int32)
IL_3f5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3f64: stloc.s V_7
IL_3f66: ldloc.s V_7
IL_3f68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3f6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3f72: stloc.s V_9
IL_3f74: ldloc.s V_8
IL_3f76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3f7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3f80: stloc.s V_10
IL_3f82: ldloc.s V_7
IL_3f84: call string [mscorlib]System.Convert::ToString(int32)
IL_3f89: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3f8e: stloc.s V_10
IL_3f90: ldloc.s V_8
IL_3f92: call string [mscorlib]System.Convert::ToString(int32)
IL_3f97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3f9c: stloc.s V_8
IL_3f9e: br.s IL_3fe6
IL_3fa0: ldloc.s V_10
IL_3fa2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3fa7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3fac: stloc.s V_6
IL_3fae: ldloc.s V_6
IL_3fb0: call string [mscorlib]System.Convert::ToString(int32)
IL_3fb5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3fba: stloc.s V_10
IL_3fbc: ldloc.s V_7
IL_3fbe: call string [mscorlib]System.Convert::ToString(int32)
IL_3fc3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_3fc8: stloc.s V_7
IL_3fca: ldloc.s V_7
IL_3fcc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3fd1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3fd6: stloc.s V_9
IL_3fd8: ldloc.s V_7
IL_3fda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_3fdf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_3fe4: stloc.s V_10
IL_3fe6: ldloc.s V_10
IL_3fe8: ldloc.s V_7
IL_3fea: bne.un.s IL_4034
IL_3fec: ldloc.s V_10
IL_3fee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_3ff3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_3ff8: stloc.s V_7
IL_3ffa: ldloc.s V_8
IL_3ffc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4001: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4006: stloc.s V_7
IL_4008: ldloc.s V_10
IL_400a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_400f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4014: stloc.s V_9
IL_4016: ldloc.s V_7
IL_4018: call string [mscorlib]System.Convert::ToString(int32)
IL_401d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4022: stloc.s V_10
IL_4024: ldloc.s V_8
IL_4026: call string [mscorlib]System.Convert::ToString(int32)
IL_402b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4030: stloc.s V_10
IL_4032: br.s IL_407a
IL_4034: ldloc.s V_7
IL_4036: call string [mscorlib]System.Convert::ToString(int32)
IL_403b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4040: stloc.s V_8
IL_4042: ldloc.s V_9
IL_4044: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4049: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_404e: stloc.s V_7
IL_4050: ldloc.s V_6
IL_4052: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4057: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_405c: stloc.s V_7
IL_405e: ldloc.s V_9
IL_4060: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4065: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_406a: stloc.s V_6
IL_406c: ldloc.s V_7
IL_406e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4073: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4078: stloc.s V_10
IL_407a: ldloc.s V_6
IL_407c: ldloc.s V_9
IL_407e: bge.s IL_40c8
IL_4080: ldloc.s V_8
IL_4082: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4087: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_408c: stloc.s V_10
IL_408e: ldloc.s V_8
IL_4090: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4095: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_409a: stloc.s V_8
IL_409c: ldloc.s V_8
IL_409e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_40a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_40a8: stloc.s V_8
IL_40aa: ldloc.s V_10
IL_40ac: call string [mscorlib]System.Convert::ToString(int32)
IL_40b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_40b6: stloc.s V_6
IL_40b8: ldloc.s V_7
IL_40ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_40bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_40c4: stloc.s V_6
IL_40c6: br.s IL_410e
IL_40c8: ldloc.s V_7
IL_40ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_40cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_40d4: stloc.s V_9
IL_40d6: ldloc.s V_10
IL_40d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_40dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_40e2: stloc.s V_10
IL_40e4: ldloc.s V_6
IL_40e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_40eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_40f0: stloc.s V_9
IL_40f2: ldloc.s V_7
IL_40f4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_40f9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_40fe: stloc.s V_10
IL_4100: ldloc.s V_7
IL_4102: call string [mscorlib]System.Convert::ToString(int32)
IL_4107: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_410c: stloc.s V_9
IL_410e: ldloc.s V_8
IL_4110: ldloc.s V_8
IL_4112: bne.un.s IL_415c
IL_4114: ldloc.s V_9
IL_4116: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_411b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4120: stloc.s V_9
IL_4122: ldloc.s V_9
IL_4124: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4129: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_412e: stloc.s V_6
IL_4130: ldloc.s V_10
IL_4132: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4137: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_413c: stloc.s V_9
IL_413e: ldloc.s V_8
IL_4140: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4145: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_414a: stloc.s V_7
IL_414c: ldloc.s V_7
IL_414e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4153: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4158: stloc.s V_6
IL_415a: br.s IL_41a2
IL_415c: ldloc.s V_8
IL_415e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4163: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4168: stloc.s V_7
IL_416a: ldloc.s V_9
IL_416c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4171: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4176: stloc.s V_10
IL_4178: ldloc.s V_6
IL_417a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_417f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4184: stloc.s V_9
IL_4186: ldloc.s V_8
IL_4188: call string [mscorlib]System.Convert::ToString(int32)
IL_418d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4192: stloc.s V_7
IL_4194: ldloc.s V_8
IL_4196: call string [mscorlib]System.Convert::ToString(int32)
IL_419b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_41a0: stloc.s V_6
IL_41a2: ldloc.s V_8
IL_41a4: ldloc.s V_10
IL_41a6: ble.s IL_41f0
IL_41a8: ldloc.s V_9
IL_41aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_41af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_41b4: stloc.s V_7
IL_41b6: ldloc.s V_8
IL_41b8: call string [mscorlib]System.Convert::ToString(int32)
IL_41bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_41c2: stloc.s V_9
IL_41c4: ldloc.s V_8
IL_41c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_41cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_41d0: stloc.s V_8
IL_41d2: ldloc.s V_10
IL_41d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_41d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_41de: stloc.s V_6
IL_41e0: ldloc.s V_6
IL_41e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_41e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_41ec: stloc.s V_9
IL_41ee: br.s IL_4236
IL_41f0: ldloc.s V_8
IL_41f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_41f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_41fc: stloc.s V_6
IL_41fe: ldloc.s V_7
IL_4200: call string [mscorlib]System.Convert::ToString(int32)
IL_4205: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_420a: stloc.s V_10
IL_420c: ldloc.s V_9
IL_420e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4213: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4218: stloc.s V_9
IL_421a: ldloc.s V_7
IL_421c: call string [mscorlib]System.Convert::ToString(int32)
IL_4221: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4226: stloc.s V_9
IL_4228: ldloc.s V_6
IL_422a: call string [mscorlib]System.Convert::ToString(int32)
IL_422f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4234: stloc.s V_6
IL_4236: ldloc.s V_6
IL_4238: ldloc.s V_9
IL_423a: blt.s IL_4284
IL_423c: ldloc.s V_9
IL_423e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4243: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4248: stloc.s V_8
IL_424a: ldloc.s V_8
IL_424c: call string [mscorlib]System.Convert::ToString(int32)
IL_4251: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4256: stloc.s V_8
IL_4258: ldloc.s V_6
IL_425a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_425f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4264: stloc.s V_6
IL_4266: ldloc.s V_10
IL_4268: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_426d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4272: stloc.s V_6
IL_4274: ldloc.s V_10
IL_4276: call string [mscorlib]System.Convert::ToString(int32)
IL_427b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4280: stloc.s V_6
IL_4282: br.s IL_42ca
IL_4284: ldloc.s V_7
IL_4286: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_428b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4290: stloc.s V_7
IL_4292: ldloc.s V_9
IL_4294: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4299: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_429e: stloc.s V_10
IL_42a0: ldloc.s V_7
IL_42a2: call string [mscorlib]System.Convert::ToString(int32)
IL_42a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_42ac: stloc.s V_9
IL_42ae: ldloc.s V_6
IL_42b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_42b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_42ba: stloc.s V_6
IL_42bc: ldloc.s V_8
IL_42be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_42c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_42c8: stloc.s V_6
IL_42ca: ldloc.s V_10
IL_42cc: ldloc.s V_6
IL_42ce: blt.s IL_4318
IL_42d0: ldloc.s V_10
IL_42d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_42d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_42dc: stloc.s V_6
IL_42de: ldloc.s V_9
IL_42e0: call string [mscorlib]System.Convert::ToString(int32)
IL_42e5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_42ea: stloc.s V_8
IL_42ec: ldloc.s V_7
IL_42ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_42f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_42f8: stloc.s V_6
IL_42fa: ldloc.s V_8
IL_42fc: call string [mscorlib]System.Convert::ToString(int32)
IL_4301: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4306: stloc.s V_7
IL_4308: ldloc.s V_10
IL_430a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_430f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4314: stloc.s V_9
IL_4316: br.s IL_435e
IL_4318: ldloc.s V_10
IL_431a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_431f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4324: stloc.s V_8
IL_4326: ldloc.s V_10
IL_4328: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_432d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4332: stloc.s V_9
IL_4334: ldloc.s V_6
IL_4336: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_433b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4340: stloc.s V_6
IL_4342: ldloc.s V_8
IL_4344: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4349: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_434e: stloc.s V_7
IL_4350: ldloc.s V_6
IL_4352: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4357: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_435c: stloc.s V_7
IL_435e: ldloc.s V_9
IL_4360: ldloc.s V_9
IL_4362: bgt.s IL_43ac
IL_4364: ldloc.s V_8
IL_4366: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_436b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4370: stloc.s V_10
IL_4372: ldloc.s V_7
IL_4374: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4379: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_437e: stloc.s V_10
IL_4380: ldloc.s V_7
IL_4382: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4387: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_438c: stloc.s V_9
IL_438e: ldloc.s V_10
IL_4390: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4395: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_439a: stloc.s V_8
IL_439c: ldloc.s V_9
IL_439e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_43a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_43a8: stloc.s V_10
IL_43aa: br.s IL_43f2
IL_43ac: ldloc.s V_9
IL_43ae: call string [mscorlib]System.Convert::ToString(int32)
IL_43b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_43b8: stloc.s V_6
IL_43ba: ldloc.s V_7
IL_43bc: call string [mscorlib]System.Convert::ToString(int32)
IL_43c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_43c6: stloc.s V_9
IL_43c8: ldloc.s V_7
IL_43ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_43cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_43d4: stloc.s V_7
IL_43d6: ldloc.s V_7
IL_43d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_43dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_43e2: stloc.s V_9
IL_43e4: ldloc.s V_10
IL_43e6: call string [mscorlib]System.Convert::ToString(int32)
IL_43eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_43f0: stloc.s V_7
IL_43f2: ldloc.s V_9
IL_43f4: ldloc.s V_10
IL_43f6: bge.s IL_4440
IL_43f8: ldloc.s V_8
IL_43fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_43ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4404: stloc.s V_10
IL_4406: ldloc.s V_10
IL_4408: call string [mscorlib]System.Convert::ToString(int32)
IL_440d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4412: stloc.s V_8
IL_4414: ldloc.s V_9
IL_4416: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_441b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4420: stloc.s V_8
IL_4422: ldloc.s V_7
IL_4424: call string [mscorlib]System.Convert::ToString(int32)
IL_4429: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_442e: stloc.s V_9
IL_4430: ldloc.s V_10
IL_4432: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4437: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_443c: stloc.s V_7
IL_443e: br.s IL_4486
IL_4440: ldloc.s V_7
IL_4442: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4447: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_444c: stloc.s V_10
IL_444e: ldloc.s V_6
IL_4450: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4455: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_445a: stloc.s V_8
IL_445c: ldloc.s V_10
IL_445e: call string [mscorlib]System.Convert::ToString(int32)
IL_4463: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4468: stloc.s V_7
IL_446a: ldloc.s V_9
IL_446c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4471: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4476: stloc.s V_6
IL_4478: ldloc.s V_6
IL_447a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_447f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4484: stloc.s V_10
IL_4486: ldloc.s V_6
IL_4488: ldloc.s V_9
IL_448a: blt.s IL_44d4
IL_448c: ldloc.s V_8
IL_448e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4493: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4498: stloc.s V_6
IL_449a: ldloc.s V_6
IL_449c: call string [mscorlib]System.Convert::ToString(int32)
IL_44a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44a6: stloc.s V_7
IL_44a8: ldloc.s V_8
IL_44aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_44af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_44b4: stloc.s V_9
IL_44b6: ldloc.s V_7
IL_44b8: call string [mscorlib]System.Convert::ToString(int32)
IL_44bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44c2: stloc.s V_8
IL_44c4: ldloc.s V_9
IL_44c6: call string [mscorlib]System.Convert::ToString(int32)
IL_44cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44d0: stloc.s V_6
IL_44d2: br.s IL_451a
IL_44d4: ldloc.s V_8
IL_44d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_44db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_44e0: stloc.s V_7
IL_44e2: ldloc.s V_10
IL_44e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_44e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_44ee: stloc.s V_8
IL_44f0: ldloc.s V_7
IL_44f2: call string [mscorlib]System.Convert::ToString(int32)
IL_44f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_44fc: stloc.s V_10
IL_44fe: ldloc.s V_8
IL_4500: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4505: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_450a: stloc.s V_8
IL_450c: ldloc.s V_9
IL_450e: call string [mscorlib]System.Convert::ToString(int32)
IL_4513: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4518: stloc.s V_7
IL_451a: ldloc.s V_7
IL_451c: ldloc.s V_8
IL_451e: bne.un.s IL_4568
IL_4520: ldloc.s V_8
IL_4522: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4527: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_452c: stloc.s V_9
IL_452e: ldloc.s V_8
IL_4530: call string [mscorlib]System.Convert::ToString(int32)
IL_4535: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_453a: stloc.s V_8
IL_453c: ldloc.s V_9
IL_453e: call string [mscorlib]System.Convert::ToString(int32)
IL_4543: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4548: stloc.s V_7
IL_454a: ldloc.s V_6
IL_454c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4551: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4556: stloc.s V_8
IL_4558: ldloc.s V_8
IL_455a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_455f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4564: stloc.s V_8
IL_4566: br.s IL_45ae
IL_4568: ldloc.s V_6
IL_456a: call string [mscorlib]System.Convert::ToString(int32)
IL_456f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4574: stloc.s V_10
IL_4576: ldloc.s V_7
IL_4578: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_457d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4582: stloc.s V_8
IL_4584: ldloc.s V_7
IL_4586: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_458b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4590: stloc.s V_10
IL_4592: ldloc.s V_7
IL_4594: call string [mscorlib]System.Convert::ToString(int32)
IL_4599: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_459e: stloc.s V_7
IL_45a0: ldloc.s V_8
IL_45a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_45a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_45ac: stloc.s V_9
IL_45ae: ldloc.s V_10
IL_45b0: ldloc.s V_7
IL_45b2: bne.un.s IL_45fc
IL_45b4: ldloc.s V_7
IL_45b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_45bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_45c0: stloc.s V_10
IL_45c2: ldloc.s V_9
IL_45c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_45c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_45ce: stloc.s V_6
IL_45d0: ldloc.s V_6
IL_45d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_45d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_45dc: stloc.s V_10
IL_45de: ldloc.s V_9
IL_45e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_45e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_45ea: stloc.s V_6
IL_45ec: ldloc.s V_7
IL_45ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_45f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_45f8: stloc.s V_7
IL_45fa: br.s IL_4642
IL_45fc: ldloc.s V_6
IL_45fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4603: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4608: stloc.s V_10
IL_460a: ldloc.s V_7
IL_460c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4611: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4616: stloc.s V_9
IL_4618: ldloc.s V_10
IL_461a: call string [mscorlib]System.Convert::ToString(int32)
IL_461f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4624: stloc.s V_6
IL_4626: ldloc.s V_10
IL_4628: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_462d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4632: stloc.s V_6
IL_4634: ldloc.s V_7
IL_4636: call string [mscorlib]System.Convert::ToString(int32)
IL_463b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4640: stloc.s V_7
IL_4642: ldloc.s V_9
IL_4644: ldloc.s V_10
IL_4646: blt.s IL_4690
IL_4648: ldloc.s V_9
IL_464a: call string [mscorlib]System.Convert::ToString(int32)
IL_464f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4654: stloc.s V_9
IL_4656: ldloc.s V_9
IL_4658: call string [mscorlib]System.Convert::ToString(int32)
IL_465d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4662: stloc.s V_7
IL_4664: ldloc.s V_9
IL_4666: call string [mscorlib]System.Convert::ToString(int32)
IL_466b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4670: stloc.s V_7
IL_4672: ldloc.s V_10
IL_4674: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4679: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_467e: stloc.s V_7
IL_4680: ldloc.s V_9
IL_4682: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4687: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_468c: stloc.s V_8
IL_468e: br.s IL_46d6
IL_4690: ldloc.s V_6
IL_4692: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4697: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_469c: stloc.s V_10
IL_469e: ldloc.s V_10
IL_46a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_46a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_46aa: stloc.s V_8
IL_46ac: ldloc.s V_9
IL_46ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_46b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_46b8: stloc.s V_6
IL_46ba: ldloc.s V_9
IL_46bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_46c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_46c6: stloc.s V_8
IL_46c8: ldloc.s V_8
IL_46ca: call string [mscorlib]System.Convert::ToString(int32)
IL_46cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_46d4: stloc.s V_10
IL_46d6: ldloc.s V_9
IL_46d8: ldloc.s V_8
IL_46da: beq.s IL_4724
IL_46dc: ldloc.s V_7
IL_46de: call string [mscorlib]System.Convert::ToString(int32)
IL_46e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_46e8: stloc.s V_10
IL_46ea: ldloc.s V_9
IL_46ec: call string [mscorlib]System.Convert::ToString(int32)
IL_46f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_46f6: stloc.s V_9
IL_46f8: ldloc.s V_8
IL_46fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_46ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4704: stloc.s V_7
IL_4706: ldloc.s V_10
IL_4708: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_470d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4712: stloc.s V_9
IL_4714: ldloc.s V_6
IL_4716: call string [mscorlib]System.Convert::ToString(int32)
IL_471b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4720: stloc.s V_10
IL_4722: br.s IL_476a
IL_4724: ldloc.s V_10
IL_4726: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_472b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4730: stloc.s V_6
IL_4732: ldloc.s V_8
IL_4734: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4739: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_473e: stloc.s V_6
IL_4740: ldloc.s V_10
IL_4742: call string [mscorlib]System.Convert::ToString(int32)
IL_4747: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_474c: stloc.s V_6
IL_474e: ldloc.s V_9
IL_4750: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4755: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_475a: stloc.s V_10
IL_475c: ldloc.s V_6
IL_475e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4763: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4768: stloc.s V_6
IL_476a: ldloc.s V_7
IL_476c: ldloc.s V_6
IL_476e: ble.s IL_47b8
IL_4770: ldloc.s V_8
IL_4772: call string [mscorlib]System.Convert::ToString(int32)
IL_4777: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_477c: stloc.s V_8
IL_477e: ldloc.s V_7
IL_4780: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4785: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_478a: stloc.s V_8
IL_478c: ldloc.s V_10
IL_478e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4793: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4798: stloc.s V_8
IL_479a: ldloc.s V_10
IL_479c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_47a1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_47a6: stloc.s V_7
IL_47a8: ldloc.s V_8
IL_47aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_47af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_47b4: stloc.s V_10
IL_47b6: br.s IL_47fe
IL_47b8: ldloc.s V_7
IL_47ba: call string [mscorlib]System.Convert::ToString(int32)
IL_47bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_47c4: stloc.s V_9
IL_47c6: ldloc.s V_9
IL_47c8: call string [mscorlib]System.Convert::ToString(int32)
IL_47cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_47d2: stloc.s V_9
IL_47d4: ldloc.s V_6
IL_47d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_47db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_47e0: stloc.s V_10
IL_47e2: ldloc.s V_9
IL_47e4: call string [mscorlib]System.Convert::ToString(int32)
IL_47e9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_47ee: stloc.s V_7
IL_47f0: ldloc.s V_9
IL_47f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_47f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_47fc: stloc.s V_10
IL_47fe: ldloc.s V_9
IL_4800: ldloc.s V_8
IL_4802: blt.s IL_484c
IL_4804: ldloc.s V_10
IL_4806: call string [mscorlib]System.Convert::ToString(int32)
IL_480b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4810: stloc.s V_9
IL_4812: ldloc.s V_6
IL_4814: call string [mscorlib]System.Convert::ToString(int32)
IL_4819: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_481e: stloc.s V_8
IL_4820: ldloc.s V_9
IL_4822: call string [mscorlib]System.Convert::ToString(int32)
IL_4827: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_482c: stloc.s V_8
IL_482e: ldloc.s V_7
IL_4830: call string [mscorlib]System.Convert::ToString(int32)
IL_4835: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_483a: stloc.s V_9
IL_483c: ldloc.s V_7
IL_483e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4843: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4848: stloc.s V_6
IL_484a: br.s IL_4892
IL_484c: ldloc.s V_9
IL_484e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4853: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4858: stloc.s V_7
IL_485a: ldloc.s V_9
IL_485c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4861: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4866: stloc.s V_10
IL_4868: ldloc.s V_9
IL_486a: call string [mscorlib]System.Convert::ToString(int32)
IL_486f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4874: stloc.s V_7
IL_4876: ldloc.s V_8
IL_4878: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_487d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4882: stloc.s V_8
IL_4884: ldloc.s V_6
IL_4886: call string [mscorlib]System.Convert::ToString(int32)
IL_488b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4890: stloc.s V_8
IL_4892: ldloc.s V_10
IL_4894: ldloc.s V_9
IL_4896: ble.s IL_48e0
IL_4898: ldloc.s V_10
IL_489a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_489f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48a4: stloc.s V_7
IL_48a6: ldloc.s V_6
IL_48a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_48ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48b2: stloc.s V_8
IL_48b4: ldloc.s V_10
IL_48b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_48bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48c0: stloc.s V_7
IL_48c2: ldloc.s V_7
IL_48c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_48c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_48ce: stloc.s V_6
IL_48d0: ldloc.s V_9
IL_48d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_48d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_48dc: stloc.s V_9
IL_48de: br.s IL_4926
IL_48e0: ldloc.s V_9
IL_48e2: call string [mscorlib]System.Convert::ToString(int32)
IL_48e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_48ec: stloc.s V_8
IL_48ee: ldloc.s V_7
IL_48f0: call string [mscorlib]System.Convert::ToString(int32)
IL_48f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_48fa: stloc.s V_6
IL_48fc: ldloc.s V_10
IL_48fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4903: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4908: stloc.s V_9
IL_490a: ldloc.s V_8
IL_490c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4911: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4916: stloc.s V_7
IL_4918: ldloc.s V_6
IL_491a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_491f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4924: stloc.s V_8
IL_4926: ldloc.s V_8
IL_4928: ldloc.s V_9
IL_492a: bne.un.s IL_4974
IL_492c: ldloc.s V_10
IL_492e: call string [mscorlib]System.Convert::ToString(int32)
IL_4933: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4938: stloc.s V_8
IL_493a: ldloc.s V_7
IL_493c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4941: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4946: stloc.s V_8
IL_4948: ldloc.s V_6
IL_494a: call string [mscorlib]System.Convert::ToString(int32)
IL_494f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4954: stloc.s V_9
IL_4956: ldloc.s V_7
IL_4958: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_495d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4962: stloc.s V_9
IL_4964: ldloc.s V_10
IL_4966: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_496b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4970: stloc.s V_7
IL_4972: br.s IL_49ba
IL_4974: ldloc.s V_10
IL_4976: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_497b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4980: stloc.s V_10
IL_4982: ldloc.s V_7
IL_4984: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4989: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_498e: stloc.s V_7
IL_4990: ldloc.s V_10
IL_4992: call string [mscorlib]System.Convert::ToString(int32)
IL_4997: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_499c: stloc.s V_7
IL_499e: ldloc.s V_6
IL_49a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_49aa: stloc.s V_6
IL_49ac: ldloc.s V_6
IL_49ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_49b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_49b8: stloc.s V_9
IL_49ba: ldloc.s V_7
IL_49bc: ldloc.s V_9
IL_49be: beq.s IL_4a08
IL_49c0: ldloc.s V_8
IL_49c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_49cc: stloc.s V_8
IL_49ce: ldloc.s V_9
IL_49d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_49d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_49da: stloc.s V_9
IL_49dc: ldloc.s V_6
IL_49de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_49e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_49e8: stloc.s V_7
IL_49ea: ldloc.s V_10
IL_49ec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49f1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_49f6: stloc.s V_6
IL_49f8: ldloc.s V_7
IL_49fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_49ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4a04: stloc.s V_8
IL_4a06: br.s IL_4a4e
IL_4a08: ldloc.s V_6
IL_4a0a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a0f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a14: stloc.s V_9
IL_4a16: ldloc.s V_8
IL_4a18: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a1d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a22: stloc.s V_6
IL_4a24: ldloc.s V_7
IL_4a26: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a2b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a30: stloc.s V_8
IL_4a32: ldloc.s V_9
IL_4a34: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a39: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a3e: stloc.s V_6
IL_4a40: ldloc.s V_9
IL_4a42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4a47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4a4c: stloc.s V_7
IL_4a4e: ldloc.s V_10
IL_4a50: ldloc.s V_6
IL_4a52: ble.s IL_4a9c
IL_4a54: ldloc.s V_9
IL_4a56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4a5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4a60: stloc.s V_9
IL_4a62: ldloc.s V_6
IL_4a64: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4a69: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4a6e: stloc.s V_7
IL_4a70: ldloc.s V_9
IL_4a72: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4a77: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4a7c: stloc.s V_6
IL_4a7e: ldloc.s V_8
IL_4a80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4a85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4a8a: stloc.s V_7
IL_4a8c: ldloc.s V_6
IL_4a8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4a93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4a98: stloc.s V_10
IL_4a9a: br.s IL_4ae2
IL_4a9c: ldloc.s V_7
IL_4a9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4aa3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4aa8: stloc.s V_10
IL_4aaa: ldloc.s V_10
IL_4aac: call string [mscorlib]System.Convert::ToString(int32)
IL_4ab1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ab6: stloc.s V_10
IL_4ab8: ldloc.s V_10
IL_4aba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4abf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4ac4: stloc.s V_7
IL_4ac6: ldloc.s V_8
IL_4ac8: call string [mscorlib]System.Convert::ToString(int32)
IL_4acd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ad2: stloc.s V_7
IL_4ad4: ldloc.s V_8
IL_4ad6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4adb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4ae0: stloc.s V_6
IL_4ae2: ldloc.s V_6
IL_4ae4: ldloc.s V_6
IL_4ae6: bge.s IL_4b30
IL_4ae8: ldloc.s V_7
IL_4aea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4aef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4af4: stloc.s V_10
IL_4af6: ldloc.s V_7
IL_4af8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4afd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4b02: stloc.s V_9
IL_4b04: ldloc.s V_7
IL_4b06: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b0b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b10: stloc.s V_6
IL_4b12: ldloc.s V_6
IL_4b14: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b19: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b1e: stloc.s V_9
IL_4b20: ldloc.s V_6
IL_4b22: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b27: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b2c: stloc.s V_9
IL_4b2e: br.s IL_4b76
IL_4b30: ldloc.s V_6
IL_4b32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4b37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4b3c: stloc.s V_9
IL_4b3e: ldloc.s V_6
IL_4b40: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b45: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b4a: stloc.s V_8
IL_4b4c: ldloc.s V_9
IL_4b4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4b53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4b58: stloc.s V_6
IL_4b5a: ldloc.s V_8
IL_4b5c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4b61: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4b66: stloc.s V_9
IL_4b68: ldloc.s V_10
IL_4b6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b74: stloc.s V_8
IL_4b76: ldloc.s V_6
IL_4b78: ldloc.s V_6
IL_4b7a: bge.s IL_4bc4
IL_4b7c: ldloc.s V_8
IL_4b7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4b83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4b88: stloc.s V_7
IL_4b8a: ldloc.s V_8
IL_4b8c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4b91: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4b96: stloc.s V_10
IL_4b98: ldloc.s V_9
IL_4b9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4b9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ba4: stloc.s V_10
IL_4ba6: ldloc.s V_10
IL_4ba8: call string [mscorlib]System.Convert::ToString(int32)
IL_4bad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4bb2: stloc.s V_8
IL_4bb4: ldloc.s V_8
IL_4bb6: call string [mscorlib]System.Convert::ToString(int32)
IL_4bbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4bc0: stloc.s V_10
IL_4bc2: br.s IL_4c0a
IL_4bc4: ldloc.s V_9
IL_4bc6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4bcb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4bd0: stloc.s V_8
IL_4bd2: ldloc.s V_10
IL_4bd4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4bd9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4bde: stloc.s V_8
IL_4be0: ldloc.s V_9
IL_4be2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4be7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4bec: stloc.s V_10
IL_4bee: ldloc.s V_9
IL_4bf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4bf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4bfa: stloc.s V_8
IL_4bfc: ldloc.s V_10
IL_4bfe: call string [mscorlib]System.Convert::ToString(int32)
IL_4c03: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4c08: stloc.s V_10
IL_4c0a: ldloc.s V_8
IL_4c0c: ldloc.s V_6
IL_4c0e: blt.s IL_4c58
IL_4c10: ldloc.s V_6
IL_4c12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4c17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4c1c: stloc.s V_10
IL_4c1e: ldloc.s V_6
IL_4c20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c2a: stloc.s V_8
IL_4c2c: ldloc.s V_7
IL_4c2e: call string [mscorlib]System.Convert::ToString(int32)
IL_4c33: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4c38: stloc.s V_8
IL_4c3a: ldloc.s V_10
IL_4c3c: call string [mscorlib]System.Convert::ToString(int32)
IL_4c41: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4c46: stloc.s V_8
IL_4c48: ldloc.s V_7
IL_4c4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c54: stloc.s V_9
IL_4c56: br.s IL_4c9e
IL_4c58: ldloc.s V_9
IL_4c5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c64: stloc.s V_10
IL_4c66: ldloc.s V_7
IL_4c68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4c6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4c72: stloc.s V_6
IL_4c74: ldloc.s V_7
IL_4c76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4c7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4c80: stloc.s V_7
IL_4c82: ldloc.s V_7
IL_4c84: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4c89: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4c8e: stloc.s V_10
IL_4c90: ldloc.s V_7
IL_4c92: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4c97: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4c9c: stloc.s V_10
IL_4c9e: ldloc.s V_6
IL_4ca0: ldloc.s V_6
IL_4ca2: bne.un.s IL_4cec
IL_4ca4: ldloc.s V_6
IL_4ca6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4cab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4cb0: stloc.s V_9
IL_4cb2: ldloc.s V_8
IL_4cb4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4cb9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4cbe: stloc.s V_7
IL_4cc0: ldloc.s V_7
IL_4cc2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4cc7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ccc: stloc.s V_8
IL_4cce: ldloc.s V_6
IL_4cd0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4cd5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4cda: stloc.s V_8
IL_4cdc: ldloc.s V_6
IL_4cde: call string [mscorlib]System.Convert::ToString(int32)
IL_4ce3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ce8: stloc.s V_10
IL_4cea: br.s IL_4d32
IL_4cec: ldloc.s V_9
IL_4cee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4cf3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4cf8: stloc.s V_8
IL_4cfa: ldloc.s V_9
IL_4cfc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4d01: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4d06: stloc.s V_7
IL_4d08: ldloc.s V_6
IL_4d0a: call string [mscorlib]System.Convert::ToString(int32)
IL_4d0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d14: stloc.s V_10
IL_4d16: ldloc.s V_8
IL_4d18: call string [mscorlib]System.Convert::ToString(int32)
IL_4d1d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d22: stloc.s V_10
IL_4d24: ldloc.s V_7
IL_4d26: call string [mscorlib]System.Convert::ToString(int32)
IL_4d2b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d30: stloc.s V_10
IL_4d32: ldloc.s V_10
IL_4d34: ldloc.s V_8
IL_4d36: beq.s IL_4d80
IL_4d38: ldloc.s V_10
IL_4d3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4d3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4d44: stloc.s V_9
IL_4d46: ldloc.s V_10
IL_4d48: call string [mscorlib]System.Convert::ToString(int32)
IL_4d4d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d52: stloc.s V_6
IL_4d54: ldloc.s V_10
IL_4d56: call string [mscorlib]System.Convert::ToString(int32)
IL_4d5b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4d60: stloc.s V_6
IL_4d62: ldloc.s V_10
IL_4d64: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4d69: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4d6e: stloc.s V_10
IL_4d70: ldloc.s V_9
IL_4d72: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4d77: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4d7c: stloc.s V_6
IL_4d7e: br.s IL_4dc6
IL_4d80: ldloc.s V_7
IL_4d82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4d87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4d8c: stloc.s V_7
IL_4d8e: ldloc.s V_9
IL_4d90: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4d95: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4d9a: stloc.s V_9
IL_4d9c: ldloc.s V_7
IL_4d9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4da3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4da8: stloc.s V_8
IL_4daa: ldloc.s V_7
IL_4dac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4db1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4db6: stloc.s V_6
IL_4db8: ldloc.s V_7
IL_4dba: call string [mscorlib]System.Convert::ToString(int32)
IL_4dbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4dc4: stloc.s V_6
IL_4dc6: ldloc.s V_9
IL_4dc8: ldloc.s V_8
IL_4dca: beq.s IL_4e14
IL_4dcc: ldloc.s V_9
IL_4dce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4dd3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4dd8: stloc.s V_9
IL_4dda: ldloc.s V_7
IL_4ddc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4de1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4de6: stloc.s V_6
IL_4de8: ldloc.s V_9
IL_4dea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4def: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4df4: stloc.s V_9
IL_4df6: ldloc.s V_9
IL_4df8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4dfd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e02: stloc.s V_9
IL_4e04: ldloc.s V_9
IL_4e06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e10: stloc.s V_7
IL_4e12: br.s IL_4e5a
IL_4e14: ldloc.s V_6
IL_4e16: call string [mscorlib]System.Convert::ToString(int32)
IL_4e1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4e20: stloc.s V_9
IL_4e22: ldloc.s V_8
IL_4e24: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e29: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e2e: stloc.s V_6
IL_4e30: ldloc.s V_6
IL_4e32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4e37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4e3c: stloc.s V_10
IL_4e3e: ldloc.s V_6
IL_4e40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e4a: stloc.s V_8
IL_4e4c: ldloc.s V_10
IL_4e4e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e53: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e58: stloc.s V_9
IL_4e5a: ldloc.s V_6
IL_4e5c: ldloc.s V_6
IL_4e5e: bgt.s IL_4ea8
IL_4e60: ldloc.s V_6
IL_4e62: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4e67: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4e6c: stloc.s V_7
IL_4e6e: ldloc.s V_6
IL_4e70: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e75: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e7a: stloc.s V_10
IL_4e7c: ldloc.s V_7
IL_4e7e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4e83: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4e88: stloc.s V_10
IL_4e8a: ldloc.s V_10
IL_4e8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4e96: stloc.s V_10
IL_4e98: ldloc.s V_8
IL_4e9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4e9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ea4: stloc.s V_9
IL_4ea6: br.s IL_4eee
IL_4ea8: ldloc.s V_10
IL_4eaa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4eaf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4eb4: stloc.s V_9
IL_4eb6: ldloc.s V_9
IL_4eb8: call string [mscorlib]System.Convert::ToString(int32)
IL_4ebd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ec2: stloc.s V_6
IL_4ec4: ldloc.s V_9
IL_4ec6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4ecb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4ed0: stloc.s V_6
IL_4ed2: ldloc.s V_8
IL_4ed4: call string [mscorlib]System.Convert::ToString(int32)
IL_4ed9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4ede: stloc.s V_8
IL_4ee0: ldloc.s V_6
IL_4ee2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4ee7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4eec: stloc.s V_6
IL_4eee: ldloc.s V_10
IL_4ef0: ldloc.s V_10
IL_4ef2: bne.un.s IL_4f3c
IL_4ef4: ldloc.s V_8
IL_4ef6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4efb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f00: stloc.s V_9
IL_4f02: ldloc.s V_8
IL_4f04: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f09: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f0e: stloc.s V_9
IL_4f10: ldloc.s V_10
IL_4f12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4f17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4f1c: stloc.s V_6
IL_4f1e: ldloc.s V_8
IL_4f20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f2a: stloc.s V_6
IL_4f2c: ldloc.s V_7
IL_4f2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f38: stloc.s V_7
IL_4f3a: br.s IL_4f82
IL_4f3c: ldloc.s V_9
IL_4f3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f48: stloc.s V_9
IL_4f4a: ldloc.s V_7
IL_4f4c: call string [mscorlib]System.Convert::ToString(int32)
IL_4f51: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4f56: stloc.s V_6
IL_4f58: ldloc.s V_8
IL_4f5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4f5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4f64: stloc.s V_7
IL_4f66: ldloc.s V_8
IL_4f68: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4f6d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4f72: stloc.s V_7
IL_4f74: ldloc.s V_6
IL_4f76: call string [mscorlib]System.Convert::ToString(int32)
IL_4f7b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4f80: stloc.s V_9
IL_4f82: ldloc.s V_6
IL_4f84: ldloc.s V_9
IL_4f86: bge.s IL_4fd0
IL_4f88: ldloc.s V_10
IL_4f8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4f94: stloc.s V_10
IL_4f96: ldloc.s V_8
IL_4f98: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4f9d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4fa2: stloc.s V_6
IL_4fa4: ldloc.s V_8
IL_4fa6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4fab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4fb0: stloc.s V_7
IL_4fb2: ldloc.s V_10
IL_4fb4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_4fb9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_4fbe: stloc.s V_9
IL_4fc0: ldloc.s V_8
IL_4fc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_4fc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_4fcc: stloc.s V_6
IL_4fce: br.s IL_5016
IL_4fd0: ldloc.s V_6
IL_4fd2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4fd7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4fdc: stloc.s V_6
IL_4fde: ldloc.s V_8
IL_4fe0: call string [mscorlib]System.Convert::ToString(int32)
IL_4fe5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_4fea: stloc.s V_7
IL_4fec: ldloc.s V_9
IL_4fee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_4ff3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_4ff8: stloc.s V_8
IL_4ffa: ldloc.s V_8
IL_4ffc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5001: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5006: stloc.s V_10
IL_5008: ldloc.s V_8
IL_500a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_500f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5014: stloc.s V_6
IL_5016: ldloc.s V_10
IL_5018: ldloc.s V_9
IL_501a: beq.s IL_5064
IL_501c: ldloc.s V_6
IL_501e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5023: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5028: stloc.s V_10
IL_502a: ldloc.s V_6
IL_502c: call string [mscorlib]System.Convert::ToString(int32)
IL_5031: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5036: stloc.s V_8
IL_5038: ldloc.s V_7
IL_503a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_503f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5044: stloc.s V_6
IL_5046: ldloc.s V_7
IL_5048: call string [mscorlib]System.Convert::ToString(int32)
IL_504d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5052: stloc.s V_10
IL_5054: ldloc.s V_7
IL_5056: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_505b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5060: stloc.s V_8
IL_5062: br.s IL_50aa
IL_5064: ldloc.s V_7
IL_5066: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_506b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5070: stloc.s V_6
IL_5072: ldloc.s V_8
IL_5074: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5079: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_507e: stloc.s V_10
IL_5080: ldloc.s V_7
IL_5082: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5087: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_508c: stloc.s V_7
IL_508e: ldloc.s V_9
IL_5090: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5095: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_509a: stloc.s V_6
IL_509c: ldloc.s V_9
IL_509e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_50a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_50a8: stloc.s V_6
IL_50aa: ldloc.s V_10
IL_50ac: ldloc.s V_6
IL_50ae: beq.s IL_50f8
IL_50b0: ldloc.s V_9
IL_50b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_50b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_50bc: stloc.s V_7
IL_50be: ldloc.s V_9
IL_50c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_50c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_50ca: stloc.s V_8
IL_50cc: ldloc.s V_10
IL_50ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_50d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_50d8: stloc.s V_6
IL_50da: ldloc.s V_10
IL_50dc: call string [mscorlib]System.Convert::ToString(int32)
IL_50e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_50e6: stloc.s V_6
IL_50e8: ldloc.s V_6
IL_50ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_50ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_50f4: stloc.s V_8
IL_50f6: br.s IL_513e
IL_50f8: ldloc.s V_10
IL_50fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_50ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5104: stloc.s V_7
IL_5106: ldloc.s V_10
IL_5108: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_510d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5112: stloc.s V_7
IL_5114: ldloc.s V_6
IL_5116: call string [mscorlib]System.Convert::ToString(int32)
IL_511b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5120: stloc.s V_7
IL_5122: ldloc.s V_9
IL_5124: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5129: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_512e: stloc.s V_9
IL_5130: ldloc.s V_8
IL_5132: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5137: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_513c: stloc.s V_7
IL_513e: ldloc.s V_6
IL_5140: ldloc.s V_9
IL_5142: bgt.s IL_518c
IL_5144: ldloc.s V_10
IL_5146: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_514b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5150: stloc.s V_6
IL_5152: ldloc.s V_9
IL_5154: call string [mscorlib]System.Convert::ToString(int32)
IL_5159: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_515e: stloc.s V_8
IL_5160: ldloc.s V_9
IL_5162: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5167: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_516c: stloc.s V_8
IL_516e: ldloc.s V_9
IL_5170: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5175: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_517a: stloc.s V_8
IL_517c: ldloc.s V_9
IL_517e: call string [mscorlib]System.Convert::ToString(int32)
IL_5183: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5188: stloc.s V_8
IL_518a: br.s IL_51d2
IL_518c: ldloc.s V_7
IL_518e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5193: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5198: stloc.s V_8
IL_519a: ldloc.s V_10
IL_519c: call string [mscorlib]System.Convert::ToString(int32)
IL_51a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51a6: stloc.s V_10
IL_51a8: ldloc.s V_9
IL_51aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_51af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_51b4: stloc.s V_7
IL_51b6: ldloc.s V_8
IL_51b8: call string [mscorlib]System.Convert::ToString(int32)
IL_51bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51c2: stloc.s V_9
IL_51c4: ldloc.s V_6
IL_51c6: call string [mscorlib]System.Convert::ToString(int32)
IL_51cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51d0: stloc.s V_6
IL_51d2: ldloc.s V_8
IL_51d4: ldloc.s V_8
IL_51d6: blt.s IL_5220
IL_51d8: ldloc.s V_6
IL_51da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_51df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_51e4: stloc.s V_7
IL_51e6: ldloc.s V_8
IL_51e8: call string [mscorlib]System.Convert::ToString(int32)
IL_51ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_51f2: stloc.s V_6
IL_51f4: ldloc.s V_10
IL_51f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_51fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5200: stloc.s V_6
IL_5202: ldloc.s V_7
IL_5204: call string [mscorlib]System.Convert::ToString(int32)
IL_5209: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_520e: stloc.s V_7
IL_5210: ldloc.s V_10
IL_5212: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5217: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_521c: stloc.s V_7
IL_521e: br.s IL_5266
IL_5220: ldloc.s V_7
IL_5222: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5227: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_522c: stloc.s V_10
IL_522e: ldloc.s V_8
IL_5230: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5235: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_523a: stloc.s V_7
IL_523c: ldloc.s V_7
IL_523e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5243: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5248: stloc.s V_9
IL_524a: ldloc.s V_10
IL_524c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5251: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5256: stloc.s V_6
IL_5258: ldloc.s V_7
IL_525a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_525f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5264: stloc.s V_7
IL_5266: ldloc.s V_6
IL_5268: ldloc.s V_9
IL_526a: bgt.s IL_52b4
IL_526c: ldloc.s V_6
IL_526e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5273: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5278: stloc.s V_6
IL_527a: ldloc.s V_6
IL_527c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5281: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5286: stloc.s V_9
IL_5288: ldloc.s V_9
IL_528a: call string [mscorlib]System.Convert::ToString(int32)
IL_528f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5294: stloc.s V_10
IL_5296: ldloc.s V_7
IL_5298: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_529d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_52a2: stloc.s V_6
IL_52a4: ldloc.s V_7
IL_52a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_52ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_52b0: stloc.s V_8
IL_52b2: br.s IL_52fa
IL_52b4: ldloc.s V_10
IL_52b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_52bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_52c0: stloc.s V_9
IL_52c2: ldloc.s V_9
IL_52c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_52c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_52ce: stloc.s V_10
IL_52d0: ldloc.s V_9
IL_52d2: call string [mscorlib]System.Convert::ToString(int32)
IL_52d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_52dc: stloc.s V_6
IL_52de: ldloc.s V_10
IL_52e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_52e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_52ea: stloc.s V_9
IL_52ec: ldloc.s V_8
IL_52ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_52f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_52f8: stloc.s V_8
IL_52fa: ldloc.s V_9
IL_52fc: ldloc.s V_8
IL_52fe: bne.un.s IL_5348
IL_5300: ldloc.s V_6
IL_5302: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5307: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_530c: stloc.s V_8
IL_530e: ldloc.s V_8
IL_5310: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5315: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_531a: stloc.s V_9
IL_531c: ldloc.s V_6
IL_531e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5323: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5328: stloc.s V_6
IL_532a: ldloc.s V_10
IL_532c: call string [mscorlib]System.Convert::ToString(int32)
IL_5331: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5336: stloc.s V_9
IL_5338: ldloc.s V_8
IL_533a: call string [mscorlib]System.Convert::ToString(int32)
IL_533f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5344: stloc.s V_6
IL_5346: br.s IL_538e
IL_5348: ldloc.s V_7
IL_534a: call string [mscorlib]System.Convert::ToString(int32)
IL_534f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5354: stloc.s V_9
IL_5356: ldloc.s V_6
IL_5358: call string [mscorlib]System.Convert::ToString(int32)
IL_535d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5362: stloc.s V_7
IL_5364: ldloc.s V_9
IL_5366: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_536b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5370: stloc.s V_6
IL_5372: ldloc.s V_7
IL_5374: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5379: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_537e: stloc.s V_8
IL_5380: ldloc.s V_9
IL_5382: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5387: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_538c: stloc.s V_7
IL_538e: ldloc.s V_7
IL_5390: ldloc.s V_7
IL_5392: bge.s IL_53dc
IL_5394: ldloc.s V_7
IL_5396: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_539b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53a0: stloc.s V_9
IL_53a2: ldloc.s V_9
IL_53a4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_53a9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53ae: stloc.s V_6
IL_53b0: ldloc.s V_9
IL_53b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_53b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53bc: stloc.s V_8
IL_53be: ldloc.s V_9
IL_53c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_53c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_53ca: stloc.s V_8
IL_53cc: ldloc.s V_7
IL_53ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_53d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_53d8: stloc.s V_10
IL_53da: br.s IL_5422
IL_53dc: ldloc.s V_7
IL_53de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_53e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_53e8: stloc.s V_8
IL_53ea: ldloc.s V_6
IL_53ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_53f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_53f6: stloc.s V_7
IL_53f8: ldloc.s V_6
IL_53fa: call string [mscorlib]System.Convert::ToString(int32)
IL_53ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5404: stloc.s V_8
IL_5406: ldloc.s V_8
IL_5408: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_540d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5412: stloc.s V_7
IL_5414: ldloc.s V_6
IL_5416: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_541b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5420: stloc.s V_6
IL_5422: ldloc.s V_8
IL_5424: ldloc.s V_8
IL_5426: blt.s IL_5470
IL_5428: ldloc.s V_10
IL_542a: call string [mscorlib]System.Convert::ToString(int32)
IL_542f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5434: stloc.s V_8
IL_5436: ldloc.s V_9
IL_5438: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_543d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5442: stloc.s V_6
IL_5444: ldloc.s V_9
IL_5446: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_544b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5450: stloc.s V_8
IL_5452: ldloc.s V_9
IL_5454: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5459: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_545e: stloc.s V_7
IL_5460: ldloc.s V_8
IL_5462: call string [mscorlib]System.Convert::ToString(int32)
IL_5467: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_546c: stloc.s V_10
IL_546e: br.s IL_54b6
IL_5470: ldloc.s V_8
IL_5472: call string [mscorlib]System.Convert::ToString(int32)
IL_5477: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_547c: stloc.s V_6
IL_547e: ldloc.s V_10
IL_5480: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5485: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_548a: stloc.s V_7
IL_548c: ldloc.s V_7
IL_548e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5493: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5498: stloc.s V_6
IL_549a: ldloc.s V_9
IL_549c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_54a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_54a6: stloc.s V_6
IL_54a8: ldloc.s V_10
IL_54aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54b4: stloc.s V_7
IL_54b6: ldloc.s V_6
IL_54b8: ldloc.s V_10
IL_54ba: bne.un.s IL_5504
IL_54bc: ldloc.s V_10
IL_54be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54c8: stloc.s V_7
IL_54ca: ldloc.s V_8
IL_54cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54d6: stloc.s V_8
IL_54d8: ldloc.s V_9
IL_54da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_54df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_54e4: stloc.s V_9
IL_54e6: ldloc.s V_6
IL_54e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_54f2: stloc.s V_7
IL_54f4: ldloc.s V_9
IL_54f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_54fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5500: stloc.s V_7
IL_5502: br.s IL_554a
IL_5504: ldloc.s V_6
IL_5506: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_550b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5510: stloc.s V_10
IL_5512: ldloc.s V_8
IL_5514: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5519: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_551e: stloc.s V_8
IL_5520: ldloc.s V_8
IL_5522: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5527: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_552c: stloc.s V_9
IL_552e: ldloc.s V_9
IL_5530: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5535: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_553a: stloc.s V_8
IL_553c: ldloc.s V_7
IL_553e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5543: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5548: stloc.s V_6
IL_554a: ldloc.s V_8
IL_554c: ldloc.s V_7
IL_554e: bne.un.s IL_5598
IL_5550: ldloc.s V_7
IL_5552: call string [mscorlib]System.Convert::ToString(int32)
IL_5557: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_555c: stloc.s V_10
IL_555e: ldloc.s V_7
IL_5560: call string [mscorlib]System.Convert::ToString(int32)
IL_5565: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_556a: stloc.s V_8
IL_556c: ldloc.s V_7
IL_556e: call string [mscorlib]System.Convert::ToString(int32)
IL_5573: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5578: stloc.s V_6
IL_557a: ldloc.s V_10
IL_557c: call string [mscorlib]System.Convert::ToString(int32)
IL_5581: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5586: stloc.s V_6
IL_5588: ldloc.s V_7
IL_558a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_558f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5594: stloc.s V_7
IL_5596: br.s IL_55de
IL_5598: ldloc.s V_8
IL_559a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_559f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55a4: stloc.s V_10
IL_55a6: ldloc.s V_6
IL_55a8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_55ad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55b2: stloc.s V_10
IL_55b4: ldloc.s V_9
IL_55b6: call string [mscorlib]System.Convert::ToString(int32)
IL_55bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_55c0: stloc.s V_8
IL_55c2: ldloc.s V_7
IL_55c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_55c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_55ce: stloc.s V_8
IL_55d0: ldloc.s V_9
IL_55d2: call string [mscorlib]System.Convert::ToString(int32)
IL_55d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_55dc: stloc.s V_9
IL_55de: ldloc.s V_8
IL_55e0: ldloc.s V_10
IL_55e2: bge.s IL_562c
IL_55e4: ldloc.s V_10
IL_55e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_55eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55f0: stloc.s V_9
IL_55f2: ldloc.s V_8
IL_55f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_55f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_55fe: stloc.s V_8
IL_5600: ldloc.s V_7
IL_5602: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5607: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_560c: stloc.s V_9
IL_560e: ldloc.s V_9
IL_5610: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5615: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_561a: stloc.s V_6
IL_561c: ldloc.s V_6
IL_561e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5623: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5628: stloc.s V_9
IL_562a: br.s IL_5672
IL_562c: ldloc.s V_9
IL_562e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5633: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5638: stloc.s V_7
IL_563a: ldloc.s V_7
IL_563c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5641: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5646: stloc.s V_10
IL_5648: ldloc.s V_10
IL_564a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_564f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5654: stloc.s V_6
IL_5656: ldloc.s V_8
IL_5658: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_565d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5662: stloc.s V_8
IL_5664: ldloc.s V_6
IL_5666: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_566b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5670: stloc.s V_10
IL_5672: ldloc.s V_10
IL_5674: ldloc.s V_6
IL_5676: bgt.s IL_56c0
IL_5678: ldloc.s V_8
IL_567a: call string [mscorlib]System.Convert::ToString(int32)
IL_567f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5684: stloc.s V_6
IL_5686: ldloc.s V_10
IL_5688: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_568d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5692: stloc.s V_8
IL_5694: ldloc.s V_10
IL_5696: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_569b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_56a0: stloc.s V_10
IL_56a2: ldloc.s V_7
IL_56a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_56a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_56ae: stloc.s V_10
IL_56b0: ldloc.s V_9
IL_56b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_56b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_56bc: stloc.s V_6
IL_56be: br.s IL_5706
IL_56c0: ldloc.s V_7
IL_56c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_56c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_56cc: stloc.s V_7
IL_56ce: ldloc.s V_8
IL_56d0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_56d5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_56da: stloc.s V_6
IL_56dc: ldloc.s V_10
IL_56de: call string [mscorlib]System.Convert::ToString(int32)
IL_56e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_56e8: stloc.s V_8
IL_56ea: ldloc.s V_8
IL_56ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_56f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_56f6: stloc.s V_6
IL_56f8: ldloc.s V_6
IL_56fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_56ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5704: stloc.s V_10
IL_5706: ldloc.s V_9
IL_5708: ldloc.s V_8
IL_570a: ble.s IL_5754
IL_570c: ldloc.s V_9
IL_570e: call string [mscorlib]System.Convert::ToString(int32)
IL_5713: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5718: stloc.s V_9
IL_571a: ldloc.s V_10
IL_571c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5721: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5726: stloc.s V_9
IL_5728: ldloc.s V_10
IL_572a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_572f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5734: stloc.s V_9
IL_5736: ldloc.s V_6
IL_5738: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_573d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5742: stloc.s V_8
IL_5744: ldloc.s V_6
IL_5746: call string [mscorlib]System.Convert::ToString(int32)
IL_574b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5750: stloc.s V_8
IL_5752: br.s IL_579a
IL_5754: ldloc.s V_9
IL_5756: call string [mscorlib]System.Convert::ToString(int32)
IL_575b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5760: stloc.s V_10
IL_5762: ldloc.s V_8
IL_5764: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5769: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_576e: stloc.s V_10
IL_5770: ldloc.s V_10
IL_5772: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5777: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_577c: stloc.s V_9
IL_577e: ldloc.s V_8
IL_5780: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5785: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_578a: stloc.s V_8
IL_578c: ldloc.s V_7
IL_578e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5793: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5798: stloc.s V_8
IL_579a: ldloc.s V_10
IL_579c: ldloc.s V_9
IL_579e: bgt.s IL_57e8
IL_57a0: ldloc.s V_7
IL_57a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_57a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_57ac: stloc.s V_9
IL_57ae: ldloc.s V_9
IL_57b0: call string [mscorlib]System.Convert::ToString(int32)
IL_57b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_57ba: stloc.s V_10
IL_57bc: ldloc.s V_8
IL_57be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_57c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_57c8: stloc.s V_8
IL_57ca: ldloc.s V_8
IL_57cc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_57d1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_57d6: stloc.s V_8
IL_57d8: ldloc.s V_8
IL_57da: call string [mscorlib]System.Convert::ToString(int32)
IL_57df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_57e4: stloc.s V_9
IL_57e6: br.s IL_582e
IL_57e8: ldloc.s V_6
IL_57ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_57ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_57f4: stloc.s V_7
IL_57f6: ldloc.s V_6
IL_57f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_57fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5802: stloc.s V_8
IL_5804: ldloc.s V_7
IL_5806: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_580b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5810: stloc.s V_6
IL_5812: ldloc.s V_8
IL_5814: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5819: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_581e: stloc.s V_10
IL_5820: ldloc.s V_10
IL_5822: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5827: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_582c: stloc.s V_7
IL_582e: ldloc.s V_9
IL_5830: ldloc.s V_7
IL_5832: bne.un.s IL_587c
IL_5834: ldloc.s V_6
IL_5836: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_583b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5840: stloc.s V_8
IL_5842: ldloc.s V_6
IL_5844: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5849: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_584e: stloc.s V_10
IL_5850: ldloc.s V_7
IL_5852: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5857: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_585c: stloc.s V_6
IL_585e: ldloc.s V_7
IL_5860: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5865: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_586a: stloc.s V_6
IL_586c: ldloc.s V_10
IL_586e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5873: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5878: stloc.s V_8
IL_587a: br.s IL_58c2
IL_587c: ldloc.s V_6
IL_587e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5883: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5888: stloc.s V_6
IL_588a: ldloc.s V_9
IL_588c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5891: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5896: stloc.s V_6
IL_5898: ldloc.s V_8
IL_589a: call string [mscorlib]System.Convert::ToString(int32)
IL_589f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_58a4: stloc.s V_8
IL_58a6: ldloc.s V_9
IL_58a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_58ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_58b2: stloc.s V_6
IL_58b4: ldloc.s V_10
IL_58b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_58bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_58c0: stloc.s V_6
IL_58c2: ldloc.s V_10
IL_58c4: ldloc.s V_8
IL_58c6: bgt.s IL_5910
IL_58c8: ldloc.s V_9
IL_58ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_58cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_58d4: stloc.s V_6
IL_58d6: ldloc.s V_6
IL_58d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_58dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_58e2: stloc.s V_7
IL_58e4: ldloc.s V_9
IL_58e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_58eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_58f0: stloc.s V_6
IL_58f2: ldloc.s V_10
IL_58f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_58f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_58fe: stloc.s V_10
IL_5900: ldloc.s V_6
IL_5902: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5907: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_590c: stloc.s V_10
IL_590e: br.s IL_5956
IL_5910: ldloc.s V_6
IL_5912: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5917: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_591c: stloc.s V_9
IL_591e: ldloc.s V_9
IL_5920: call string [mscorlib]System.Convert::ToString(int32)
IL_5925: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_592a: stloc.s V_9
IL_592c: ldloc.s V_6
IL_592e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5933: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5938: stloc.s V_9
IL_593a: ldloc.s V_9
IL_593c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5941: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5946: stloc.s V_9
IL_5948: ldloc.s V_7
IL_594a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_594f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5954: stloc.s V_8
IL_5956: ldloc.s V_7
IL_5958: ldloc.s V_7
IL_595a: bge.s IL_59a4
IL_595c: ldloc.s V_9
IL_595e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5963: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5968: stloc.s V_10
IL_596a: ldloc.s V_9
IL_596c: call string [mscorlib]System.Convert::ToString(int32)
IL_5971: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5976: stloc.s V_6
IL_5978: ldloc.s V_10
IL_597a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_597f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5984: stloc.s V_10
IL_5986: ldloc.s V_9
IL_5988: call string [mscorlib]System.Convert::ToString(int32)
IL_598d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5992: stloc.s V_10
IL_5994: ldloc.s V_9
IL_5996: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_599b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_59a0: stloc.s V_8
IL_59a2: br.s IL_59ea
IL_59a4: ldloc.s V_9
IL_59a6: call string [mscorlib]System.Convert::ToString(int32)
IL_59ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_59b0: stloc.s V_8
IL_59b2: ldloc.s V_7
IL_59b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_59b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_59be: stloc.s V_9
IL_59c0: ldloc.s V_7
IL_59c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_59c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_59cc: stloc.s V_9
IL_59ce: ldloc.s V_8
IL_59d0: call string [mscorlib]System.Convert::ToString(int32)
IL_59d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_59da: stloc.s V_9
IL_59dc: ldloc.s V_7
IL_59de: call string [mscorlib]System.Convert::ToString(int32)
IL_59e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_59e8: stloc.s V_7
IL_59ea: ldloc.s V_9
IL_59ec: ldloc.s V_8
IL_59ee: blt.s IL_5a38
IL_59f0: ldloc.s V_6
IL_59f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_59f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_59fc: stloc.s V_9
IL_59fe: ldloc.s V_9
IL_5a00: call string [mscorlib]System.Convert::ToString(int32)
IL_5a05: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5a0a: stloc.s V_8
IL_5a0c: ldloc.s V_8
IL_5a0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5a13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5a18: stloc.s V_8
IL_5a1a: ldloc.s V_7
IL_5a1c: call string [mscorlib]System.Convert::ToString(int32)
IL_5a21: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5a26: stloc.s V_9
IL_5a28: ldloc.s V_10
IL_5a2a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5a2f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5a34: stloc.s V_7
IL_5a36: br.s IL_5a7e
IL_5a38: ldloc.s V_8
IL_5a3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5a3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5a44: stloc.s V_6
IL_5a46: ldloc.s V_8
IL_5a48: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5a4d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5a52: stloc.s V_9
IL_5a54: ldloc.s V_10
IL_5a56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5a5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5a60: stloc.s V_10
IL_5a62: ldloc.s V_10
IL_5a64: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5a69: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5a6e: stloc.s V_7
IL_5a70: ldloc.s V_8
IL_5a72: call string [mscorlib]System.Convert::ToString(int32)
IL_5a77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5a7c: stloc.s V_7
IL_5a7e: ldloc.s V_8
IL_5a80: ldloc.s V_6
IL_5a82: blt.s IL_5acc
IL_5a84: ldloc.s V_10
IL_5a86: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5a8b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5a90: stloc.s V_6
IL_5a92: ldloc.s V_10
IL_5a94: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5a99: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5a9e: stloc.s V_9
IL_5aa0: ldloc.s V_6
IL_5aa2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5aa7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5aac: stloc.s V_10
IL_5aae: ldloc.s V_9
IL_5ab0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5ab5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5aba: stloc.s V_10
IL_5abc: ldloc.s V_9
IL_5abe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5ac3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5ac8: stloc.s V_10
IL_5aca: br.s IL_5b12
IL_5acc: ldloc.s V_9
IL_5ace: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5ad3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5ad8: stloc.s V_9
IL_5ada: ldloc.s V_6
IL_5adc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5ae1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ae6: stloc.s V_10
IL_5ae8: ldloc.s V_6
IL_5aea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5aef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5af4: stloc.s V_6
IL_5af6: ldloc.s V_7
IL_5af8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5afd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b02: stloc.s V_6
IL_5b04: ldloc.s V_6
IL_5b06: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b0b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b10: stloc.s V_9
IL_5b12: ldloc.s V_7
IL_5b14: ldloc.s V_6
IL_5b16: beq.s IL_5b60
IL_5b18: ldloc.s V_6
IL_5b1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b24: stloc.s V_7
IL_5b26: ldloc.s V_6
IL_5b28: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5b2d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5b32: stloc.s V_10
IL_5b34: ldloc.s V_6
IL_5b36: call string [mscorlib]System.Convert::ToString(int32)
IL_5b3b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b40: stloc.s V_8
IL_5b42: ldloc.s V_6
IL_5b44: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5b49: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5b4e: stloc.s V_7
IL_5b50: ldloc.s V_10
IL_5b52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5b57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5b5c: stloc.s V_6
IL_5b5e: br.s IL_5ba6
IL_5b60: ldloc.s V_7
IL_5b62: call string [mscorlib]System.Convert::ToString(int32)
IL_5b67: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b6c: stloc.s V_7
IL_5b6e: ldloc.s V_9
IL_5b70: call string [mscorlib]System.Convert::ToString(int32)
IL_5b75: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b7a: stloc.s V_10
IL_5b7c: ldloc.s V_6
IL_5b7e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b83: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5b88: stloc.s V_10
IL_5b8a: ldloc.s V_9
IL_5b8c: call string [mscorlib]System.Convert::ToString(int32)
IL_5b91: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5b96: stloc.s V_9
IL_5b98: ldloc.s V_7
IL_5b9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5b9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ba4: stloc.s V_9
IL_5ba6: ldloc.s V_6
IL_5ba8: ldloc.s V_9
IL_5baa: ble.s IL_5bf4
IL_5bac: ldloc.s V_7
IL_5bae: call string [mscorlib]System.Convert::ToString(int32)
IL_5bb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5bb8: stloc.s V_9
IL_5bba: ldloc.s V_10
IL_5bbc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5bc1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5bc6: stloc.s V_8
IL_5bc8: ldloc.s V_6
IL_5bca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5bcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5bd4: stloc.s V_8
IL_5bd6: ldloc.s V_10
IL_5bd8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5bdd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5be2: stloc.s V_6
IL_5be4: ldloc.s V_9
IL_5be6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5beb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5bf0: stloc.s V_6
IL_5bf2: br.s IL_5c3a
IL_5bf4: ldloc.s V_9
IL_5bf6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5bfb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c00: stloc.s V_7
IL_5c02: ldloc.s V_9
IL_5c04: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5c09: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5c0e: stloc.s V_10
IL_5c10: ldloc.s V_6
IL_5c12: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5c17: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c1c: stloc.s V_8
IL_5c1e: ldloc.s V_9
IL_5c20: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5c25: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5c2a: stloc.s V_6
IL_5c2c: ldloc.s V_8
IL_5c2e: call string [mscorlib]System.Convert::ToString(int32)
IL_5c33: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5c38: stloc.s V_8
IL_5c3a: ldloc.s V_7
IL_5c3c: ldloc.s V_10
IL_5c3e: beq.s IL_5c88
IL_5c40: ldloc.s V_9
IL_5c42: call string [mscorlib]System.Convert::ToString(int32)
IL_5c47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5c4c: stloc.s V_7
IL_5c4e: ldloc.s V_9
IL_5c50: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5c55: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5c5a: stloc.s V_9
IL_5c5c: ldloc.s V_6
IL_5c5e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5c63: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c68: stloc.s V_7
IL_5c6a: ldloc.s V_6
IL_5c6c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5c71: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5c76: stloc.s V_8
IL_5c78: ldloc.s V_9
IL_5c7a: call string [mscorlib]System.Convert::ToString(int32)
IL_5c7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5c84: stloc.s V_6
IL_5c86: br.s IL_5cce
IL_5c88: ldloc.s V_10
IL_5c8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5c8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5c94: stloc.s V_10
IL_5c96: ldloc.s V_10
IL_5c98: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5c9d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ca2: stloc.s V_8
IL_5ca4: ldloc.s V_7
IL_5ca6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5cab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5cb0: stloc.s V_6
IL_5cb2: ldloc.s V_8
IL_5cb4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5cb9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5cbe: stloc.s V_7
IL_5cc0: ldloc.s V_9
IL_5cc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5cc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ccc: stloc.s V_7
IL_5cce: ldloc.s V_7
IL_5cd0: ldloc.s V_8
IL_5cd2: bne.un.s IL_5d1c
IL_5cd4: ldloc.s V_8
IL_5cd6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5cdb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ce0: stloc.s V_6
IL_5ce2: ldloc.s V_8
IL_5ce4: call string [mscorlib]System.Convert::ToString(int32)
IL_5ce9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5cee: stloc.s V_6
IL_5cf0: ldloc.s V_9
IL_5cf2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5cf7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5cfc: stloc.s V_10
IL_5cfe: ldloc.s V_9
IL_5d00: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5d05: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5d0a: stloc.s V_8
IL_5d0c: ldloc.s V_8
IL_5d0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5d13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5d18: stloc.s V_10
IL_5d1a: br.s IL_5d62
IL_5d1c: ldloc.s V_7
IL_5d1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d28: stloc.s V_6
IL_5d2a: ldloc.s V_6
IL_5d2c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d31: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d36: stloc.s V_9
IL_5d38: ldloc.s V_7
IL_5d3a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d3f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d44: stloc.s V_10
IL_5d46: ldloc.s V_8
IL_5d48: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5d4d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5d52: stloc.s V_7
IL_5d54: ldloc.s V_7
IL_5d56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5d5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5d60: stloc.s V_7
IL_5d62: ldloc.s V_10
IL_5d64: ldloc.s V_8
IL_5d66: blt.s IL_5db0
IL_5d68: ldloc.s V_10
IL_5d6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5d6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5d74: stloc.s V_9
IL_5d76: ldloc.s V_10
IL_5d78: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5d7d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5d82: stloc.s V_7
IL_5d84: ldloc.s V_9
IL_5d86: call string [mscorlib]System.Convert::ToString(int32)
IL_5d8b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5d90: stloc.s V_7
IL_5d92: ldloc.s V_7
IL_5d94: call string [mscorlib]System.Convert::ToString(int32)
IL_5d99: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5d9e: stloc.s V_6
IL_5da0: ldloc.s V_7
IL_5da2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5da7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5dac: stloc.s V_9
IL_5dae: br.s IL_5df6
IL_5db0: ldloc.s V_8
IL_5db2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5db7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5dbc: stloc.s V_6
IL_5dbe: ldloc.s V_10
IL_5dc0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5dc5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5dca: stloc.s V_8
IL_5dcc: ldloc.s V_8
IL_5dce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5dd3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5dd8: stloc.s V_8
IL_5dda: ldloc.s V_7
IL_5ddc: call string [mscorlib]System.Convert::ToString(int32)
IL_5de1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5de6: stloc.s V_6
IL_5de8: ldloc.s V_7
IL_5dea: call string [mscorlib]System.Convert::ToString(int32)
IL_5def: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5df4: stloc.s V_6
IL_5df6: ldloc.s V_6
IL_5df8: ldloc.s V_6
IL_5dfa: bgt.s IL_5e44
IL_5dfc: ldloc.s V_10
IL_5dfe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5e03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5e08: stloc.s V_6
IL_5e0a: ldloc.s V_8
IL_5e0c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5e11: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5e16: stloc.s V_9
IL_5e18: ldloc.s V_9
IL_5e1a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5e1f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5e24: stloc.s V_8
IL_5e26: ldloc.s V_9
IL_5e28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5e2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5e32: stloc.s V_7
IL_5e34: ldloc.s V_6
IL_5e36: call string [mscorlib]System.Convert::ToString(int32)
IL_5e3b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5e40: stloc.s V_6
IL_5e42: br.s IL_5e8a
IL_5e44: ldloc.s V_10
IL_5e46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e50: stloc.s V_6
IL_5e52: ldloc.s V_9
IL_5e54: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e59: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e5e: stloc.s V_9
IL_5e60: ldloc.s V_10
IL_5e62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e6c: stloc.s V_8
IL_5e6e: ldloc.s V_7
IL_5e70: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5e75: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5e7a: stloc.s V_7
IL_5e7c: ldloc.s V_10
IL_5e7e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5e83: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5e88: stloc.s V_8
IL_5e8a: ldloc.s V_9
IL_5e8c: ldloc.s V_8
IL_5e8e: blt.s IL_5ed8
IL_5e90: ldloc.s V_6
IL_5e92: call string [mscorlib]System.Convert::ToString(int32)
IL_5e97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5e9c: stloc.s V_7
IL_5e9e: ldloc.s V_7
IL_5ea0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5ea5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5eaa: stloc.s V_8
IL_5eac: ldloc.s V_9
IL_5eae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5eb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5eb8: stloc.s V_6
IL_5eba: ldloc.s V_7
IL_5ebc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5ec1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5ec6: stloc.s V_7
IL_5ec8: ldloc.s V_10
IL_5eca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5ecf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ed4: stloc.s V_9
IL_5ed6: br.s IL_5f1e
IL_5ed8: ldloc.s V_8
IL_5eda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5edf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ee4: stloc.s V_7
IL_5ee6: ldloc.s V_10
IL_5ee8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5eed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5ef2: stloc.s V_7
IL_5ef4: ldloc.s V_6
IL_5ef6: call string [mscorlib]System.Convert::ToString(int32)
IL_5efb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f00: stloc.s V_7
IL_5f02: ldloc.s V_9
IL_5f04: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5f09: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5f0e: stloc.s V_6
IL_5f10: ldloc.s V_6
IL_5f12: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5f17: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5f1c: stloc.s V_7
IL_5f1e: ldloc.s V_10
IL_5f20: ldloc.s V_7
IL_5f22: bgt.s IL_5f6c
IL_5f24: ldloc.s V_6
IL_5f26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5f2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5f30: stloc.s V_7
IL_5f32: ldloc.s V_10
IL_5f34: call string [mscorlib]System.Convert::ToString(int32)
IL_5f39: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f3e: stloc.s V_10
IL_5f40: ldloc.s V_6
IL_5f42: call string [mscorlib]System.Convert::ToString(int32)
IL_5f47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f4c: stloc.s V_9
IL_5f4e: ldloc.s V_6
IL_5f50: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f55: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f5a: stloc.s V_10
IL_5f5c: ldloc.s V_6
IL_5f5e: call string [mscorlib]System.Convert::ToString(int32)
IL_5f63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5f68: stloc.s V_8
IL_5f6a: br.s IL_5fb2
IL_5f6c: ldloc.s V_8
IL_5f6e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f73: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f78: stloc.s V_7
IL_5f7a: ldloc.s V_9
IL_5f7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f86: stloc.s V_8
IL_5f88: ldloc.s V_10
IL_5f8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5f8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5f94: stloc.s V_8
IL_5f96: ldloc.s V_10
IL_5f98: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5f9d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5fa2: stloc.s V_10
IL_5fa4: ldloc.s V_10
IL_5fa6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_5fab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_5fb0: stloc.s V_8
IL_5fb2: ldloc.s V_9
IL_5fb4: ldloc.s V_6
IL_5fb6: bne.un.s IL_6000
IL_5fb8: ldloc.s V_6
IL_5fba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5fbf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5fc4: stloc.s V_6
IL_5fc6: ldloc.s V_6
IL_5fc8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_5fcd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_5fd2: stloc.s V_10
IL_5fd4: ldloc.s V_7
IL_5fd6: call string [mscorlib]System.Convert::ToString(int32)
IL_5fdb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5fe0: stloc.s V_8
IL_5fe2: ldloc.s V_8
IL_5fe4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_5fe9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_5fee: stloc.s V_10
IL_5ff0: ldloc.s V_10
IL_5ff2: call string [mscorlib]System.Convert::ToString(int32)
IL_5ff7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_5ffc: stloc.s V_6
IL_5ffe: br.s IL_6046
IL_6000: ldloc.s V_9
IL_6002: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6007: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_600c: stloc.s V_8
IL_600e: ldloc.s V_10
IL_6010: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6015: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_601a: stloc.s V_8
IL_601c: ldloc.s V_10
IL_601e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6023: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6028: stloc.s V_8
IL_602a: ldloc.s V_7
IL_602c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6031: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6036: stloc.s V_6
IL_6038: ldloc.s V_10
IL_603a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_603f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6044: stloc.s V_6
IL_6046: ldloc.s V_7
IL_6048: ldloc.s V_7
IL_604a: ble.s IL_6094
IL_604c: ldloc.s V_6
IL_604e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6053: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6058: stloc.s V_10
IL_605a: ldloc.s V_10
IL_605c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6061: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6066: stloc.s V_6
IL_6068: ldloc.s V_8
IL_606a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_606f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6074: stloc.s V_7
IL_6076: ldloc.s V_9
IL_6078: call string [mscorlib]System.Convert::ToString(int32)
IL_607d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6082: stloc.s V_8
IL_6084: ldloc.s V_9
IL_6086: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_608b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6090: stloc.s V_8
IL_6092: br.s IL_60da
IL_6094: ldloc.s V_9
IL_6096: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_609b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_60a0: stloc.s V_10
IL_60a2: ldloc.s V_9
IL_60a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_60a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_60ae: stloc.s V_7
IL_60b0: ldloc.s V_9
IL_60b2: call string [mscorlib]System.Convert::ToString(int32)
IL_60b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_60bc: stloc.s V_7
IL_60be: ldloc.s V_7
IL_60c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_60c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_60ca: stloc.s V_7
IL_60cc: ldloc.s V_9
IL_60ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_60d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_60d8: stloc.s V_9
IL_60da: ldloc.s V_9
IL_60dc: ldloc.s V_6
IL_60de: blt.s IL_6128
IL_60e0: ldloc.s V_6
IL_60e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_60e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_60ec: stloc.s V_6
IL_60ee: ldloc.s V_9
IL_60f0: call string [mscorlib]System.Convert::ToString(int32)
IL_60f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_60fa: stloc.s V_10
IL_60fc: ldloc.s V_6
IL_60fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6103: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6108: stloc.s V_10
IL_610a: ldloc.s V_6
IL_610c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6111: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6116: stloc.s V_8
IL_6118: ldloc.s V_6
IL_611a: call string [mscorlib]System.Convert::ToString(int32)
IL_611f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6124: stloc.s V_6
IL_6126: br.s IL_616e
IL_6128: ldloc.s V_6
IL_612a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_612f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6134: stloc.s V_9
IL_6136: ldloc.s V_6
IL_6138: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_613d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6142: stloc.s V_6
IL_6144: ldloc.s V_10
IL_6146: call string [mscorlib]System.Convert::ToString(int32)
IL_614b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6150: stloc.s V_9
IL_6152: ldloc.s V_9
IL_6154: call string [mscorlib]System.Convert::ToString(int32)
IL_6159: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_615e: stloc.s V_7
IL_6160: ldloc.s V_8
IL_6162: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6167: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_616c: stloc.s V_8
IL_616e: ldloc.s V_6
IL_6170: ldloc.s V_6
IL_6172: bne.un.s IL_61bc
IL_6174: ldloc.s V_9
IL_6176: call string [mscorlib]System.Convert::ToString(int32)
IL_617b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6180: stloc.s V_9
IL_6182: ldloc.s V_8
IL_6184: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6189: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_618e: stloc.s V_9
IL_6190: ldloc.s V_10
IL_6192: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6197: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_619c: stloc.s V_6
IL_619e: ldloc.s V_9
IL_61a0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_61a5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_61aa: stloc.s V_8
IL_61ac: ldloc.s V_6
IL_61ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_61b8: stloc.s V_9
IL_61ba: br.s IL_6202
IL_61bc: ldloc.s V_7
IL_61be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_61c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_61c8: stloc.s V_6
IL_61ca: ldloc.s V_9
IL_61cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_61d6: stloc.s V_9
IL_61d8: ldloc.s V_9
IL_61da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_61e4: stloc.s V_6
IL_61e6: ldloc.s V_10
IL_61e8: call string [mscorlib]System.Convert::ToString(int32)
IL_61ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_61f2: stloc.s V_7
IL_61f4: ldloc.s V_10
IL_61f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_61fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6200: stloc.s V_6
IL_6202: ldloc.s V_9
IL_6204: ldloc.s V_9
IL_6206: bgt.s IL_6250
IL_6208: ldloc.s V_6
IL_620a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_620f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6214: stloc.s V_6
IL_6216: ldloc.s V_6
IL_6218: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_621d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6222: stloc.s V_8
IL_6224: ldloc.s V_8
IL_6226: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_622b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6230: stloc.s V_8
IL_6232: ldloc.s V_9
IL_6234: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6239: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_623e: stloc.s V_6
IL_6240: ldloc.s V_8
IL_6242: call string [mscorlib]System.Convert::ToString(int32)
IL_6247: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_624c: stloc.s V_6
IL_624e: br.s IL_6296
IL_6250: ldloc.s V_7
IL_6252: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6257: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_625c: stloc.s V_8
IL_625e: ldloc.s V_10
IL_6260: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6265: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_626a: stloc.s V_6
IL_626c: ldloc.s V_6
IL_626e: call string [mscorlib]System.Convert::ToString(int32)
IL_6273: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6278: stloc.s V_7
IL_627a: ldloc.s V_8
IL_627c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6281: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6286: stloc.s V_6
IL_6288: ldloc.s V_10
IL_628a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_628f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6294: stloc.s V_8
IL_6296: ldloc.s V_10
IL_6298: ldloc.s V_7
IL_629a: beq.s IL_62e4
IL_629c: ldloc.s V_6
IL_629e: call string [mscorlib]System.Convert::ToString(int32)
IL_62a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62a8: stloc.s V_10
IL_62aa: ldloc.s V_6
IL_62ac: call string [mscorlib]System.Convert::ToString(int32)
IL_62b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62b6: stloc.s V_6
IL_62b8: ldloc.s V_7
IL_62ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_62bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_62c4: stloc.s V_7
IL_62c6: ldloc.s V_6
IL_62c8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_62cd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_62d2: stloc.s V_7
IL_62d4: ldloc.s V_10
IL_62d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_62db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_62e0: stloc.s V_10
IL_62e2: br.s IL_632a
IL_62e4: ldloc.s V_6
IL_62e6: call string [mscorlib]System.Convert::ToString(int32)
IL_62eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62f0: stloc.s V_8
IL_62f2: ldloc.s V_8
IL_62f4: call string [mscorlib]System.Convert::ToString(int32)
IL_62f9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_62fe: stloc.s V_9
IL_6300: ldloc.s V_8
IL_6302: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6307: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_630c: stloc.s V_10
IL_630e: ldloc.s V_9
IL_6310: call string [mscorlib]System.Convert::ToString(int32)
IL_6315: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_631a: stloc.s V_10
IL_631c: ldloc.s V_10
IL_631e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6323: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6328: stloc.s V_8
IL_632a: ldloc.s V_7
IL_632c: ldloc.s V_7
IL_632e: bgt.s IL_6378
IL_6330: ldloc.s V_6
IL_6332: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6337: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_633c: stloc.s V_8
IL_633e: ldloc.s V_9
IL_6340: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6345: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_634a: stloc.s V_8
IL_634c: ldloc.s V_6
IL_634e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6353: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6358: stloc.s V_6
IL_635a: ldloc.s V_10
IL_635c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6361: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6366: stloc.s V_8
IL_6368: ldloc.s V_6
IL_636a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_636f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6374: stloc.s V_6
IL_6376: br.s IL_63be
IL_6378: ldloc.s V_8
IL_637a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_637f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6384: stloc.s V_9
IL_6386: ldloc.s V_7
IL_6388: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_638d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6392: stloc.s V_10
IL_6394: ldloc.s V_10
IL_6396: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_639b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_63a0: stloc.s V_9
IL_63a2: ldloc.s V_6
IL_63a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_63a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_63ae: stloc.s V_8
IL_63b0: ldloc.s V_6
IL_63b2: call string [mscorlib]System.Convert::ToString(int32)
IL_63b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_63bc: stloc.s V_8
IL_63be: ldloc.s V_9
IL_63c0: ldloc.s V_8
IL_63c2: blt.s IL_640c
IL_63c4: ldloc.s V_6
IL_63c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_63cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_63d0: stloc.s V_10
IL_63d2: ldloc.s V_7
IL_63d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_63d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_63de: stloc.s V_10
IL_63e0: ldloc.s V_9
IL_63e2: call string [mscorlib]System.Convert::ToString(int32)
IL_63e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_63ec: stloc.s V_7
IL_63ee: ldloc.s V_9
IL_63f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_63f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_63fa: stloc.s V_7
IL_63fc: ldloc.s V_8
IL_63fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6403: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6408: stloc.s V_9
IL_640a: br.s IL_6452
IL_640c: ldloc.s V_10
IL_640e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6413: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6418: stloc.s V_8
IL_641a: ldloc.s V_6
IL_641c: call string [mscorlib]System.Convert::ToString(int32)
IL_6421: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6426: stloc.s V_7
IL_6428: ldloc.s V_6
IL_642a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_642f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6434: stloc.s V_10
IL_6436: ldloc.s V_6
IL_6438: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_643d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6442: stloc.s V_7
IL_6444: ldloc.s V_6
IL_6446: call string [mscorlib]System.Convert::ToString(int32)
IL_644b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6450: stloc.s V_9
IL_6452: ldloc.s V_6
IL_6454: ldloc.s V_7
IL_6456: ble.s IL_64a0
IL_6458: ldloc.s V_9
IL_645a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_645f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6464: stloc.s V_7
IL_6466: ldloc.s V_6
IL_6468: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_646d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6472: stloc.s V_6
IL_6474: ldloc.s V_9
IL_6476: call string [mscorlib]System.Convert::ToString(int32)
IL_647b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6480: stloc.s V_7
IL_6482: ldloc.s V_10
IL_6484: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6489: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_648e: stloc.s V_9
IL_6490: ldloc.s V_7
IL_6492: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6497: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_649c: stloc.s V_6
IL_649e: br.s IL_64e6
IL_64a0: ldloc.s V_9
IL_64a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_64a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_64ac: stloc.s V_9
IL_64ae: ldloc.s V_6
IL_64b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_64b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_64ba: stloc.s V_7
IL_64bc: ldloc.s V_9
IL_64be: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_64c3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_64c8: stloc.s V_8
IL_64ca: ldloc.s V_6
IL_64cc: call string [mscorlib]System.Convert::ToString(int32)
IL_64d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_64d6: stloc.s V_10
IL_64d8: ldloc.s V_6
IL_64da: call string [mscorlib]System.Convert::ToString(int32)
IL_64df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_64e4: stloc.s V_6
IL_64e6: ldloc.s V_7
IL_64e8: ldloc.s V_7
IL_64ea: bgt.s IL_6534
IL_64ec: ldloc.s V_9
IL_64ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_64f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_64f8: stloc.s V_8
IL_64fa: ldloc.s V_6
IL_64fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6501: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6506: stloc.s V_9
IL_6508: ldloc.s V_10
IL_650a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_650f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6514: stloc.s V_9
IL_6516: ldloc.s V_8
IL_6518: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_651d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6522: stloc.s V_7
IL_6524: ldloc.s V_6
IL_6526: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_652b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6530: stloc.s V_7
IL_6532: br.s IL_657a
IL_6534: ldloc.s V_8
IL_6536: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_653b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6540: stloc.s V_10
IL_6542: ldloc.s V_10
IL_6544: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6549: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_654e: stloc.s V_8
IL_6550: ldloc.s V_7
IL_6552: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6557: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_655c: stloc.s V_7
IL_655e: ldloc.s V_6
IL_6560: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6565: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_656a: stloc.s V_6
IL_656c: ldloc.s V_6
IL_656e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6573: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6578: stloc.s V_6
IL_657a: ldloc.s V_6
IL_657c: ldloc.s V_6
IL_657e: bne.un.s IL_65c8
IL_6580: ldloc.s V_9
IL_6582: call string [mscorlib]System.Convert::ToString(int32)
IL_6587: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_658c: stloc.s V_8
IL_658e: ldloc.s V_9
IL_6590: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6595: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_659a: stloc.s V_9
IL_659c: ldloc.s V_6
IL_659e: call string [mscorlib]System.Convert::ToString(int32)
IL_65a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_65a8: stloc.s V_9
IL_65aa: ldloc.s V_9
IL_65ac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65b1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65b6: stloc.s V_6
IL_65b8: ldloc.s V_8
IL_65ba: call string [mscorlib]System.Convert::ToString(int32)
IL_65bf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_65c4: stloc.s V_6
IL_65c6: br.s IL_660e
IL_65c8: ldloc.s V_8
IL_65ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65d4: stloc.s V_6
IL_65d6: ldloc.s V_7
IL_65d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65e2: stloc.s V_8
IL_65e4: ldloc.s V_8
IL_65e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_65eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_65f0: stloc.s V_7
IL_65f2: ldloc.s V_6
IL_65f4: call string [mscorlib]System.Convert::ToString(int32)
IL_65f9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_65fe: stloc.s V_7
IL_6600: ldloc.s V_9
IL_6602: call string [mscorlib]System.Convert::ToString(int32)
IL_6607: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_660c: stloc.s V_10
IL_660e: ldloc.s V_9
IL_6610: ldloc.s V_6
IL_6612: bne.un.s IL_665c
IL_6614: ldloc.s V_8
IL_6616: call string [mscorlib]System.Convert::ToString(int32)
IL_661b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6620: stloc.s V_7
IL_6622: ldloc.s V_7
IL_6624: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6629: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_662e: stloc.s V_8
IL_6630: ldloc.s V_7
IL_6632: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6637: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_663c: stloc.s V_9
IL_663e: ldloc.s V_9
IL_6640: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6645: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_664a: stloc.s V_9
IL_664c: ldloc.s V_8
IL_664e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6653: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6658: stloc.s V_9
IL_665a: br.s IL_66a2
IL_665c: ldloc.s V_10
IL_665e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6663: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6668: stloc.s V_9
IL_666a: ldloc.s V_6
IL_666c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6671: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6676: stloc.s V_9
IL_6678: ldloc.s V_8
IL_667a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_667f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6684: stloc.s V_9
IL_6686: ldloc.s V_6
IL_6688: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_668d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6692: stloc.s V_6
IL_6694: ldloc.s V_6
IL_6696: call string [mscorlib]System.Convert::ToString(int32)
IL_669b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66a0: stloc.s V_8
IL_66a2: ldloc.s V_7
IL_66a4: ldloc.s V_8
IL_66a6: blt.s IL_66f0
IL_66a8: ldloc.s V_6
IL_66aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_66af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_66b4: stloc.s V_8
IL_66b6: ldloc.s V_6
IL_66b8: call string [mscorlib]System.Convert::ToString(int32)
IL_66bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66c2: stloc.s V_10
IL_66c4: ldloc.s V_7
IL_66c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_66cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_66d0: stloc.s V_6
IL_66d2: ldloc.s V_9
IL_66d4: call string [mscorlib]System.Convert::ToString(int32)
IL_66d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66de: stloc.s V_6
IL_66e0: ldloc.s V_10
IL_66e2: call string [mscorlib]System.Convert::ToString(int32)
IL_66e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_66ec: stloc.s V_10
IL_66ee: br.s IL_6736
IL_66f0: ldloc.s V_8
IL_66f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_66f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_66fc: stloc.s V_9
IL_66fe: ldloc.s V_8
IL_6700: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6705: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_670a: stloc.s V_9
IL_670c: ldloc.s V_8
IL_670e: call string [mscorlib]System.Convert::ToString(int32)
IL_6713: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6718: stloc.s V_6
IL_671a: ldloc.s V_9
IL_671c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6721: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6726: stloc.s V_10
IL_6728: ldloc.s V_6
IL_672a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_672f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6734: stloc.s V_6
IL_6736: ldloc.s V_7
IL_6738: ldloc.s V_6
IL_673a: bge.s IL_6784
IL_673c: ldloc.s V_6
IL_673e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6743: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6748: stloc.s V_6
IL_674a: ldloc.s V_8
IL_674c: call string [mscorlib]System.Convert::ToString(int32)
IL_6751: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6756: stloc.s V_7
IL_6758: ldloc.s V_7
IL_675a: call string [mscorlib]System.Convert::ToString(int32)
IL_675f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6764: stloc.s V_10
IL_6766: ldloc.s V_8
IL_6768: call string [mscorlib]System.Convert::ToString(int32)
IL_676d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6772: stloc.s V_9
IL_6774: ldloc.s V_9
IL_6776: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_677b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6780: stloc.s V_10
IL_6782: br.s IL_67ca
IL_6784: ldloc.s V_8
IL_6786: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_678b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6790: stloc.s V_7
IL_6792: ldloc.s V_6
IL_6794: call string [mscorlib]System.Convert::ToString(int32)
IL_6799: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_679e: stloc.s V_8
IL_67a0: ldloc.s V_6
IL_67a2: call string [mscorlib]System.Convert::ToString(int32)
IL_67a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_67ac: stloc.s V_10
IL_67ae: ldloc.s V_7
IL_67b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_67b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_67ba: stloc.s V_9
IL_67bc: ldloc.s V_9
IL_67be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_67c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_67c8: stloc.s V_8
IL_67ca: ldloc.s V_10
IL_67cc: ldloc.s V_7
IL_67ce: bge.s IL_6818
IL_67d0: ldloc.s V_9
IL_67d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_67d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_67dc: stloc.s V_9
IL_67de: ldloc.s V_8
IL_67e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_67e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_67ea: stloc.s V_10
IL_67ec: ldloc.s V_8
IL_67ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_67f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_67f8: stloc.s V_6
IL_67fa: ldloc.s V_6
IL_67fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6801: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6806: stloc.s V_7
IL_6808: ldloc.s V_10
IL_680a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_680f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6814: stloc.s V_10
IL_6816: br.s IL_685e
IL_6818: ldloc.s V_7
IL_681a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_681f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6824: stloc.s V_6
IL_6826: ldloc.s V_9
IL_6828: call string [mscorlib]System.Convert::ToString(int32)
IL_682d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6832: stloc.s V_8
IL_6834: ldloc.s V_8
IL_6836: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_683b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6840: stloc.s V_10
IL_6842: ldloc.s V_9
IL_6844: call string [mscorlib]System.Convert::ToString(int32)
IL_6849: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_684e: stloc.s V_10
IL_6850: ldloc.s V_8
IL_6852: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6857: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_685c: stloc.s V_6
IL_685e: ldloc.s V_8
IL_6860: ldloc.s V_9
IL_6862: blt.s IL_68ac
IL_6864: ldloc.s V_8
IL_6866: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_686b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6870: stloc.s V_7
IL_6872: ldloc.s V_8
IL_6874: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6879: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_687e: stloc.s V_10
IL_6880: ldloc.s V_9
IL_6882: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6887: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_688c: stloc.s V_6
IL_688e: ldloc.s V_7
IL_6890: call string [mscorlib]System.Convert::ToString(int32)
IL_6895: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_689a: stloc.s V_8
IL_689c: ldloc.s V_10
IL_689e: call string [mscorlib]System.Convert::ToString(int32)
IL_68a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_68a8: stloc.s V_10
IL_68aa: br.s IL_68f2
IL_68ac: ldloc.s V_6
IL_68ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_68b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_68b8: stloc.s V_7
IL_68ba: ldloc.s V_6
IL_68bc: call string [mscorlib]System.Convert::ToString(int32)
IL_68c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_68c6: stloc.s V_8
IL_68c8: ldloc.s V_9
IL_68ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_68cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_68d4: stloc.s V_8
IL_68d6: ldloc.s V_9
IL_68d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_68dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_68e2: stloc.s V_6
IL_68e4: ldloc.s V_8
IL_68e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_68eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_68f0: stloc.s V_9
IL_68f2: ldloc.s V_10
IL_68f4: ldloc.s V_10
IL_68f6: ble.s IL_6940
IL_68f8: ldloc.s V_10
IL_68fa: call string [mscorlib]System.Convert::ToString(int32)
IL_68ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6904: stloc.s V_8
IL_6906: ldloc.s V_8
IL_6908: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_690d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6912: stloc.s V_8
IL_6914: ldloc.s V_7
IL_6916: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_691b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6920: stloc.s V_9
IL_6922: ldloc.s V_7
IL_6924: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6929: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_692e: stloc.s V_6
IL_6930: ldloc.s V_10
IL_6932: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6937: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_693c: stloc.s V_7
IL_693e: br.s IL_6986
IL_6940: ldloc.s V_6
IL_6942: call string [mscorlib]System.Convert::ToString(int32)
IL_6947: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_694c: stloc.s V_9
IL_694e: ldloc.s V_9
IL_6950: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6955: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_695a: stloc.s V_8
IL_695c: ldloc.s V_7
IL_695e: call string [mscorlib]System.Convert::ToString(int32)
IL_6963: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6968: stloc.s V_9
IL_696a: ldloc.s V_8
IL_696c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6971: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6976: stloc.s V_10
IL_6978: ldloc.s V_7
IL_697a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_697f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6984: stloc.s V_10
IL_6986: ldloc.s V_8
IL_6988: ldloc.s V_10
IL_698a: ble.s IL_69d4
IL_698c: ldloc.s V_6
IL_698e: call string [mscorlib]System.Convert::ToString(int32)
IL_6993: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6998: stloc.s V_8
IL_699a: ldloc.s V_6
IL_699c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69a6: stloc.s V_10
IL_69a8: ldloc.s V_7
IL_69aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69b4: stloc.s V_8
IL_69b6: ldloc.s V_8
IL_69b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_69bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_69c2: stloc.s V_9
IL_69c4: ldloc.s V_9
IL_69c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69d0: stloc.s V_7
IL_69d2: br.s IL_6a1a
IL_69d4: ldloc.s V_7
IL_69d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_69db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_69e0: stloc.s V_9
IL_69e2: ldloc.s V_10
IL_69e4: call string [mscorlib]System.Convert::ToString(int32)
IL_69e9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_69ee: stloc.s V_7
IL_69f0: ldloc.s V_10
IL_69f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_69f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_69fc: stloc.s V_6
IL_69fe: ldloc.s V_7
IL_6a00: call string [mscorlib]System.Convert::ToString(int32)
IL_6a05: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6a0a: stloc.s V_9
IL_6a0c: ldloc.s V_6
IL_6a0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a18: stloc.s V_6
IL_6a1a: ldloc.s V_10
IL_6a1c: ldloc.s V_9
IL_6a1e: beq.s IL_6a68
IL_6a20: ldloc.s V_8
IL_6a22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a2c: stloc.s V_8
IL_6a2e: ldloc.s V_9
IL_6a30: call string [mscorlib]System.Convert::ToString(int32)
IL_6a35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6a3a: stloc.s V_10
IL_6a3c: ldloc.s V_6
IL_6a3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a48: stloc.s V_6
IL_6a4a: ldloc.s V_6
IL_6a4c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a51: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a56: stloc.s V_8
IL_6a58: ldloc.s V_6
IL_6a5a: call string [mscorlib]System.Convert::ToString(int32)
IL_6a5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6a64: stloc.s V_9
IL_6a66: br.s IL_6aae
IL_6a68: ldloc.s V_6
IL_6a6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6a6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6a74: stloc.s V_9
IL_6a76: ldloc.s V_10
IL_6a78: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6a7d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6a82: stloc.s V_6
IL_6a84: ldloc.s V_9
IL_6a86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6a8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6a90: stloc.s V_6
IL_6a92: ldloc.s V_8
IL_6a94: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6a99: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6a9e: stloc.s V_6
IL_6aa0: ldloc.s V_10
IL_6aa2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6aa7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6aac: stloc.s V_9
IL_6aae: ldloc.s V_10
IL_6ab0: ldloc.s V_8
IL_6ab2: ble.s IL_6afc
IL_6ab4: ldloc.s V_10
IL_6ab6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6abb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6ac0: stloc.s V_10
IL_6ac2: ldloc.s V_7
IL_6ac4: call string [mscorlib]System.Convert::ToString(int32)
IL_6ac9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ace: stloc.s V_6
IL_6ad0: ldloc.s V_9
IL_6ad2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6ad7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6adc: stloc.s V_8
IL_6ade: ldloc.s V_10
IL_6ae0: call string [mscorlib]System.Convert::ToString(int32)
IL_6ae5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6aea: stloc.s V_9
IL_6aec: ldloc.s V_10
IL_6aee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6af3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6af8: stloc.s V_10
IL_6afa: br.s IL_6b42
IL_6afc: ldloc.s V_9
IL_6afe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6b03: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6b08: stloc.s V_7
IL_6b0a: ldloc.s V_6
IL_6b0c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6b11: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6b16: stloc.s V_6
IL_6b18: ldloc.s V_8
IL_6b1a: call string [mscorlib]System.Convert::ToString(int32)
IL_6b1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6b24: stloc.s V_10
IL_6b26: ldloc.s V_8
IL_6b28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6b2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6b32: stloc.s V_10
IL_6b34: ldloc.s V_8
IL_6b36: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b3b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b40: stloc.s V_7
IL_6b42: ldloc.s V_7
IL_6b44: ldloc.s V_10
IL_6b46: bge.s IL_6b90
IL_6b48: ldloc.s V_9
IL_6b4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6b4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6b54: stloc.s V_9
IL_6b56: ldloc.s V_8
IL_6b58: call string [mscorlib]System.Convert::ToString(int32)
IL_6b5d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6b62: stloc.s V_6
IL_6b64: ldloc.s V_8
IL_6b66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b70: stloc.s V_9
IL_6b72: ldloc.s V_9
IL_6b74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b7e: stloc.s V_6
IL_6b80: ldloc.s V_6
IL_6b82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b8c: stloc.s V_9
IL_6b8e: br.s IL_6bd6
IL_6b90: ldloc.s V_7
IL_6b92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6b97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6b9c: stloc.s V_8
IL_6b9e: ldloc.s V_10
IL_6ba0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6ba5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6baa: stloc.s V_7
IL_6bac: ldloc.s V_7
IL_6bae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6bb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6bb8: stloc.s V_7
IL_6bba: ldloc.s V_10
IL_6bbc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6bc1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6bc6: stloc.s V_7
IL_6bc8: ldloc.s V_10
IL_6bca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6bcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6bd4: stloc.s V_10
IL_6bd6: ldloc.s V_8
IL_6bd8: ldloc.s V_7
IL_6bda: bge.s IL_6c24
IL_6bdc: ldloc.s V_7
IL_6bde: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6be3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6be8: stloc.s V_6
IL_6bea: ldloc.s V_9
IL_6bec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6bf1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6bf6: stloc.s V_7
IL_6bf8: ldloc.s V_8
IL_6bfa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6bff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6c04: stloc.s V_6
IL_6c06: ldloc.s V_7
IL_6c08: call string [mscorlib]System.Convert::ToString(int32)
IL_6c0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6c12: stloc.s V_9
IL_6c14: ldloc.s V_8
IL_6c16: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6c1b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6c20: stloc.s V_10
IL_6c22: br.s IL_6c6a
IL_6c24: ldloc.s V_6
IL_6c26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c30: stloc.s V_7
IL_6c32: ldloc.s V_7
IL_6c34: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c39: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c3e: stloc.s V_7
IL_6c40: ldloc.s V_9
IL_6c42: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6c47: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6c4c: stloc.s V_6
IL_6c4e: ldloc.s V_7
IL_6c50: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c55: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c5a: stloc.s V_8
IL_6c5c: ldloc.s V_6
IL_6c5e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6c63: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6c68: stloc.s V_9
IL_6c6a: ldloc.s V_10
IL_6c6c: ldloc.s V_10
IL_6c6e: bgt.s IL_6cb8
IL_6c70: ldloc.s V_6
IL_6c72: call string [mscorlib]System.Convert::ToString(int32)
IL_6c77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6c7c: stloc.s V_8
IL_6c7e: ldloc.s V_6
IL_6c80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6c85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6c8a: stloc.s V_9
IL_6c8c: ldloc.s V_10
IL_6c8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6c93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6c98: stloc.s V_9
IL_6c9a: ldloc.s V_7
IL_6c9c: call string [mscorlib]System.Convert::ToString(int32)
IL_6ca1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ca6: stloc.s V_8
IL_6ca8: ldloc.s V_6
IL_6caa: call string [mscorlib]System.Convert::ToString(int32)
IL_6caf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6cb4: stloc.s V_6
IL_6cb6: br.s IL_6cfe
IL_6cb8: ldloc.s V_8
IL_6cba: call string [mscorlib]System.Convert::ToString(int32)
IL_6cbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6cc4: stloc.s V_7
IL_6cc6: ldloc.s V_8
IL_6cc8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ccd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6cd2: stloc.s V_10
IL_6cd4: ldloc.s V_10
IL_6cd6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6cdb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6ce0: stloc.s V_10
IL_6ce2: ldloc.s V_8
IL_6ce4: call string [mscorlib]System.Convert::ToString(int32)
IL_6ce9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6cee: stloc.s V_8
IL_6cf0: ldloc.s V_8
IL_6cf2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6cf7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6cfc: stloc.s V_7
IL_6cfe: ldloc.s V_6
IL_6d00: ldloc.s V_9
IL_6d02: bge.s IL_6d4c
IL_6d04: ldloc.s V_8
IL_6d06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d10: stloc.s V_7
IL_6d12: ldloc.s V_9
IL_6d14: call string [mscorlib]System.Convert::ToString(int32)
IL_6d19: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d1e: stloc.s V_8
IL_6d20: ldloc.s V_8
IL_6d22: call string [mscorlib]System.Convert::ToString(int32)
IL_6d27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d2c: stloc.s V_10
IL_6d2e: ldloc.s V_9
IL_6d30: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d35: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d3a: stloc.s V_8
IL_6d3c: ldloc.s V_7
IL_6d3e: call string [mscorlib]System.Convert::ToString(int32)
IL_6d43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d48: stloc.s V_8
IL_6d4a: br.s IL_6d92
IL_6d4c: ldloc.s V_7
IL_6d4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d58: stloc.s V_6
IL_6d5a: ldloc.s V_6
IL_6d5c: call string [mscorlib]System.Convert::ToString(int32)
IL_6d61: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d66: stloc.s V_9
IL_6d68: ldloc.s V_9
IL_6d6a: call string [mscorlib]System.Convert::ToString(int32)
IL_6d6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6d74: stloc.s V_7
IL_6d76: ldloc.s V_8
IL_6d78: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6d7d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6d82: stloc.s V_7
IL_6d84: ldloc.s V_10
IL_6d86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6d8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6d90: stloc.s V_9
IL_6d92: ldloc.s V_7
IL_6d94: ldloc.s V_8
IL_6d96: blt.s IL_6de0
IL_6d98: ldloc.s V_7
IL_6d9a: call string [mscorlib]System.Convert::ToString(int32)
IL_6d9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6da4: stloc.s V_9
IL_6da6: ldloc.s V_10
IL_6da8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6dad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6db2: stloc.s V_9
IL_6db4: ldloc.s V_7
IL_6db6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6dbb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6dc0: stloc.s V_10
IL_6dc2: ldloc.s V_8
IL_6dc4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6dc9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6dce: stloc.s V_10
IL_6dd0: ldloc.s V_6
IL_6dd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6dd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6ddc: stloc.s V_6
IL_6dde: br.s IL_6e26
IL_6de0: ldloc.s V_6
IL_6de2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6de7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6dec: stloc.s V_7
IL_6dee: ldloc.s V_8
IL_6df0: call string [mscorlib]System.Convert::ToString(int32)
IL_6df5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6dfa: stloc.s V_6
IL_6dfc: ldloc.s V_9
IL_6dfe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e03: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e08: stloc.s V_9
IL_6e0a: ldloc.s V_8
IL_6e0c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e11: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e16: stloc.s V_10
IL_6e18: ldloc.s V_7
IL_6e1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e24: stloc.s V_6
IL_6e26: ldloc.s V_6
IL_6e28: ldloc.s V_7
IL_6e2a: bne.un.s IL_6e74
IL_6e2c: ldloc.s V_9
IL_6e2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6e33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6e38: stloc.s V_7
IL_6e3a: ldloc.s V_7
IL_6e3c: call string [mscorlib]System.Convert::ToString(int32)
IL_6e41: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6e46: stloc.s V_10
IL_6e48: ldloc.s V_9
IL_6e4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6e4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6e54: stloc.s V_7
IL_6e56: ldloc.s V_6
IL_6e58: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6e5d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6e62: stloc.s V_9
IL_6e64: ldloc.s V_6
IL_6e66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6e6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6e70: stloc.s V_6
IL_6e72: br.s IL_6eba
IL_6e74: ldloc.s V_6
IL_6e76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6e7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6e80: stloc.s V_8
IL_6e82: ldloc.s V_9
IL_6e84: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6e89: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6e8e: stloc.s V_9
IL_6e90: ldloc.s V_9
IL_6e92: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6e97: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6e9c: stloc.s V_10
IL_6e9e: ldloc.s V_9
IL_6ea0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ea5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6eaa: stloc.s V_8
IL_6eac: ldloc.s V_10
IL_6eae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6eb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6eb8: stloc.s V_8
IL_6eba: ldloc.s V_7
IL_6ebc: ldloc.s V_7
IL_6ebe: beq.s IL_6f08
IL_6ec0: ldloc.s V_6
IL_6ec2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ec7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6ecc: stloc.s V_7
IL_6ece: ldloc.s V_8
IL_6ed0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6ed5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6eda: stloc.s V_7
IL_6edc: ldloc.s V_9
IL_6ede: call string [mscorlib]System.Convert::ToString(int32)
IL_6ee3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ee8: stloc.s V_10
IL_6eea: ldloc.s V_9
IL_6eec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6ef1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6ef6: stloc.s V_10
IL_6ef8: ldloc.s V_6
IL_6efa: call string [mscorlib]System.Convert::ToString(int32)
IL_6eff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6f04: stloc.s V_8
IL_6f06: br.s IL_6f4e
IL_6f08: ldloc.s V_9
IL_6f0a: call string [mscorlib]System.Convert::ToString(int32)
IL_6f0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6f14: stloc.s V_7
IL_6f16: ldloc.s V_10
IL_6f18: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6f1d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6f22: stloc.s V_6
IL_6f24: ldloc.s V_10
IL_6f26: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6f2b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6f30: stloc.s V_9
IL_6f32: ldloc.s V_9
IL_6f34: call string [mscorlib]System.Convert::ToString(int32)
IL_6f39: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6f3e: stloc.s V_6
IL_6f40: ldloc.s V_6
IL_6f42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f4c: stloc.s V_8
IL_6f4e: ldloc.s V_10
IL_6f50: ldloc.s V_6
IL_6f52: bne.un.s IL_6f9c
IL_6f54: ldloc.s V_7
IL_6f56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f60: stloc.s V_10
IL_6f62: ldloc.s V_7
IL_6f64: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6f69: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6f6e: stloc.s V_10
IL_6f70: ldloc.s V_8
IL_6f72: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f77: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f7c: stloc.s V_9
IL_6f7e: ldloc.s V_6
IL_6f80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f8a: stloc.s V_10
IL_6f8c: ldloc.s V_6
IL_6f8e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_6f93: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_6f98: stloc.s V_10
IL_6f9a: br.s IL_6fe2
IL_6f9c: ldloc.s V_6
IL_6f9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6fa3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6fa8: stloc.s V_9
IL_6faa: ldloc.s V_6
IL_6fac: call string [mscorlib]System.Convert::ToString(int32)
IL_6fb1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6fb6: stloc.s V_6
IL_6fb8: ldloc.s V_8
IL_6fba: call string [mscorlib]System.Convert::ToString(int32)
IL_6fbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6fc4: stloc.s V_8
IL_6fc6: ldloc.s V_9
IL_6fc8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_6fcd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_6fd2: stloc.s V_7
IL_6fd4: ldloc.s V_10
IL_6fd6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6fdb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_6fe0: stloc.s V_10
IL_6fe2: ldloc.s V_6
IL_6fe4: ldloc.s V_10
IL_6fe6: bne.un.s IL_7030
IL_6fe8: ldloc.s V_10
IL_6fea: call string [mscorlib]System.Convert::ToString(int32)
IL_6fef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_6ff4: stloc.s V_9
IL_6ff6: ldloc.s V_8
IL_6ff8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_6ffd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7002: stloc.s V_9
IL_7004: ldloc.s V_7
IL_7006: call string [mscorlib]System.Convert::ToString(int32)
IL_700b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7010: stloc.s V_8
IL_7012: ldloc.s V_8
IL_7014: call string [mscorlib]System.Convert::ToString(int32)
IL_7019: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_701e: stloc.s V_7
IL_7020: ldloc.s V_8
IL_7022: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7027: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_702c: stloc.s V_10
IL_702e: br.s IL_7076
IL_7030: ldloc.s V_8
IL_7032: call string [mscorlib]System.Convert::ToString(int32)
IL_7037: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_703c: stloc.s V_9
IL_703e: ldloc.s V_6
IL_7040: call string [mscorlib]System.Convert::ToString(int32)
IL_7045: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_704a: stloc.s V_10
IL_704c: ldloc.s V_6
IL_704e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7053: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7058: stloc.s V_6
IL_705a: ldloc.s V_10
IL_705c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7061: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7066: stloc.s V_10
IL_7068: ldloc.s V_8
IL_706a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_706f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7074: stloc.s V_8
IL_7076: ldloc.s V_7
IL_7078: ldloc.s V_10
IL_707a: bgt.s IL_70c4
IL_707c: ldloc.s V_7
IL_707e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7083: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7088: stloc.s V_6
IL_708a: ldloc.s V_10
IL_708c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7091: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7096: stloc.s V_6
IL_7098: ldloc.s V_6
IL_709a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_709f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_70a4: stloc.s V_9
IL_70a6: ldloc.s V_10
IL_70a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_70ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_70b2: stloc.s V_9
IL_70b4: ldloc.s V_10
IL_70b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_70bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_70c0: stloc.s V_10
IL_70c2: br.s IL_710a
IL_70c4: ldloc.s V_8
IL_70c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_70cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_70d0: stloc.s V_6
IL_70d2: ldloc.s V_8
IL_70d4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_70d9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_70de: stloc.s V_7
IL_70e0: ldloc.s V_6
IL_70e2: call string [mscorlib]System.Convert::ToString(int32)
IL_70e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_70ec: stloc.s V_9
IL_70ee: ldloc.s V_8
IL_70f0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_70f5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_70fa: stloc.s V_9
IL_70fc: ldloc.s V_9
IL_70fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7103: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7108: stloc.s V_9
IL_710a: ldloc.s V_9
IL_710c: ldloc.s V_8
IL_710e: beq.s IL_7158
IL_7110: ldloc.s V_6
IL_7112: call string [mscorlib]System.Convert::ToString(int32)
IL_7117: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_711c: stloc.s V_8
IL_711e: ldloc.s V_9
IL_7120: call string [mscorlib]System.Convert::ToString(int32)
IL_7125: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_712a: stloc.s V_7
IL_712c: ldloc.s V_10
IL_712e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7133: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7138: stloc.s V_9
IL_713a: ldloc.s V_7
IL_713c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7141: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7146: stloc.s V_6
IL_7148: ldloc.s V_7
IL_714a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_714f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7154: stloc.s V_7
IL_7156: br.s IL_719e
IL_7158: ldloc.s V_9
IL_715a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_715f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7164: stloc.s V_10
IL_7166: ldloc.s V_8
IL_7168: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_716d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7172: stloc.s V_10
IL_7174: ldloc.s V_8
IL_7176: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_717b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7180: stloc.s V_8
IL_7182: ldloc.s V_7
IL_7184: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7189: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_718e: stloc.s V_6
IL_7190: ldloc.s V_10
IL_7192: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7197: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_719c: stloc.s V_8
IL_719e: ldloc.s V_9
IL_71a0: ldloc.s V_8
IL_71a2: blt.s IL_71ec
IL_71a4: ldloc.s V_9
IL_71a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_71ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_71b0: stloc.s V_8
IL_71b2: ldloc.s V_8
IL_71b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_71b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_71be: stloc.s V_10
IL_71c0: ldloc.s V_9
IL_71c2: call string [mscorlib]System.Convert::ToString(int32)
IL_71c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_71cc: stloc.s V_10
IL_71ce: ldloc.s V_7
IL_71d0: call string [mscorlib]System.Convert::ToString(int32)
IL_71d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_71da: stloc.s V_8
IL_71dc: ldloc.s V_10
IL_71de: call string [mscorlib]System.Convert::ToString(int32)
IL_71e3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_71e8: stloc.s V_10
IL_71ea: br.s IL_7232
IL_71ec: ldloc.s V_8
IL_71ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_71f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_71f8: stloc.s V_6
IL_71fa: ldloc.s V_7
IL_71fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7201: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7206: stloc.s V_6
IL_7208: ldloc.s V_7
IL_720a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_720f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7214: stloc.s V_6
IL_7216: ldloc.s V_6
IL_7218: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_721d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7222: stloc.s V_8
IL_7224: ldloc.s V_7
IL_7226: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_722b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7230: stloc.s V_8
IL_7232: ldloc.s V_9
IL_7234: ldloc.s V_9
IL_7236: beq.s IL_7280
IL_7238: ldloc.s V_8
IL_723a: call string [mscorlib]System.Convert::ToString(int32)
IL_723f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7244: stloc.s V_10
IL_7246: ldloc.s V_9
IL_7248: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_724d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7252: stloc.s V_8
IL_7254: ldloc.s V_9
IL_7256: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_725b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7260: stloc.s V_7
IL_7262: ldloc.s V_9
IL_7264: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7269: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_726e: stloc.s V_9
IL_7270: ldloc.s V_10
IL_7272: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7277: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_727c: stloc.s V_7
IL_727e: br.s IL_72c6
IL_7280: ldloc.s V_6
IL_7282: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7287: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_728c: stloc.s V_7
IL_728e: ldloc.s V_8
IL_7290: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7295: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_729a: stloc.s V_8
IL_729c: ldloc.s V_7
IL_729e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_72a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_72a8: stloc.s V_6
IL_72aa: ldloc.s V_8
IL_72ac: call string [mscorlib]System.Convert::ToString(int32)
IL_72b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_72b6: stloc.s V_8
IL_72b8: ldloc.s V_8
IL_72ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_72bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_72c4: stloc.s V_7
IL_72c6: ldloc.s V_8
IL_72c8: ldloc.s V_6
IL_72ca: blt.s IL_7314
IL_72cc: ldloc.s V_10
IL_72ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_72d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_72d8: stloc.s V_8
IL_72da: ldloc.s V_10
IL_72dc: call string [mscorlib]System.Convert::ToString(int32)
IL_72e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_72e6: stloc.s V_7
IL_72e8: ldloc.s V_6
IL_72ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_72ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_72f4: stloc.s V_10
IL_72f6: ldloc.s V_7
IL_72f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_72fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7302: stloc.s V_9
IL_7304: ldloc.s V_6
IL_7306: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_730b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7310: stloc.s V_9
IL_7312: br.s IL_735a
IL_7314: ldloc.s V_10
IL_7316: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_731b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7320: stloc.s V_7
IL_7322: ldloc.s V_7
IL_7324: call string [mscorlib]System.Convert::ToString(int32)
IL_7329: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_732e: stloc.s V_6
IL_7330: ldloc.s V_7
IL_7332: call string [mscorlib]System.Convert::ToString(int32)
IL_7337: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_733c: stloc.s V_6
IL_733e: ldloc.s V_7
IL_7340: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7345: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_734a: stloc.s V_7
IL_734c: ldloc.s V_8
IL_734e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7353: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7358: stloc.s V_6
IL_735a: ldloc.s V_8
IL_735c: ldloc.s V_7
IL_735e: ble.s IL_73a8
IL_7360: ldloc.s V_6
IL_7362: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7367: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_736c: stloc.s V_8
IL_736e: ldloc.s V_9
IL_7370: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7375: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_737a: stloc.s V_6
IL_737c: ldloc.s V_8
IL_737e: call string [mscorlib]System.Convert::ToString(int32)
IL_7383: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7388: stloc.s V_6
IL_738a: ldloc.s V_6
IL_738c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7391: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7396: stloc.s V_8
IL_7398: ldloc.s V_8
IL_739a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_739f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_73a4: stloc.s V_10
IL_73a6: br.s IL_73ee
IL_73a8: ldloc.s V_7
IL_73aa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_73af: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_73b4: stloc.s V_8
IL_73b6: ldloc.s V_6
IL_73b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_73bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_73c2: stloc.s V_9
IL_73c4: ldloc.s V_7
IL_73c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_73cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_73d0: stloc.s V_9
IL_73d2: ldloc.s V_8
IL_73d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_73d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_73de: stloc.s V_8
IL_73e0: ldloc.s V_10
IL_73e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_73e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_73ec: stloc.s V_9
IL_73ee: ldloc.s V_9
IL_73f0: ldloc.s V_10
IL_73f2: bgt.s IL_743c
IL_73f4: ldloc.s V_7
IL_73f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_73fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7400: stloc.s V_10
IL_7402: ldloc.s V_6
IL_7404: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7409: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_740e: stloc.s V_10
IL_7410: ldloc.s V_10
IL_7412: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7417: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_741c: stloc.s V_7
IL_741e: ldloc.s V_6
IL_7420: call string [mscorlib]System.Convert::ToString(int32)
IL_7425: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_742a: stloc.s V_9
IL_742c: ldloc.s V_7
IL_742e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7433: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7438: stloc.s V_6
IL_743a: br.s IL_7482
IL_743c: ldloc.s V_10
IL_743e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7443: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7448: stloc.s V_10
IL_744a: ldloc.s V_6
IL_744c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7451: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7456: stloc.s V_6
IL_7458: ldloc.s V_7
IL_745a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_745f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7464: stloc.s V_7
IL_7466: ldloc.s V_10
IL_7468: call string [mscorlib]System.Convert::ToString(int32)
IL_746d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7472: stloc.s V_10
IL_7474: ldloc.s V_10
IL_7476: call string [mscorlib]System.Convert::ToString(int32)
IL_747b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7480: stloc.s V_6
IL_7482: ldloc.s V_10
IL_7484: ldloc.s V_10
IL_7486: bne.un.s IL_74d0
IL_7488: ldloc.s V_10
IL_748a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_748f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7494: stloc.s V_7
IL_7496: ldloc.s V_9
IL_7498: call string [mscorlib]System.Convert::ToString(int32)
IL_749d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74a2: stloc.s V_6
IL_74a4: ldloc.s V_7
IL_74a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_74ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_74b0: stloc.s V_7
IL_74b2: ldloc.s V_9
IL_74b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_74b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_74be: stloc.s V_7
IL_74c0: ldloc.s V_9
IL_74c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_74c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_74cc: stloc.s V_7
IL_74ce: br.s IL_7516
IL_74d0: ldloc.s V_7
IL_74d2: call string [mscorlib]System.Convert::ToString(int32)
IL_74d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74dc: stloc.s V_7
IL_74de: ldloc.s V_6
IL_74e0: call string [mscorlib]System.Convert::ToString(int32)
IL_74e5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74ea: stloc.s V_10
IL_74ec: ldloc.s V_7
IL_74ee: call string [mscorlib]System.Convert::ToString(int32)
IL_74f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_74f8: stloc.s V_9
IL_74fa: ldloc.s V_9
IL_74fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7501: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7506: stloc.s V_6
IL_7508: ldloc.s V_8
IL_750a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_750f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7514: stloc.s V_6
IL_7516: ldloc.s V_6
IL_7518: ldloc.s V_10
IL_751a: beq.s IL_7564
IL_751c: ldloc.s V_7
IL_751e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7523: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7528: stloc.s V_7
IL_752a: ldloc.s V_9
IL_752c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7531: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7536: stloc.s V_8
IL_7538: ldloc.s V_10
IL_753a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_753f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7544: stloc.s V_6
IL_7546: ldloc.s V_9
IL_7548: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_754d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7552: stloc.s V_10
IL_7554: ldloc.s V_6
IL_7556: call string [mscorlib]System.Convert::ToString(int32)
IL_755b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7560: stloc.s V_8
IL_7562: br.s IL_75aa
IL_7564: ldloc.s V_9
IL_7566: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_756b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7570: stloc.s V_6
IL_7572: ldloc.s V_7
IL_7574: call string [mscorlib]System.Convert::ToString(int32)
IL_7579: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_757e: stloc.s V_8
IL_7580: ldloc.s V_7
IL_7582: call string [mscorlib]System.Convert::ToString(int32)
IL_7587: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_758c: stloc.s V_9
IL_758e: ldloc.s V_9
IL_7590: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7595: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_759a: stloc.s V_8
IL_759c: ldloc.s V_8
IL_759e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_75a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_75a8: stloc.s V_6
IL_75aa: ldloc.s V_7
IL_75ac: ldloc.s V_10
IL_75ae: bne.un.s IL_75f8
IL_75b0: ldloc.s V_8
IL_75b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_75b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_75bc: stloc.s V_10
IL_75be: ldloc.s V_10
IL_75c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_75c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_75ca: stloc.s V_8
IL_75cc: ldloc.s V_9
IL_75ce: call string [mscorlib]System.Convert::ToString(int32)
IL_75d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_75d8: stloc.s V_8
IL_75da: ldloc.s V_9
IL_75dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_75e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_75e6: stloc.s V_7
IL_75e8: ldloc.s V_8
IL_75ea: call string [mscorlib]System.Convert::ToString(int32)
IL_75ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_75f4: stloc.s V_8
IL_75f6: br.s IL_763e
IL_75f8: ldloc.s V_6
IL_75fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_75ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7604: stloc.s V_8
IL_7606: ldloc.s V_7
IL_7608: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_760d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7612: stloc.s V_9
IL_7614: ldloc.s V_7
IL_7616: call string [mscorlib]System.Convert::ToString(int32)
IL_761b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7620: stloc.s V_8
IL_7622: ldloc.s V_10
IL_7624: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7629: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_762e: stloc.s V_10
IL_7630: ldloc.s V_10
IL_7632: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7637: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_763c: stloc.s V_6
IL_763e: ldloc.s V_6
IL_7640: ldloc.s V_9
IL_7642: bgt.s IL_768c
IL_7644: ldloc.s V_9
IL_7646: call string [mscorlib]System.Convert::ToString(int32)
IL_764b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7650: stloc.s V_10
IL_7652: ldloc.s V_6
IL_7654: call string [mscorlib]System.Convert::ToString(int32)
IL_7659: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_765e: stloc.s V_9
IL_7660: ldloc.s V_10
IL_7662: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7667: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_766c: stloc.s V_10
IL_766e: ldloc.s V_9
IL_7670: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7675: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_767a: stloc.s V_9
IL_767c: ldloc.s V_8
IL_767e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7683: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7688: stloc.s V_8
IL_768a: br.s IL_76d2
IL_768c: ldloc.s V_6
IL_768e: call string [mscorlib]System.Convert::ToString(int32)
IL_7693: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7698: stloc.s V_7
IL_769a: ldloc.s V_10
IL_769c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_76a1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_76a6: stloc.s V_7
IL_76a8: ldloc.s V_7
IL_76aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_76af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_76b4: stloc.s V_8
IL_76b6: ldloc.s V_10
IL_76b8: call string [mscorlib]System.Convert::ToString(int32)
IL_76bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_76c2: stloc.s V_6
IL_76c4: ldloc.s V_9
IL_76c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_76cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_76d0: stloc.s V_6
IL_76d2: ldloc.s V_9
IL_76d4: ldloc.s V_10
IL_76d6: beq.s IL_7720
IL_76d8: ldloc.s V_10
IL_76da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_76df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_76e4: stloc.s V_10
IL_76e6: ldloc.s V_7
IL_76e8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_76ed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_76f2: stloc.s V_9
IL_76f4: ldloc.s V_7
IL_76f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_76fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7700: stloc.s V_10
IL_7702: ldloc.s V_6
IL_7704: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7709: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_770e: stloc.s V_7
IL_7710: ldloc.s V_10
IL_7712: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7717: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_771c: stloc.s V_9
IL_771e: br.s IL_7766
IL_7720: ldloc.s V_9
IL_7722: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7727: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_772c: stloc.s V_8
IL_772e: ldloc.s V_10
IL_7730: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7735: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_773a: stloc.s V_9
IL_773c: ldloc.s V_6
IL_773e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7743: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7748: stloc.s V_10
IL_774a: ldloc.s V_6
IL_774c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7751: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7756: stloc.s V_7
IL_7758: ldloc.s V_8
IL_775a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_775f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7764: stloc.s V_6
IL_7766: ldloc.s V_10
IL_7768: ldloc.s V_9
IL_776a: blt.s IL_77b4
IL_776c: ldloc.s V_6
IL_776e: call string [mscorlib]System.Convert::ToString(int32)
IL_7773: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7778: stloc.s V_10
IL_777a: ldloc.s V_9
IL_777c: call string [mscorlib]System.Convert::ToString(int32)
IL_7781: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7786: stloc.s V_8
IL_7788: ldloc.s V_7
IL_778a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_778f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7794: stloc.s V_9
IL_7796: ldloc.s V_8
IL_7798: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_779d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_77a2: stloc.s V_8
IL_77a4: ldloc.s V_6
IL_77a6: call string [mscorlib]System.Convert::ToString(int32)
IL_77ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_77b0: stloc.s V_6
IL_77b2: br.s IL_77fa
IL_77b4: ldloc.s V_9
IL_77b6: call string [mscorlib]System.Convert::ToString(int32)
IL_77bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_77c0: stloc.s V_6
IL_77c2: ldloc.s V_8
IL_77c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_77c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_77ce: stloc.s V_10
IL_77d0: ldloc.s V_8
IL_77d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_77d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_77dc: stloc.s V_10
IL_77de: ldloc.s V_8
IL_77e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_77e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_77ea: stloc.s V_10
IL_77ec: ldloc.s V_10
IL_77ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_77f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_77f8: stloc.s V_7
IL_77fa: ldloc.s V_10
IL_77fc: ldloc.s V_6
IL_77fe: bne.un.s IL_7848
IL_7800: ldloc.s V_9
IL_7802: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7807: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_780c: stloc.s V_8
IL_780e: ldloc.s V_6
IL_7810: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7815: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_781a: stloc.s V_9
IL_781c: ldloc.s V_9
IL_781e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7823: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7828: stloc.s V_6
IL_782a: ldloc.s V_6
IL_782c: call string [mscorlib]System.Convert::ToString(int32)
IL_7831: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7836: stloc.s V_8
IL_7838: ldloc.s V_10
IL_783a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_783f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7844: stloc.s V_9
IL_7846: br.s IL_788e
IL_7848: ldloc.s V_7
IL_784a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_784f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7854: stloc.s V_6
IL_7856: ldloc.s V_9
IL_7858: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_785d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7862: stloc.s V_10
IL_7864: ldloc.s V_9
IL_7866: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_786b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7870: stloc.s V_6
IL_7872: ldloc.s V_6
IL_7874: call string [mscorlib]System.Convert::ToString(int32)
IL_7879: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_787e: stloc.s V_9
IL_7880: ldloc.s V_8
IL_7882: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7887: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_788c: stloc.s V_7
IL_788e: ldloc.s V_9
IL_7890: ldloc.s V_7
IL_7892: blt.s IL_78dc
IL_7894: ldloc.s V_9
IL_7896: call string [mscorlib]System.Convert::ToString(int32)
IL_789b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_78a0: stloc.s V_7
IL_78a2: ldloc.s V_9
IL_78a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_78a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_78ae: stloc.s V_7
IL_78b0: ldloc.s V_10
IL_78b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_78b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_78bc: stloc.s V_8
IL_78be: ldloc.s V_7
IL_78c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_78c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_78ca: stloc.s V_10
IL_78cc: ldloc.s V_6
IL_78ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_78d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_78d8: stloc.s V_8
IL_78da: br.s IL_7922
IL_78dc: ldloc.s V_9
IL_78de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_78e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_78e8: stloc.s V_8
IL_78ea: ldloc.s V_8
IL_78ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_78f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_78f6: stloc.s V_9
IL_78f8: ldloc.s V_10
IL_78fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_78ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7904: stloc.s V_7
IL_7906: ldloc.s V_7
IL_7908: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_790d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7912: stloc.s V_6
IL_7914: ldloc.s V_9
IL_7916: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_791b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7920: stloc.s V_6
IL_7922: ldloc.s V_6
IL_7924: ldloc.s V_10
IL_7926: bge.s IL_7970
IL_7928: ldloc.s V_8
IL_792a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_792f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7934: stloc.s V_10
IL_7936: ldloc.s V_10
IL_7938: call string [mscorlib]System.Convert::ToString(int32)
IL_793d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7942: stloc.s V_7
IL_7944: ldloc.s V_8
IL_7946: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_794b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7950: stloc.s V_9
IL_7952: ldloc.s V_8
IL_7954: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7959: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_795e: stloc.s V_9
IL_7960: ldloc.s V_8
IL_7962: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7967: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_796c: stloc.s V_7
IL_796e: br.s IL_79b6
IL_7970: ldloc.s V_7
IL_7972: call string [mscorlib]System.Convert::ToString(int32)
IL_7977: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_797c: stloc.s V_6
IL_797e: ldloc.s V_9
IL_7980: call string [mscorlib]System.Convert::ToString(int32)
IL_7985: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_798a: stloc.s V_9
IL_798c: ldloc.s V_8
IL_798e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7993: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7998: stloc.s V_9
IL_799a: ldloc.s V_7
IL_799c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_79a1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_79a6: stloc.s V_9
IL_79a8: ldloc.s V_6
IL_79aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_79af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_79b4: stloc.s V_7
IL_79b6: ldloc.s V_9
IL_79b8: ldloc.s V_6
IL_79ba: bge.s IL_7a04
IL_79bc: ldloc.s V_9
IL_79be: call string [mscorlib]System.Convert::ToString(int32)
IL_79c3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_79c8: stloc.s V_8
IL_79ca: ldloc.s V_8
IL_79cc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_79d1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_79d6: stloc.s V_9
IL_79d8: ldloc.s V_8
IL_79da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_79df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_79e4: stloc.s V_10
IL_79e6: ldloc.s V_10
IL_79e8: call string [mscorlib]System.Convert::ToString(int32)
IL_79ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_79f2: stloc.s V_6
IL_79f4: ldloc.s V_10
IL_79f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_79fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a00: stloc.s V_8
IL_7a02: br.s IL_7a4a
IL_7a04: ldloc.s V_6
IL_7a06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7a0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a10: stloc.s V_9
IL_7a12: ldloc.s V_8
IL_7a14: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a19: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7a1e: stloc.s V_7
IL_7a20: ldloc.s V_7
IL_7a22: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7a27: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7a2c: stloc.s V_6
IL_7a2e: ldloc.s V_8
IL_7a30: call string [mscorlib]System.Convert::ToString(int32)
IL_7a35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7a3a: stloc.s V_10
IL_7a3c: ldloc.s V_10
IL_7a3e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a43: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7a48: stloc.s V_8
IL_7a4a: ldloc.s V_8
IL_7a4c: ldloc.s V_9
IL_7a4e: bge.s IL_7a98
IL_7a50: ldloc.s V_8
IL_7a52: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7a57: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a5c: stloc.s V_7
IL_7a5e: ldloc.s V_8
IL_7a60: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a65: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7a6a: stloc.s V_9
IL_7a6c: ldloc.s V_9
IL_7a6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7a73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7a78: stloc.s V_10
IL_7a7a: ldloc.s V_7
IL_7a7c: call string [mscorlib]System.Convert::ToString(int32)
IL_7a81: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7a86: stloc.s V_7
IL_7a88: ldloc.s V_8
IL_7a8a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7a8f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7a94: stloc.s V_9
IL_7a96: br.s IL_7ade
IL_7a98: ldloc.s V_8
IL_7a9a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7a9f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7aa4: stloc.s V_7
IL_7aa6: ldloc.s V_6
IL_7aa8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7aad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7ab2: stloc.s V_6
IL_7ab4: ldloc.s V_8
IL_7ab6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7abb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7ac0: stloc.s V_9
IL_7ac2: ldloc.s V_9
IL_7ac4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ac9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7ace: stloc.s V_8
IL_7ad0: ldloc.s V_9
IL_7ad2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7ad7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7adc: stloc.s V_10
IL_7ade: ldloc.s V_10
IL_7ae0: ldloc.s V_6
IL_7ae2: bgt.s IL_7b2c
IL_7ae4: ldloc.s V_10
IL_7ae6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7aeb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7af0: stloc.s V_6
IL_7af2: ldloc.s V_9
IL_7af4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7af9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7afe: stloc.s V_7
IL_7b00: ldloc.s V_9
IL_7b02: call string [mscorlib]System.Convert::ToString(int32)
IL_7b07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7b0c: stloc.s V_8
IL_7b0e: ldloc.s V_8
IL_7b10: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7b15: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7b1a: stloc.s V_10
IL_7b1c: ldloc.s V_7
IL_7b1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7b23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7b28: stloc.s V_10
IL_7b2a: br.s IL_7b72
IL_7b2c: ldloc.s V_10
IL_7b2e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7b33: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7b38: stloc.s V_6
IL_7b3a: ldloc.s V_8
IL_7b3c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7b41: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7b46: stloc.s V_7
IL_7b48: ldloc.s V_8
IL_7b4a: call string [mscorlib]System.Convert::ToString(int32)
IL_7b4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7b54: stloc.s V_9
IL_7b56: ldloc.s V_8
IL_7b58: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7b5d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7b62: stloc.s V_6
IL_7b64: ldloc.s V_8
IL_7b66: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7b6b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7b70: stloc.s V_9
IL_7b72: ldloc.s V_9
IL_7b74: ldloc.s V_9
IL_7b76: beq.s IL_7bc0
IL_7b78: ldloc.s V_6
IL_7b7a: call string [mscorlib]System.Convert::ToString(int32)
IL_7b7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7b84: stloc.s V_7
IL_7b86: ldloc.s V_8
IL_7b88: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7b8d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7b92: stloc.s V_8
IL_7b94: ldloc.s V_8
IL_7b96: call string [mscorlib]System.Convert::ToString(int32)
IL_7b9b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ba0: stloc.s V_10
IL_7ba2: ldloc.s V_7
IL_7ba4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ba9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7bae: stloc.s V_8
IL_7bb0: ldloc.s V_8
IL_7bb2: call string [mscorlib]System.Convert::ToString(int32)
IL_7bb7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7bbc: stloc.s V_10
IL_7bbe: br.s IL_7c06
IL_7bc0: ldloc.s V_6
IL_7bc2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7bc7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7bcc: stloc.s V_8
IL_7bce: ldloc.s V_9
IL_7bd0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7bd5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7bda: stloc.s V_10
IL_7bdc: ldloc.s V_9
IL_7bde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7be3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7be8: stloc.s V_9
IL_7bea: ldloc.s V_9
IL_7bec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7bf1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7bf6: stloc.s V_7
IL_7bf8: ldloc.s V_9
IL_7bfa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7bff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7c04: stloc.s V_6
IL_7c06: ldloc.s V_6
IL_7c08: ldloc.s V_7
IL_7c0a: bge.s IL_7c54
IL_7c0c: ldloc.s V_9
IL_7c0e: call string [mscorlib]System.Convert::ToString(int32)
IL_7c13: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c18: stloc.s V_10
IL_7c1a: ldloc.s V_7
IL_7c1c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7c21: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7c26: stloc.s V_7
IL_7c28: ldloc.s V_8
IL_7c2a: call string [mscorlib]System.Convert::ToString(int32)
IL_7c2f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c34: stloc.s V_8
IL_7c36: ldloc.s V_10
IL_7c38: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c3d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c42: stloc.s V_6
IL_7c44: ldloc.s V_10
IL_7c46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c50: stloc.s V_7
IL_7c52: br.s IL_7c9a
IL_7c54: ldloc.s V_10
IL_7c56: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7c5b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7c60: stloc.s V_6
IL_7c62: ldloc.s V_7
IL_7c64: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c69: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c6e: stloc.s V_7
IL_7c70: ldloc.s V_6
IL_7c72: call string [mscorlib]System.Convert::ToString(int32)
IL_7c77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c7c: stloc.s V_6
IL_7c7e: ldloc.s V_9
IL_7c80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7c85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7c8a: stloc.s V_8
IL_7c8c: ldloc.s V_10
IL_7c8e: call string [mscorlib]System.Convert::ToString(int32)
IL_7c93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7c98: stloc.s V_9
IL_7c9a: ldloc.s V_7
IL_7c9c: ldloc.s V_9
IL_7c9e: bgt.s IL_7ce8
IL_7ca0: ldloc.s V_10
IL_7ca2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7ca7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7cac: stloc.s V_6
IL_7cae: ldloc.s V_8
IL_7cb0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7cb5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7cba: stloc.s V_10
IL_7cbc: ldloc.s V_9
IL_7cbe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7cc3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7cc8: stloc.s V_10
IL_7cca: ldloc.s V_7
IL_7ccc: call string [mscorlib]System.Convert::ToString(int32)
IL_7cd1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7cd6: stloc.s V_6
IL_7cd8: ldloc.s V_7
IL_7cda: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7cdf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7ce4: stloc.s V_9
IL_7ce6: br.s IL_7d2e
IL_7ce8: ldloc.s V_8
IL_7cea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7cef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7cf4: stloc.s V_10
IL_7cf6: ldloc.s V_10
IL_7cf8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7cfd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d02: stloc.s V_10
IL_7d04: ldloc.s V_6
IL_7d06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d10: stloc.s V_10
IL_7d12: ldloc.s V_7
IL_7d14: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d19: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d1e: stloc.s V_8
IL_7d20: ldloc.s V_9
IL_7d22: call string [mscorlib]System.Convert::ToString(int32)
IL_7d27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7d2c: stloc.s V_8
IL_7d2e: ldloc.s V_8
IL_7d30: ldloc.s V_9
IL_7d32: bgt.s IL_7d7c
IL_7d34: ldloc.s V_10
IL_7d36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7d3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7d40: stloc.s V_6
IL_7d42: ldloc.s V_6
IL_7d44: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7d49: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7d4e: stloc.s V_6
IL_7d50: ldloc.s V_9
IL_7d52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7d57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7d5c: stloc.s V_7
IL_7d5e: ldloc.s V_10
IL_7d60: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d65: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d6a: stloc.s V_9
IL_7d6c: ldloc.s V_6
IL_7d6e: call string [mscorlib]System.Convert::ToString(int32)
IL_7d73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7d78: stloc.s V_10
IL_7d7a: br.s IL_7dc2
IL_7d7c: ldloc.s V_9
IL_7d7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7d83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7d88: stloc.s V_8
IL_7d8a: ldloc.s V_8
IL_7d8c: call string [mscorlib]System.Convert::ToString(int32)
IL_7d91: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7d96: stloc.s V_7
IL_7d98: ldloc.s V_8
IL_7d9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7d9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7da4: stloc.s V_10
IL_7da6: ldloc.s V_7
IL_7da8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7dad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7db2: stloc.s V_9
IL_7db4: ldloc.s V_9
IL_7db6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7dbb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7dc0: stloc.s V_7
IL_7dc2: ldloc.s V_8
IL_7dc4: ldloc.s V_7
IL_7dc6: beq.s IL_7e10
IL_7dc8: ldloc.s V_10
IL_7dca: call string [mscorlib]System.Convert::ToString(int32)
IL_7dcf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7dd4: stloc.s V_9
IL_7dd6: ldloc.s V_10
IL_7dd8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ddd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7de2: stloc.s V_7
IL_7de4: ldloc.s V_8
IL_7de6: call string [mscorlib]System.Convert::ToString(int32)
IL_7deb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7df0: stloc.s V_7
IL_7df2: ldloc.s V_10
IL_7df4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7df9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7dfe: stloc.s V_7
IL_7e00: ldloc.s V_7
IL_7e02: call string [mscorlib]System.Convert::ToString(int32)
IL_7e07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7e0c: stloc.s V_7
IL_7e0e: br.s IL_7e56
IL_7e10: ldloc.s V_9
IL_7e12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e1c: stloc.s V_7
IL_7e1e: ldloc.s V_9
IL_7e20: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e25: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7e2a: stloc.s V_6
IL_7e2c: ldloc.s V_6
IL_7e2e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e33: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7e38: stloc.s V_6
IL_7e3a: ldloc.s V_10
IL_7e3c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e41: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7e46: stloc.s V_8
IL_7e48: ldloc.s V_10
IL_7e4a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e4f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e54: stloc.s V_9
IL_7e56: ldloc.s V_9
IL_7e58: ldloc.s V_7
IL_7e5a: beq.s IL_7ea4
IL_7e5c: ldloc.s V_10
IL_7e5e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e63: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e68: stloc.s V_9
IL_7e6a: ldloc.s V_6
IL_7e6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e76: stloc.s V_6
IL_7e78: ldloc.s V_6
IL_7e7a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7e7f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7e84: stloc.s V_10
IL_7e86: ldloc.s V_9
IL_7e88: call string [mscorlib]System.Convert::ToString(int32)
IL_7e8d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7e92: stloc.s V_6
IL_7e94: ldloc.s V_9
IL_7e96: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7e9b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7ea0: stloc.s V_8
IL_7ea2: br.s IL_7eea
IL_7ea4: ldloc.s V_7
IL_7ea6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7eab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7eb0: stloc.s V_6
IL_7eb2: ldloc.s V_7
IL_7eb4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7eb9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7ebe: stloc.s V_6
IL_7ec0: ldloc.s V_7
IL_7ec2: call string [mscorlib]System.Convert::ToString(int32)
IL_7ec7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ecc: stloc.s V_8
IL_7ece: ldloc.s V_8
IL_7ed0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7ed5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7eda: stloc.s V_10
IL_7edc: ldloc.s V_8
IL_7ede: call string [mscorlib]System.Convert::ToString(int32)
IL_7ee3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ee8: stloc.s V_6
IL_7eea: ldloc.s V_7
IL_7eec: ldloc.s V_9
IL_7eee: bgt.s IL_7f38
IL_7ef0: ldloc.s V_8
IL_7ef2: call string [mscorlib]System.Convert::ToString(int32)
IL_7ef7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7efc: stloc.s V_8
IL_7efe: ldloc.s V_6
IL_7f00: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f05: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f0a: stloc.s V_7
IL_7f0c: ldloc.s V_7
IL_7f0e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f13: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f18: stloc.s V_9
IL_7f1a: ldloc.s V_9
IL_7f1c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f21: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f26: stloc.s V_8
IL_7f28: ldloc.s V_6
IL_7f2a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f2f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f34: stloc.s V_7
IL_7f36: br.s IL_7f7e
IL_7f38: ldloc.s V_6
IL_7f3a: call string [mscorlib]System.Convert::ToString(int32)
IL_7f3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7f44: stloc.s V_6
IL_7f46: ldloc.s V_9
IL_7f48: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f4d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f52: stloc.s V_9
IL_7f54: ldloc.s V_8
IL_7f56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7f5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7f60: stloc.s V_6
IL_7f62: ldloc.s V_6
IL_7f64: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7f69: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7f6e: stloc.s V_9
IL_7f70: ldloc.s V_7
IL_7f72: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f77: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f7c: stloc.s V_8
IL_7f7e: ldloc.s V_8
IL_7f80: ldloc.s V_7
IL_7f82: bne.un.s IL_7fcc
IL_7f84: ldloc.s V_9
IL_7f86: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f8b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f90: stloc.s V_6
IL_7f92: ldloc.s V_10
IL_7f94: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7f99: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7f9e: stloc.s V_7
IL_7fa0: ldloc.s V_9
IL_7fa2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7fa7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7fac: stloc.s V_7
IL_7fae: ldloc.s V_8
IL_7fb0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_7fb5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_7fba: stloc.s V_10
IL_7fbc: ldloc.s V_10
IL_7fbe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_7fc3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_7fc8: stloc.s V_9
IL_7fca: br.s IL_8012
IL_7fcc: ldloc.s V_6
IL_7fce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7fd3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7fd8: stloc.s V_8
IL_7fda: ldloc.s V_8
IL_7fdc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_7fe1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_7fe6: stloc.s V_7
IL_7fe8: ldloc.s V_8
IL_7fea: call string [mscorlib]System.Convert::ToString(int32)
IL_7fef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_7ff4: stloc.s V_10
IL_7ff6: ldloc.s V_9
IL_7ff8: call string [mscorlib]System.Convert::ToString(int32)
IL_7ffd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8002: stloc.s V_6
IL_8004: ldloc.s V_7
IL_8006: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_800b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8010: stloc.s V_10
IL_8012: ldloc.s V_9
IL_8014: ldloc.s V_8
IL_8016: beq.s IL_8060
IL_8018: ldloc.s V_6
IL_801a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_801f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8024: stloc.s V_8
IL_8026: ldloc.s V_8
IL_8028: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_802d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8032: stloc.s V_7
IL_8034: ldloc.s V_7
IL_8036: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_803b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8040: stloc.s V_7
IL_8042: ldloc.s V_6
IL_8044: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8049: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_804e: stloc.s V_6
IL_8050: ldloc.s V_10
IL_8052: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8057: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_805c: stloc.s V_6
IL_805e: br.s IL_80a6
IL_8060: ldloc.s V_10
IL_8062: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8067: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_806c: stloc.s V_6
IL_806e: ldloc.s V_9
IL_8070: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8075: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_807a: stloc.s V_6
IL_807c: ldloc.s V_8
IL_807e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8083: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8088: stloc.s V_9
IL_808a: ldloc.s V_7
IL_808c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8091: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8096: stloc.s V_6
IL_8098: ldloc.s V_7
IL_809a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_809f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_80a4: stloc.s V_6
IL_80a6: ldloc.s V_6
IL_80a8: ldloc.s V_7
IL_80aa: blt.s IL_80f4
IL_80ac: ldloc.s V_6
IL_80ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_80b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_80b8: stloc.s V_10
IL_80ba: ldloc.s V_7
IL_80bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_80c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_80c6: stloc.s V_10
IL_80c8: ldloc.s V_9
IL_80ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_80cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_80d4: stloc.s V_9
IL_80d6: ldloc.s V_8
IL_80d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_80dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_80e2: stloc.s V_7
IL_80e4: ldloc.s V_9
IL_80e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_80eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_80f0: stloc.s V_8
IL_80f2: br.s IL_813a
IL_80f4: ldloc.s V_10
IL_80f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_80fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8100: stloc.s V_10
IL_8102: ldloc.s V_7
IL_8104: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8109: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_810e: stloc.s V_8
IL_8110: ldloc.s V_6
IL_8112: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8117: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_811c: stloc.s V_10
IL_811e: ldloc.s V_8
IL_8120: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8125: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_812a: stloc.s V_9
IL_812c: ldloc.s V_10
IL_812e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8133: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8138: stloc.s V_6
IL_813a: ldloc.s V_9
IL_813c: ldloc.s V_6
IL_813e: beq.s IL_8188
IL_8140: ldloc.s V_10
IL_8142: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8147: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_814c: stloc.s V_10
IL_814e: ldloc.s V_10
IL_8150: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8155: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_815a: stloc.s V_9
IL_815c: ldloc.s V_8
IL_815e: call string [mscorlib]System.Convert::ToString(int32)
IL_8163: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8168: stloc.s V_9
IL_816a: ldloc.s V_7
IL_816c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8171: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8176: stloc.s V_10
IL_8178: ldloc.s V_7
IL_817a: call string [mscorlib]System.Convert::ToString(int32)
IL_817f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8184: stloc.s V_10
IL_8186: br.s IL_81ce
IL_8188: ldloc.s V_9
IL_818a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_818f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8194: stloc.s V_9
IL_8196: ldloc.s V_6
IL_8198: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_819d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_81a2: stloc.s V_8
IL_81a4: ldloc.s V_7
IL_81a6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_81ab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_81b0: stloc.s V_10
IL_81b2: ldloc.s V_6
IL_81b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_81b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_81be: stloc.s V_10
IL_81c0: ldloc.s V_10
IL_81c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_81c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_81cc: stloc.s V_9
IL_81ce: ldloc.s V_7
IL_81d0: ldloc.s V_6
IL_81d2: bne.un.s IL_821c
IL_81d4: ldloc.s V_10
IL_81d6: call string [mscorlib]System.Convert::ToString(int32)
IL_81db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_81e0: stloc.s V_7
IL_81e2: ldloc.s V_9
IL_81e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_81e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_81ee: stloc.s V_10
IL_81f0: ldloc.s V_7
IL_81f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_81f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_81fc: stloc.s V_10
IL_81fe: ldloc.s V_8
IL_8200: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8205: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_820a: stloc.s V_10
IL_820c: ldloc.s V_8
IL_820e: call string [mscorlib]System.Convert::ToString(int32)
IL_8213: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8218: stloc.s V_10
IL_821a: br.s IL_8262
IL_821c: ldloc.s V_10
IL_821e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8223: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8228: stloc.s V_7
IL_822a: ldloc.s V_10
IL_822c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8231: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8236: stloc.s V_6
IL_8238: ldloc.s V_10
IL_823a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_823f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8244: stloc.s V_10
IL_8246: ldloc.s V_10
IL_8248: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_824d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8252: stloc.s V_8
IL_8254: ldloc.s V_6
IL_8256: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_825b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8260: stloc.s V_10
IL_8262: ldloc.s V_6
IL_8264: ldloc.s V_6
IL_8266: bgt.s IL_82b0
IL_8268: ldloc.s V_10
IL_826a: call string [mscorlib]System.Convert::ToString(int32)
IL_826f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8274: stloc.s V_7
IL_8276: ldloc.s V_6
IL_8278: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_827d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8282: stloc.s V_7
IL_8284: ldloc.s V_6
IL_8286: call string [mscorlib]System.Convert::ToString(int32)
IL_828b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8290: stloc.s V_6
IL_8292: ldloc.s V_6
IL_8294: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8299: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_829e: stloc.s V_10
IL_82a0: ldloc.s V_9
IL_82a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_82a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_82ac: stloc.s V_9
IL_82ae: br.s IL_82f6
IL_82b0: ldloc.s V_10
IL_82b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_82b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_82bc: stloc.s V_8
IL_82be: ldloc.s V_9
IL_82c0: call string [mscorlib]System.Convert::ToString(int32)
IL_82c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_82ca: stloc.s V_6
IL_82cc: ldloc.s V_9
IL_82ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_82d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_82d8: stloc.s V_6
IL_82da: ldloc.s V_7
IL_82dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_82e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_82e6: stloc.s V_10
IL_82e8: ldloc.s V_10
IL_82ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_82ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_82f4: stloc.s V_9
IL_82f6: ldloc.s V_7
IL_82f8: ldloc.s V_9
IL_82fa: bge.s IL_8344
IL_82fc: ldloc.s V_10
IL_82fe: call string [mscorlib]System.Convert::ToString(int32)
IL_8303: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8308: stloc.s V_7
IL_830a: ldloc.s V_8
IL_830c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8311: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8316: stloc.s V_8
IL_8318: ldloc.s V_10
IL_831a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_831f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8324: stloc.s V_9
IL_8326: ldloc.s V_10
IL_8328: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_832d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8332: stloc.s V_10
IL_8334: ldloc.s V_9
IL_8336: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_833b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8340: stloc.s V_10
IL_8342: br.s IL_838a
IL_8344: ldloc.s V_8
IL_8346: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_834b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8350: stloc.s V_6
IL_8352: ldloc.s V_8
IL_8354: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8359: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_835e: stloc.s V_6
IL_8360: ldloc.s V_7
IL_8362: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8367: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_836c: stloc.s V_7
IL_836e: ldloc.s V_8
IL_8370: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8375: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_837a: stloc.s V_6
IL_837c: ldloc.s V_9
IL_837e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8383: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8388: stloc.s V_10
IL_838a: ldloc.s V_9
IL_838c: ldloc.s V_8
IL_838e: ble.s IL_83d8
IL_8390: ldloc.s V_9
IL_8392: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8397: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_839c: stloc.s V_8
IL_839e: ldloc.s V_8
IL_83a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_83aa: stloc.s V_9
IL_83ac: ldloc.s V_9
IL_83ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_83b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_83b8: stloc.s V_8
IL_83ba: ldloc.s V_8
IL_83bc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_83c1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_83c6: stloc.s V_10
IL_83c8: ldloc.s V_8
IL_83ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_83d4: stloc.s V_10
IL_83d6: br.s IL_841e
IL_83d8: ldloc.s V_8
IL_83da: call string [mscorlib]System.Convert::ToString(int32)
IL_83df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_83e4: stloc.s V_8
IL_83e6: ldloc.s V_10
IL_83e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_83f2: stloc.s V_8
IL_83f4: ldloc.s V_7
IL_83f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_83fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8400: stloc.s V_7
IL_8402: ldloc.s V_9
IL_8404: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8409: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_840e: stloc.s V_9
IL_8410: ldloc.s V_9
IL_8412: call string [mscorlib]System.Convert::ToString(int32)
IL_8417: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_841c: stloc.s V_6
IL_841e: ldloc.s V_10
IL_8420: ldloc.s V_8
IL_8422: bge.s IL_846c
IL_8424: ldloc.s V_8
IL_8426: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_842b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8430: stloc.s V_7
IL_8432: ldloc.s V_8
IL_8434: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8439: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_843e: stloc.s V_6
IL_8440: ldloc.s V_6
IL_8442: call string [mscorlib]System.Convert::ToString(int32)
IL_8447: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_844c: stloc.s V_10
IL_844e: ldloc.s V_10
IL_8450: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8455: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_845a: stloc.s V_10
IL_845c: ldloc.s V_6
IL_845e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8463: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8468: stloc.s V_9
IL_846a: br.s IL_84b2
IL_846c: ldloc.s V_8
IL_846e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8473: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8478: stloc.s V_6
IL_847a: ldloc.s V_7
IL_847c: call string [mscorlib]System.Convert::ToString(int32)
IL_8481: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8486: stloc.s V_6
IL_8488: ldloc.s V_7
IL_848a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_848f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8494: stloc.s V_9
IL_8496: ldloc.s V_9
IL_8498: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_849d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_84a2: stloc.s V_7
IL_84a4: ldloc.s V_9
IL_84a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84b0: stloc.s V_10
IL_84b2: ldloc.s V_8
IL_84b4: ldloc.s V_8
IL_84b6: beq.s IL_8500
IL_84b8: ldloc.s V_10
IL_84ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84c4: stloc.s V_6
IL_84c6: ldloc.s V_8
IL_84c8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84cd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84d2: stloc.s V_6
IL_84d4: ldloc.s V_8
IL_84d6: call string [mscorlib]System.Convert::ToString(int32)
IL_84db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_84e0: stloc.s V_6
IL_84e2: ldloc.s V_9
IL_84e4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_84e9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_84ee: stloc.s V_10
IL_84f0: ldloc.s V_10
IL_84f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_84f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_84fc: stloc.s V_8
IL_84fe: br.s IL_8546
IL_8500: ldloc.s V_7
IL_8502: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8507: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_850c: stloc.s V_8
IL_850e: ldloc.s V_7
IL_8510: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8515: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_851a: stloc.s V_7
IL_851c: ldloc.s V_6
IL_851e: call string [mscorlib]System.Convert::ToString(int32)
IL_8523: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8528: stloc.s V_6
IL_852a: ldloc.s V_7
IL_852c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8531: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8536: stloc.s V_6
IL_8538: ldloc.s V_7
IL_853a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_853f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8544: stloc.s V_9
IL_8546: ldloc.s V_6
IL_8548: ldloc.s V_10
IL_854a: bge.s IL_8594
IL_854c: ldloc.s V_10
IL_854e: call string [mscorlib]System.Convert::ToString(int32)
IL_8553: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8558: stloc.s V_7
IL_855a: ldloc.s V_6
IL_855c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8561: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8566: stloc.s V_7
IL_8568: ldloc.s V_10
IL_856a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_856f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8574: stloc.s V_6
IL_8576: ldloc.s V_10
IL_8578: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_857d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8582: stloc.s V_9
IL_8584: ldloc.s V_6
IL_8586: call string [mscorlib]System.Convert::ToString(int32)
IL_858b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8590: stloc.s V_9
IL_8592: br.s IL_85da
IL_8594: ldloc.s V_7
IL_8596: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_859b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_85a0: stloc.s V_9
IL_85a2: ldloc.s V_7
IL_85a4: call string [mscorlib]System.Convert::ToString(int32)
IL_85a9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_85ae: stloc.s V_8
IL_85b0: ldloc.s V_9
IL_85b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_85b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_85bc: stloc.s V_6
IL_85be: ldloc.s V_8
IL_85c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_85c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_85ca: stloc.s V_9
IL_85cc: ldloc.s V_8
IL_85ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_85d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_85d8: stloc.s V_6
IL_85da: ldloc.s V_9
IL_85dc: ldloc.s V_7
IL_85de: bge.s IL_8628
IL_85e0: ldloc.s V_7
IL_85e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_85e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_85ec: stloc.s V_9
IL_85ee: ldloc.s V_6
IL_85f0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_85f5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_85fa: stloc.s V_6
IL_85fc: ldloc.s V_6
IL_85fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8603: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8608: stloc.s V_6
IL_860a: ldloc.s V_10
IL_860c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8611: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8616: stloc.s V_7
IL_8618: ldloc.s V_6
IL_861a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_861f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8624: stloc.s V_7
IL_8626: br.s IL_866e
IL_8628: ldloc.s V_9
IL_862a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_862f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8634: stloc.s V_6
IL_8636: ldloc.s V_8
IL_8638: call string [mscorlib]System.Convert::ToString(int32)
IL_863d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8642: stloc.s V_10
IL_8644: ldloc.s V_9
IL_8646: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_864b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8650: stloc.s V_8
IL_8652: ldloc.s V_10
IL_8654: call string [mscorlib]System.Convert::ToString(int32)
IL_8659: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_865e: stloc.s V_6
IL_8660: ldloc.s V_9
IL_8662: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8667: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_866c: stloc.s V_8
IL_866e: ldloc.s V_8
IL_8670: ldloc.s V_6
IL_8672: blt.s IL_86bc
IL_8674: ldloc.s V_8
IL_8676: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_867b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8680: stloc.s V_8
IL_8682: ldloc.s V_7
IL_8684: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8689: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_868e: stloc.s V_10
IL_8690: ldloc.s V_8
IL_8692: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8697: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_869c: stloc.s V_7
IL_869e: ldloc.s V_9
IL_86a0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_86a5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_86aa: stloc.s V_7
IL_86ac: ldloc.s V_8
IL_86ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_86b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_86b8: stloc.s V_10
IL_86ba: br.s IL_8702
IL_86bc: ldloc.s V_8
IL_86be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_86c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_86c8: stloc.s V_7
IL_86ca: ldloc.s V_10
IL_86cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_86d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_86d6: stloc.s V_10
IL_86d8: ldloc.s V_10
IL_86da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_86df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_86e4: stloc.s V_10
IL_86e6: ldloc.s V_8
IL_86e8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_86ed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_86f2: stloc.s V_8
IL_86f4: ldloc.s V_6
IL_86f6: call string [mscorlib]System.Convert::ToString(int32)
IL_86fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8700: stloc.s V_6
IL_8702: ldloc.s V_10
IL_8704: ldloc.s V_9
IL_8706: bge.s IL_8750
IL_8708: ldloc.s V_8
IL_870a: call string [mscorlib]System.Convert::ToString(int32)
IL_870f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8714: stloc.s V_9
IL_8716: ldloc.s V_6
IL_8718: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_871d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8722: stloc.s V_9
IL_8724: ldloc.s V_7
IL_8726: call string [mscorlib]System.Convert::ToString(int32)
IL_872b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8730: stloc.s V_7
IL_8732: ldloc.s V_7
IL_8734: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8739: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_873e: stloc.s V_10
IL_8740: ldloc.s V_7
IL_8742: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8747: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_874c: stloc.s V_10
IL_874e: br.s IL_8796
IL_8750: ldloc.s V_10
IL_8752: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8757: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_875c: stloc.s V_7
IL_875e: ldloc.s V_6
IL_8760: call string [mscorlib]System.Convert::ToString(int32)
IL_8765: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_876a: stloc.s V_7
IL_876c: ldloc.s V_9
IL_876e: call string [mscorlib]System.Convert::ToString(int32)
IL_8773: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8778: stloc.s V_7
IL_877a: ldloc.s V_10
IL_877c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8781: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8786: stloc.s V_9
IL_8788: ldloc.s V_10
IL_878a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_878f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8794: stloc.s V_10
IL_8796: ldloc.s V_10
IL_8798: ldloc.s V_6
IL_879a: blt.s IL_87e4
IL_879c: ldloc.s V_9
IL_879e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_87a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_87a8: stloc.s V_10
IL_87aa: ldloc.s V_9
IL_87ac: call string [mscorlib]System.Convert::ToString(int32)
IL_87b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_87b6: stloc.s V_6
IL_87b8: ldloc.s V_10
IL_87ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_87bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_87c4: stloc.s V_7
IL_87c6: ldloc.s V_10
IL_87c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_87cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_87d2: stloc.s V_8
IL_87d4: ldloc.s V_8
IL_87d6: call string [mscorlib]System.Convert::ToString(int32)
IL_87db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_87e0: stloc.s V_9
IL_87e2: br.s IL_882a
IL_87e4: ldloc.s V_7
IL_87e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_87eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_87f0: stloc.s V_6
IL_87f2: ldloc.s V_6
IL_87f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_87f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_87fe: stloc.s V_6
IL_8800: ldloc.s V_6
IL_8802: call string [mscorlib]System.Convert::ToString(int32)
IL_8807: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_880c: stloc.s V_9
IL_880e: ldloc.s V_10
IL_8810: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8815: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_881a: stloc.s V_9
IL_881c: ldloc.s V_7
IL_881e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8823: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8828: stloc.s V_7
IL_882a: ldloc.s V_7
IL_882c: ldloc.s V_7
IL_882e: bgt.s IL_8878
IL_8830: ldloc.s V_7
IL_8832: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8837: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_883c: stloc.s V_7
IL_883e: ldloc.s V_8
IL_8840: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8845: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_884a: stloc.s V_8
IL_884c: ldloc.s V_6
IL_884e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8853: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8858: stloc.s V_7
IL_885a: ldloc.s V_8
IL_885c: call string [mscorlib]System.Convert::ToString(int32)
IL_8861: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8866: stloc.s V_6
IL_8868: ldloc.s V_10
IL_886a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_886f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8874: stloc.s V_10
IL_8876: br.s IL_88be
IL_8878: ldloc.s V_8
IL_887a: call string [mscorlib]System.Convert::ToString(int32)
IL_887f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8884: stloc.s V_7
IL_8886: ldloc.s V_10
IL_8888: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_888d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8892: stloc.s V_8
IL_8894: ldloc.s V_8
IL_8896: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_889b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_88a0: stloc.s V_10
IL_88a2: ldloc.s V_9
IL_88a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_88a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_88ae: stloc.s V_8
IL_88b0: ldloc.s V_10
IL_88b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_88b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_88bc: stloc.s V_9
IL_88be: ldloc.s V_6
IL_88c0: ldloc.s V_9
IL_88c2: bgt.s IL_890c
IL_88c4: ldloc.s V_8
IL_88c6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_88cb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_88d0: stloc.s V_9
IL_88d2: ldloc.s V_8
IL_88d4: call string [mscorlib]System.Convert::ToString(int32)
IL_88d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_88de: stloc.s V_7
IL_88e0: ldloc.s V_10
IL_88e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_88e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_88ec: stloc.s V_10
IL_88ee: ldloc.s V_10
IL_88f0: call string [mscorlib]System.Convert::ToString(int32)
IL_88f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_88fa: stloc.s V_10
IL_88fc: ldloc.s V_6
IL_88fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8903: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8908: stloc.s V_8
IL_890a: br.s IL_8952
IL_890c: ldloc.s V_10
IL_890e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8913: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8918: stloc.s V_6
IL_891a: ldloc.s V_6
IL_891c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8921: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8926: stloc.s V_10
IL_8928: ldloc.s V_10
IL_892a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_892f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8934: stloc.s V_7
IL_8936: ldloc.s V_10
IL_8938: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_893d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8942: stloc.s V_9
IL_8944: ldloc.s V_6
IL_8946: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_894b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8950: stloc.s V_10
IL_8952: ldloc.s V_9
IL_8954: ldloc.s V_9
IL_8956: bge.s IL_89a0
IL_8958: ldloc.s V_9
IL_895a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_895f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8964: stloc.s V_10
IL_8966: ldloc.s V_6
IL_8968: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_896d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8972: stloc.s V_7
IL_8974: ldloc.s V_7
IL_8976: call string [mscorlib]System.Convert::ToString(int32)
IL_897b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8980: stloc.s V_10
IL_8982: ldloc.s V_9
IL_8984: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8989: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_898e: stloc.s V_6
IL_8990: ldloc.s V_8
IL_8992: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8997: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_899c: stloc.s V_9
IL_899e: br.s IL_89e6
IL_89a0: ldloc.s V_6
IL_89a2: call string [mscorlib]System.Convert::ToString(int32)
IL_89a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89ac: stloc.s V_9
IL_89ae: ldloc.s V_6
IL_89b0: call string [mscorlib]System.Convert::ToString(int32)
IL_89b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89ba: stloc.s V_6
IL_89bc: ldloc.s V_10
IL_89be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_89c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_89c8: stloc.s V_8
IL_89ca: ldloc.s V_9
IL_89cc: call string [mscorlib]System.Convert::ToString(int32)
IL_89d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89d6: stloc.s V_9
IL_89d8: ldloc.s V_8
IL_89da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_89df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_89e4: stloc.s V_8
IL_89e6: ldloc.s V_10
IL_89e8: ldloc.s V_10
IL_89ea: beq.s IL_8a34
IL_89ec: ldloc.s V_9
IL_89ee: call string [mscorlib]System.Convert::ToString(int32)
IL_89f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_89f8: stloc.s V_6
IL_89fa: ldloc.s V_9
IL_89fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a01: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a06: stloc.s V_8
IL_8a08: ldloc.s V_7
IL_8a0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a14: stloc.s V_9
IL_8a16: ldloc.s V_8
IL_8a18: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8a1d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8a22: stloc.s V_10
IL_8a24: ldloc.s V_10
IL_8a26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a30: stloc.s V_7
IL_8a32: br.s IL_8a7a
IL_8a34: ldloc.s V_10
IL_8a36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8a3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8a40: stloc.s V_8
IL_8a42: ldloc.s V_10
IL_8a44: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8a49: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8a4e: stloc.s V_10
IL_8a50: ldloc.s V_10
IL_8a52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8a57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8a5c: stloc.s V_9
IL_8a5e: ldloc.s V_8
IL_8a60: call string [mscorlib]System.Convert::ToString(int32)
IL_8a65: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8a6a: stloc.s V_9
IL_8a6c: ldloc.s V_9
IL_8a6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8a73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8a78: stloc.s V_7
IL_8a7a: ldloc.s V_7
IL_8a7c: ldloc.s V_6
IL_8a7e: bne.un.s IL_8ac8
IL_8a80: ldloc.s V_7
IL_8a82: call string [mscorlib]System.Convert::ToString(int32)
IL_8a87: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8a8c: stloc.s V_9
IL_8a8e: ldloc.s V_10
IL_8a90: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8a95: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8a9a: stloc.s V_9
IL_8a9c: ldloc.s V_9
IL_8a9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8aa3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8aa8: stloc.s V_8
IL_8aaa: ldloc.s V_6
IL_8aac: call string [mscorlib]System.Convert::ToString(int32)
IL_8ab1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8ab6: stloc.s V_9
IL_8ab8: ldloc.s V_9
IL_8aba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8abf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8ac4: stloc.s V_8
IL_8ac6: br.s IL_8b0e
IL_8ac8: ldloc.s V_10
IL_8aca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8acf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8ad4: stloc.s V_9
IL_8ad6: ldloc.s V_10
IL_8ad8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8add: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8ae2: stloc.s V_8
IL_8ae4: ldloc.s V_8
IL_8ae6: call string [mscorlib]System.Convert::ToString(int32)
IL_8aeb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8af0: stloc.s V_10
IL_8af2: ldloc.s V_6
IL_8af4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8af9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8afe: stloc.s V_10
IL_8b00: ldloc.s V_8
IL_8b02: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8b07: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8b0c: stloc.s V_7
IL_8b0e: ldloc.s V_6
IL_8b10: ldloc.s V_6
IL_8b12: bne.un.s IL_8b5c
IL_8b14: ldloc.s V_7
IL_8b16: call string [mscorlib]System.Convert::ToString(int32)
IL_8b1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b20: stloc.s V_8
IL_8b22: ldloc.s V_10
IL_8b24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8b29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8b2e: stloc.s V_9
IL_8b30: ldloc.s V_8
IL_8b32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8b37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8b3c: stloc.s V_6
IL_8b3e: ldloc.s V_8
IL_8b40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8b45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8b4a: stloc.s V_7
IL_8b4c: ldloc.s V_7
IL_8b4e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8b53: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8b58: stloc.s V_9
IL_8b5a: br.s IL_8ba2
IL_8b5c: ldloc.s V_8
IL_8b5e: call string [mscorlib]System.Convert::ToString(int32)
IL_8b63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b68: stloc.s V_9
IL_8b6a: ldloc.s V_7
IL_8b6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8b71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8b76: stloc.s V_10
IL_8b78: ldloc.s V_6
IL_8b7a: call string [mscorlib]System.Convert::ToString(int32)
IL_8b7f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b84: stloc.s V_7
IL_8b86: ldloc.s V_8
IL_8b88: call string [mscorlib]System.Convert::ToString(int32)
IL_8b8d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8b92: stloc.s V_9
IL_8b94: ldloc.s V_6
IL_8b96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8b9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8ba0: stloc.s V_10
IL_8ba2: ldloc.s V_10
IL_8ba4: ldloc.s V_9
IL_8ba6: bge.s IL_8bf0
IL_8ba8: ldloc.s V_10
IL_8baa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8baf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8bb4: stloc.s V_6
IL_8bb6: ldloc.s V_6
IL_8bb8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8bbd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8bc2: stloc.s V_8
IL_8bc4: ldloc.s V_8
IL_8bc6: call string [mscorlib]System.Convert::ToString(int32)
IL_8bcb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8bd0: stloc.s V_10
IL_8bd2: ldloc.s V_8
IL_8bd4: call string [mscorlib]System.Convert::ToString(int32)
IL_8bd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8bde: stloc.s V_7
IL_8be0: ldloc.s V_9
IL_8be2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8be7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8bec: stloc.s V_10
IL_8bee: br.s IL_8c36
IL_8bf0: ldloc.s V_9
IL_8bf2: call string [mscorlib]System.Convert::ToString(int32)
IL_8bf7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8bfc: stloc.s V_9
IL_8bfe: ldloc.s V_10
IL_8c00: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c05: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c0a: stloc.s V_10
IL_8c0c: ldloc.s V_10
IL_8c0e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8c13: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8c18: stloc.s V_9
IL_8c1a: ldloc.s V_6
IL_8c1c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c21: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c26: stloc.s V_7
IL_8c28: ldloc.s V_8
IL_8c2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8c2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8c34: stloc.s V_8
IL_8c36: ldloc.s V_10
IL_8c38: ldloc.s V_6
IL_8c3a: blt.s IL_8c84
IL_8c3c: ldloc.s V_10
IL_8c3e: call string [mscorlib]System.Convert::ToString(int32)
IL_8c43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8c48: stloc.s V_10
IL_8c4a: ldloc.s V_8
IL_8c4c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8c51: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8c56: stloc.s V_8
IL_8c58: ldloc.s V_9
IL_8c5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c64: stloc.s V_8
IL_8c66: ldloc.s V_10
IL_8c68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c72: stloc.s V_9
IL_8c74: ldloc.s V_8
IL_8c76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8c7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8c80: stloc.s V_8
IL_8c82: br.s IL_8cca
IL_8c84: ldloc.s V_7
IL_8c86: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8c8b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8c90: stloc.s V_9
IL_8c92: ldloc.s V_6
IL_8c94: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8c99: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8c9e: stloc.s V_7
IL_8ca0: ldloc.s V_10
IL_8ca2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8ca7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cac: stloc.s V_9
IL_8cae: ldloc.s V_7
IL_8cb0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8cb5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8cba: stloc.s V_6
IL_8cbc: ldloc.s V_7
IL_8cbe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8cc3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cc8: stloc.s V_10
IL_8cca: ldloc.s V_10
IL_8ccc: ldloc.s V_9
IL_8cce: ble.s IL_8d18
IL_8cd0: ldloc.s V_8
IL_8cd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8cd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8cdc: stloc.s V_8
IL_8cde: ldloc.s V_7
IL_8ce0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8ce5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cea: stloc.s V_9
IL_8cec: ldloc.s V_10
IL_8cee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8cf3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8cf8: stloc.s V_7
IL_8cfa: ldloc.s V_7
IL_8cfc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d06: stloc.s V_7
IL_8d08: ldloc.s V_6
IL_8d0a: call string [mscorlib]System.Convert::ToString(int32)
IL_8d0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d14: stloc.s V_10
IL_8d16: br.s IL_8d5e
IL_8d18: ldloc.s V_6
IL_8d1a: call string [mscorlib]System.Convert::ToString(int32)
IL_8d1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d24: stloc.s V_9
IL_8d26: ldloc.s V_8
IL_8d28: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d2d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d32: stloc.s V_6
IL_8d34: ldloc.s V_8
IL_8d36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d40: stloc.s V_6
IL_8d42: ldloc.s V_6
IL_8d44: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8d49: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8d4e: stloc.s V_6
IL_8d50: ldloc.s V_8
IL_8d52: call string [mscorlib]System.Convert::ToString(int32)
IL_8d57: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d5c: stloc.s V_7
IL_8d5e: ldloc.s V_8
IL_8d60: ldloc.s V_6
IL_8d62: blt.s IL_8dac
IL_8d64: ldloc.s V_9
IL_8d66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d70: stloc.s V_6
IL_8d72: ldloc.s V_9
IL_8d74: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d79: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d7e: stloc.s V_6
IL_8d80: ldloc.s V_6
IL_8d82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8d87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8d8c: stloc.s V_6
IL_8d8e: ldloc.s V_6
IL_8d90: call string [mscorlib]System.Convert::ToString(int32)
IL_8d95: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8d9a: stloc.s V_6
IL_8d9c: ldloc.s V_8
IL_8d9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8da3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8da8: stloc.s V_9
IL_8daa: br.s IL_8df2
IL_8dac: ldloc.s V_9
IL_8dae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8db3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8db8: stloc.s V_7
IL_8dba: ldloc.s V_9
IL_8dbc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8dc1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8dc6: stloc.s V_6
IL_8dc8: ldloc.s V_6
IL_8dca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8dcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8dd4: stloc.s V_7
IL_8dd6: ldloc.s V_10
IL_8dd8: call string [mscorlib]System.Convert::ToString(int32)
IL_8ddd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8de2: stloc.s V_6
IL_8de4: ldloc.s V_9
IL_8de6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8deb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8df0: stloc.s V_6
IL_8df2: ldloc.s V_10
IL_8df4: ldloc.s V_8
IL_8df6: bgt.s IL_8e40
IL_8df8: ldloc.s V_9
IL_8dfa: call string [mscorlib]System.Convert::ToString(int32)
IL_8dff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8e04: stloc.s V_6
IL_8e06: ldloc.s V_9
IL_8e08: call string [mscorlib]System.Convert::ToString(int32)
IL_8e0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8e12: stloc.s V_7
IL_8e14: ldloc.s V_10
IL_8e16: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e1b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e20: stloc.s V_7
IL_8e22: ldloc.s V_8
IL_8e24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e2e: stloc.s V_7
IL_8e30: ldloc.s V_7
IL_8e32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8e37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8e3c: stloc.s V_7
IL_8e3e: br.s IL_8e86
IL_8e40: ldloc.s V_7
IL_8e42: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e47: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e4c: stloc.s V_9
IL_8e4e: ldloc.s V_7
IL_8e50: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8e55: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8e5a: stloc.s V_9
IL_8e5c: ldloc.s V_9
IL_8e5e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e63: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e68: stloc.s V_7
IL_8e6a: ldloc.s V_7
IL_8e6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8e71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8e76: stloc.s V_8
IL_8e78: ldloc.s V_6
IL_8e7a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8e7f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8e84: stloc.s V_10
IL_8e86: ldloc.s V_8
IL_8e88: ldloc.s V_9
IL_8e8a: blt.s IL_8ed4
IL_8e8c: ldloc.s V_8
IL_8e8e: call string [mscorlib]System.Convert::ToString(int32)
IL_8e93: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8e98: stloc.s V_8
IL_8e9a: ldloc.s V_9
IL_8e9c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ea1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8ea6: stloc.s V_9
IL_8ea8: ldloc.s V_6
IL_8eaa: call string [mscorlib]System.Convert::ToString(int32)
IL_8eaf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8eb4: stloc.s V_6
IL_8eb6: ldloc.s V_8
IL_8eb8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ebd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8ec2: stloc.s V_9
IL_8ec4: ldloc.s V_7
IL_8ec6: call string [mscorlib]System.Convert::ToString(int32)
IL_8ecb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8ed0: stloc.s V_8
IL_8ed2: br.s IL_8f1a
IL_8ed4: ldloc.s V_6
IL_8ed6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8edb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8ee0: stloc.s V_9
IL_8ee2: ldloc.s V_9
IL_8ee4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ee9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8eee: stloc.s V_7
IL_8ef0: ldloc.s V_10
IL_8ef2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8ef7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8efc: stloc.s V_7
IL_8efe: ldloc.s V_8
IL_8f00: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8f05: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8f0a: stloc.s V_10
IL_8f0c: ldloc.s V_6
IL_8f0e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8f13: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8f18: stloc.s V_7
IL_8f1a: ldloc.s V_10
IL_8f1c: ldloc.s V_8
IL_8f1e: bne.un.s IL_8f68
IL_8f20: ldloc.s V_10
IL_8f22: call string [mscorlib]System.Convert::ToString(int32)
IL_8f27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8f2c: stloc.s V_10
IL_8f2e: ldloc.s V_6
IL_8f30: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8f35: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8f3a: stloc.s V_9
IL_8f3c: ldloc.s V_8
IL_8f3e: call string [mscorlib]System.Convert::ToString(int32)
IL_8f43: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8f48: stloc.s V_9
IL_8f4a: ldloc.s V_10
IL_8f4c: call string [mscorlib]System.Convert::ToString(int32)
IL_8f51: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8f56: stloc.s V_6
IL_8f58: ldloc.s V_7
IL_8f5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8f5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8f64: stloc.s V_7
IL_8f66: br.s IL_8fae
IL_8f68: ldloc.s V_7
IL_8f6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8f6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8f74: stloc.s V_6
IL_8f76: ldloc.s V_9
IL_8f78: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8f7d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8f82: stloc.s V_6
IL_8f84: ldloc.s V_9
IL_8f86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_8f8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_8f90: stloc.s V_10
IL_8f92: ldloc.s V_6
IL_8f94: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8f99: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8f9e: stloc.s V_9
IL_8fa0: ldloc.s V_7
IL_8fa2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8fa7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8fac: stloc.s V_7
IL_8fae: ldloc.s V_10
IL_8fb0: ldloc.s V_10
IL_8fb2: ble.s IL_8ffc
IL_8fb4: ldloc.s V_6
IL_8fb6: call string [mscorlib]System.Convert::ToString(int32)
IL_8fbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8fc0: stloc.s V_10
IL_8fc2: ldloc.s V_8
IL_8fc4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_8fc9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_8fce: stloc.s V_8
IL_8fd0: ldloc.s V_7
IL_8fd2: call string [mscorlib]System.Convert::ToString(int32)
IL_8fd7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8fdc: stloc.s V_6
IL_8fde: ldloc.s V_7
IL_8fe0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_8fe5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_8fea: stloc.s V_6
IL_8fec: ldloc.s V_9
IL_8fee: call string [mscorlib]System.Convert::ToString(int32)
IL_8ff3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_8ff8: stloc.s V_10
IL_8ffa: br.s IL_9042
IL_8ffc: ldloc.s V_7
IL_8ffe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9003: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9008: stloc.s V_6
IL_900a: ldloc.s V_10
IL_900c: call string [mscorlib]System.Convert::ToString(int32)
IL_9011: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9016: stloc.s V_9
IL_9018: ldloc.s V_7
IL_901a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_901f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9024: stloc.s V_9
IL_9026: ldloc.s V_6
IL_9028: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_902d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9032: stloc.s V_7
IL_9034: ldloc.s V_10
IL_9036: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_903b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9040: stloc.s V_10
IL_9042: ldloc.s V_6
IL_9044: ldloc.s V_8
IL_9046: bge.s IL_9090
IL_9048: ldloc.s V_8
IL_904a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_904f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9054: stloc.s V_10
IL_9056: ldloc.s V_7
IL_9058: call string [mscorlib]System.Convert::ToString(int32)
IL_905d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9062: stloc.s V_7
IL_9064: ldloc.s V_7
IL_9066: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_906b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9070: stloc.s V_10
IL_9072: ldloc.s V_7
IL_9074: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9079: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_907e: stloc.s V_8
IL_9080: ldloc.s V_6
IL_9082: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9087: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_908c: stloc.s V_7
IL_908e: br.s IL_90d6
IL_9090: ldloc.s V_8
IL_9092: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9097: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_909c: stloc.s V_8
IL_909e: ldloc.s V_7
IL_90a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_90a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_90aa: stloc.s V_6
IL_90ac: ldloc.s V_9
IL_90ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_90b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_90b8: stloc.s V_6
IL_90ba: ldloc.s V_10
IL_90bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_90c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_90c6: stloc.s V_9
IL_90c8: ldloc.s V_7
IL_90ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_90cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_90d4: stloc.s V_8
IL_90d6: ldloc.s V_10
IL_90d8: ldloc.s V_10
IL_90da: blt.s IL_9124
IL_90dc: ldloc.s V_8
IL_90de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_90e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_90e8: stloc.s V_9
IL_90ea: ldloc.s V_9
IL_90ec: call string [mscorlib]System.Convert::ToString(int32)
IL_90f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_90f6: stloc.s V_6
IL_90f8: ldloc.s V_9
IL_90fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_90ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9104: stloc.s V_10
IL_9106: ldloc.s V_6
IL_9108: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_910d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9112: stloc.s V_8
IL_9114: ldloc.s V_7
IL_9116: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_911b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9120: stloc.s V_6
IL_9122: br.s IL_916a
IL_9124: ldloc.s V_6
IL_9126: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_912b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9130: stloc.s V_6
IL_9132: ldloc.s V_9
IL_9134: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9139: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_913e: stloc.s V_7
IL_9140: ldloc.s V_6
IL_9142: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9147: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_914c: stloc.s V_7
IL_914e: ldloc.s V_7
IL_9150: call string [mscorlib]System.Convert::ToString(int32)
IL_9155: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_915a: stloc.s V_10
IL_915c: ldloc.s V_10
IL_915e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9163: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9168: stloc.s V_7
IL_916a: ldloc.s V_6
IL_916c: ldloc.s V_10
IL_916e: ble.s IL_91b8
IL_9170: ldloc.s V_9
IL_9172: call string [mscorlib]System.Convert::ToString(int32)
IL_9177: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_917c: stloc.s V_8
IL_917e: ldloc.s V_8
IL_9180: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9185: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_918a: stloc.s V_9
IL_918c: ldloc.s V_8
IL_918e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9193: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9198: stloc.s V_10
IL_919a: ldloc.s V_10
IL_919c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91a1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91a6: stloc.s V_8
IL_91a8: ldloc.s V_8
IL_91aa: call string [mscorlib]System.Convert::ToString(int32)
IL_91af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_91b4: stloc.s V_8
IL_91b6: br.s IL_91fe
IL_91b8: ldloc.s V_9
IL_91ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91c4: stloc.s V_9
IL_91c6: ldloc.s V_9
IL_91c8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_91cd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_91d2: stloc.s V_7
IL_91d4: ldloc.s V_6
IL_91d6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91db: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91e0: stloc.s V_7
IL_91e2: ldloc.s V_6
IL_91e4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_91e9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_91ee: stloc.s V_7
IL_91f0: ldloc.s V_8
IL_91f2: call string [mscorlib]System.Convert::ToString(int32)
IL_91f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_91fc: stloc.s V_7
IL_91fe: ldloc.s V_8
IL_9200: ldloc.s V_7
IL_9202: bne.un.s IL_924c
IL_9204: ldloc.s V_6
IL_9206: call string [mscorlib]System.Convert::ToString(int32)
IL_920b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9210: stloc.s V_6
IL_9212: ldloc.s V_7
IL_9214: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9219: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_921e: stloc.s V_8
IL_9220: ldloc.s V_6
IL_9222: call string [mscorlib]System.Convert::ToString(int32)
IL_9227: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_922c: stloc.s V_8
IL_922e: ldloc.s V_8
IL_9230: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9235: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_923a: stloc.s V_7
IL_923c: ldloc.s V_6
IL_923e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9243: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9248: stloc.s V_6
IL_924a: br.s IL_9292
IL_924c: ldloc.s V_6
IL_924e: call string [mscorlib]System.Convert::ToString(int32)
IL_9253: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9258: stloc.s V_10
IL_925a: ldloc.s V_10
IL_925c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9261: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9266: stloc.s V_7
IL_9268: ldloc.s V_7
IL_926a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_926f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9274: stloc.s V_7
IL_9276: ldloc.s V_10
IL_9278: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_927d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9282: stloc.s V_9
IL_9284: ldloc.s V_8
IL_9286: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_928b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9290: stloc.s V_8
IL_9292: ldloc.s V_10
IL_9294: ldloc.s V_10
IL_9296: beq.s IL_92e0
IL_9298: ldloc.s V_6
IL_929a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_929f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92a4: stloc.s V_9
IL_92a6: ldloc.s V_10
IL_92a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_92ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_92b2: stloc.s V_7
IL_92b4: ldloc.s V_9
IL_92b6: call string [mscorlib]System.Convert::ToString(int32)
IL_92bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_92c0: stloc.s V_7
IL_92c2: ldloc.s V_8
IL_92c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_92c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_92ce: stloc.s V_8
IL_92d0: ldloc.s V_10
IL_92d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_92d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92dc: stloc.s V_9
IL_92de: br.s IL_9326
IL_92e0: ldloc.s V_10
IL_92e2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_92e7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92ec: stloc.s V_10
IL_92ee: ldloc.s V_9
IL_92f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_92f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_92fa: stloc.s V_8
IL_92fc: ldloc.s V_7
IL_92fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9303: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9308: stloc.s V_7
IL_930a: ldloc.s V_7
IL_930c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9311: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9316: stloc.s V_9
IL_9318: ldloc.s V_6
IL_931a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_931f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9324: stloc.s V_7
IL_9326: ldloc.s V_7
IL_9328: ldloc.s V_10
IL_932a: bne.un.s IL_9374
IL_932c: ldloc.s V_10
IL_932e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9333: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9338: stloc.s V_8
IL_933a: ldloc.s V_9
IL_933c: call string [mscorlib]System.Convert::ToString(int32)
IL_9341: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9346: stloc.s V_6
IL_9348: ldloc.s V_6
IL_934a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_934f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9354: stloc.s V_7
IL_9356: ldloc.s V_7
IL_9358: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_935d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9362: stloc.s V_7
IL_9364: ldloc.s V_10
IL_9366: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_936b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9370: stloc.s V_10
IL_9372: br.s IL_93ba
IL_9374: ldloc.s V_6
IL_9376: call string [mscorlib]System.Convert::ToString(int32)
IL_937b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9380: stloc.s V_10
IL_9382: ldloc.s V_7
IL_9384: call string [mscorlib]System.Convert::ToString(int32)
IL_9389: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_938e: stloc.s V_8
IL_9390: ldloc.s V_8
IL_9392: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9397: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_939c: stloc.s V_6
IL_939e: ldloc.s V_7
IL_93a0: call string [mscorlib]System.Convert::ToString(int32)
IL_93a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_93aa: stloc.s V_9
IL_93ac: ldloc.s V_8
IL_93ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93b8: stloc.s V_8
IL_93ba: ldloc.s V_9
IL_93bc: ldloc.s V_9
IL_93be: bgt.s IL_9408
IL_93c0: ldloc.s V_6
IL_93c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93cc: stloc.s V_8
IL_93ce: ldloc.s V_9
IL_93d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_93d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_93da: stloc.s V_10
IL_93dc: ldloc.s V_8
IL_93de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93e8: stloc.s V_7
IL_93ea: ldloc.s V_6
IL_93ec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_93f1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_93f6: stloc.s V_9
IL_93f8: ldloc.s V_9
IL_93fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_93ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9404: stloc.s V_6
IL_9406: br.s IL_944e
IL_9408: ldloc.s V_9
IL_940a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_940f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9414: stloc.s V_8
IL_9416: ldloc.s V_9
IL_9418: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_941d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9422: stloc.s V_10
IL_9424: ldloc.s V_10
IL_9426: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_942b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9430: stloc.s V_9
IL_9432: ldloc.s V_6
IL_9434: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9439: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_943e: stloc.s V_8
IL_9440: ldloc.s V_10
IL_9442: call string [mscorlib]System.Convert::ToString(int32)
IL_9447: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_944c: stloc.s V_7
IL_944e: ldloc.s V_9
IL_9450: ldloc.s V_6
IL_9452: bgt.s IL_949c
IL_9454: ldloc.s V_10
IL_9456: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_945b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9460: stloc.s V_8
IL_9462: ldloc.s V_8
IL_9464: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9469: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_946e: stloc.s V_9
IL_9470: ldloc.s V_7
IL_9472: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9477: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_947c: stloc.s V_7
IL_947e: ldloc.s V_7
IL_9480: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9485: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_948a: stloc.s V_10
IL_948c: ldloc.s V_8
IL_948e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9493: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9498: stloc.s V_8
IL_949a: br.s IL_94e2
IL_949c: ldloc.s V_9
IL_949e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_94a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_94a8: stloc.s V_8
IL_94aa: ldloc.s V_8
IL_94ac: call string [mscorlib]System.Convert::ToString(int32)
IL_94b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_94b6: stloc.s V_10
IL_94b8: ldloc.s V_8
IL_94ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_94bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_94c4: stloc.s V_6
IL_94c6: ldloc.s V_8
IL_94c8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_94cd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_94d2: stloc.s V_7
IL_94d4: ldloc.s V_8
IL_94d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_94db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_94e0: stloc.s V_9
IL_94e2: ldloc.s V_6
IL_94e4: ldloc.s V_7
IL_94e6: bne.un.s IL_9530
IL_94e8: ldloc.s V_9
IL_94ea: call string [mscorlib]System.Convert::ToString(int32)
IL_94ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_94f4: stloc.s V_10
IL_94f6: ldloc.s V_7
IL_94f8: call string [mscorlib]System.Convert::ToString(int32)
IL_94fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9502: stloc.s V_10
IL_9504: ldloc.s V_10
IL_9506: call string [mscorlib]System.Convert::ToString(int32)
IL_950b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9510: stloc.s V_6
IL_9512: ldloc.s V_6
IL_9514: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9519: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_951e: stloc.s V_8
IL_9520: ldloc.s V_10
IL_9522: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9527: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_952c: stloc.s V_8
IL_952e: br.s IL_9576
IL_9530: ldloc.s V_8
IL_9532: call string [mscorlib]System.Convert::ToString(int32)
IL_9537: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_953c: stloc.s V_8
IL_953e: ldloc.s V_10
IL_9540: call string [mscorlib]System.Convert::ToString(int32)
IL_9545: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_954a: stloc.s V_6
IL_954c: ldloc.s V_7
IL_954e: call string [mscorlib]System.Convert::ToString(int32)
IL_9553: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9558: stloc.s V_9
IL_955a: ldloc.s V_8
IL_955c: call string [mscorlib]System.Convert::ToString(int32)
IL_9561: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9566: stloc.s V_7
IL_9568: ldloc.s V_7
IL_956a: call string [mscorlib]System.Convert::ToString(int32)
IL_956f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9574: stloc.s V_6
IL_9576: ldloc.s V_6
IL_9578: ldloc.s V_8
IL_957a: bne.un.s IL_95c4
IL_957c: ldloc.s V_10
IL_957e: call string [mscorlib]System.Convert::ToString(int32)
IL_9583: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9588: stloc.s V_6
IL_958a: ldloc.s V_8
IL_958c: call string [mscorlib]System.Convert::ToString(int32)
IL_9591: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9596: stloc.s V_10
IL_9598: ldloc.s V_6
IL_959a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_959f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_95a4: stloc.s V_7
IL_95a6: ldloc.s V_6
IL_95a8: call string [mscorlib]System.Convert::ToString(int32)
IL_95ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_95b2: stloc.s V_8
IL_95b4: ldloc.s V_8
IL_95b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_95bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_95c0: stloc.s V_8
IL_95c2: br.s IL_960a
IL_95c4: ldloc.s V_7
IL_95c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_95cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_95d0: stloc.s V_8
IL_95d2: ldloc.s V_7
IL_95d4: call string [mscorlib]System.Convert::ToString(int32)
IL_95d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_95de: stloc.s V_6
IL_95e0: ldloc.s V_6
IL_95e2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_95e7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_95ec: stloc.s V_8
IL_95ee: ldloc.s V_6
IL_95f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_95f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_95fa: stloc.s V_7
IL_95fc: ldloc.s V_10
IL_95fe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9603: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9608: stloc.s V_9
IL_960a: ldloc.s V_9
IL_960c: ldloc.s V_9
IL_960e: bgt.s IL_9658
IL_9610: ldloc.s V_7
IL_9612: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9617: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_961c: stloc.s V_8
IL_961e: ldloc.s V_6
IL_9620: call string [mscorlib]System.Convert::ToString(int32)
IL_9625: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_962a: stloc.s V_6
IL_962c: ldloc.s V_10
IL_962e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9633: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9638: stloc.s V_10
IL_963a: ldloc.s V_10
IL_963c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9641: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9646: stloc.s V_10
IL_9648: ldloc.s V_10
IL_964a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_964f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9654: stloc.s V_6
IL_9656: br.s IL_969e
IL_9658: ldloc.s V_9
IL_965a: call string [mscorlib]System.Convert::ToString(int32)
IL_965f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9664: stloc.s V_10
IL_9666: ldloc.s V_9
IL_9668: call string [mscorlib]System.Convert::ToString(int32)
IL_966d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9672: stloc.s V_6
IL_9674: ldloc.s V_8
IL_9676: call string [mscorlib]System.Convert::ToString(int32)
IL_967b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9680: stloc.s V_6
IL_9682: ldloc.s V_7
IL_9684: call string [mscorlib]System.Convert::ToString(int32)
IL_9689: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_968e: stloc.s V_9
IL_9690: ldloc.s V_6
IL_9692: call string [mscorlib]System.Convert::ToString(int32)
IL_9697: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_969c: stloc.s V_8
IL_969e: ldloc.s V_6
IL_96a0: ldloc.s V_10
IL_96a2: bge.s IL_96ec
IL_96a4: ldloc.s V_7
IL_96a6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_96ab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_96b0: stloc.s V_8
IL_96b2: ldloc.s V_8
IL_96b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_96b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_96be: stloc.s V_7
IL_96c0: ldloc.s V_9
IL_96c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_96c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_96cc: stloc.s V_7
IL_96ce: ldloc.s V_6
IL_96d0: call string [mscorlib]System.Convert::ToString(int32)
IL_96d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_96da: stloc.s V_8
IL_96dc: ldloc.s V_9
IL_96de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_96e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_96e8: stloc.s V_6
IL_96ea: br.s IL_9732
IL_96ec: ldloc.s V_7
IL_96ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_96f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_96f8: stloc.s V_7
IL_96fa: ldloc.s V_6
IL_96fc: call string [mscorlib]System.Convert::ToString(int32)
IL_9701: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9706: stloc.s V_7
IL_9708: ldloc.s V_10
IL_970a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_970f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9714: stloc.s V_6
IL_9716: ldloc.s V_6
IL_9718: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_971d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9722: stloc.s V_10
IL_9724: ldloc.s V_6
IL_9726: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_972b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9730: stloc.s V_10
IL_9732: ldloc.s V_8
IL_9734: ldloc.s V_6
IL_9736: bne.un.s IL_9780
IL_9738: ldloc.s V_9
IL_973a: call string [mscorlib]System.Convert::ToString(int32)
IL_973f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9744: stloc.s V_6
IL_9746: ldloc.s V_7
IL_9748: call string [mscorlib]System.Convert::ToString(int32)
IL_974d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9752: stloc.s V_8
IL_9754: ldloc.s V_7
IL_9756: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_975b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9760: stloc.s V_6
IL_9762: ldloc.s V_6
IL_9764: call string [mscorlib]System.Convert::ToString(int32)
IL_9769: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_976e: stloc.s V_10
IL_9770: ldloc.s V_7
IL_9772: call string [mscorlib]System.Convert::ToString(int32)
IL_9777: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_977c: stloc.s V_7
IL_977e: br.s IL_97c6
IL_9780: ldloc.s V_10
IL_9782: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9787: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_978c: stloc.s V_8
IL_978e: ldloc.s V_8
IL_9790: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9795: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_979a: stloc.s V_9
IL_979c: ldloc.s V_9
IL_979e: call string [mscorlib]System.Convert::ToString(int32)
IL_97a3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_97a8: stloc.s V_9
IL_97aa: ldloc.s V_6
IL_97ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_97b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_97b6: stloc.s V_8
IL_97b8: ldloc.s V_10
IL_97ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_97bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_97c4: stloc.s V_7
IL_97c6: ldloc.s V_9
IL_97c8: ldloc.s V_6
IL_97ca: bgt.s IL_9814
IL_97cc: ldloc.s V_9
IL_97ce: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_97d3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_97d8: stloc.s V_6
IL_97da: ldloc.s V_6
IL_97dc: call string [mscorlib]System.Convert::ToString(int32)
IL_97e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_97e6: stloc.s V_10
IL_97e8: ldloc.s V_9
IL_97ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_97ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_97f4: stloc.s V_6
IL_97f6: ldloc.s V_9
IL_97f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_97fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9802: stloc.s V_9
IL_9804: ldloc.s V_9
IL_9806: call string [mscorlib]System.Convert::ToString(int32)
IL_980b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9810: stloc.s V_10
IL_9812: br.s IL_985a
IL_9814: ldloc.s V_6
IL_9816: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_981b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9820: stloc.s V_10
IL_9822: ldloc.s V_8
IL_9824: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9829: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_982e: stloc.s V_7
IL_9830: ldloc.s V_10
IL_9832: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9837: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_983c: stloc.s V_8
IL_983e: ldloc.s V_6
IL_9840: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9845: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_984a: stloc.s V_6
IL_984c: ldloc.s V_7
IL_984e: call string [mscorlib]System.Convert::ToString(int32)
IL_9853: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9858: stloc.s V_6
IL_985a: ldloc.s V_7
IL_985c: ldloc.s V_10
IL_985e: blt.s IL_98a8
IL_9860: ldloc.s V_8
IL_9862: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9867: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_986c: stloc.s V_6
IL_986e: ldloc.s V_8
IL_9870: call string [mscorlib]System.Convert::ToString(int32)
IL_9875: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_987a: stloc.s V_8
IL_987c: ldloc.s V_10
IL_987e: call string [mscorlib]System.Convert::ToString(int32)
IL_9883: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9888: stloc.s V_9
IL_988a: ldloc.s V_8
IL_988c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9891: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9896: stloc.s V_9
IL_9898: ldloc.s V_10
IL_989a: call string [mscorlib]System.Convert::ToString(int32)
IL_989f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_98a4: stloc.s V_10
IL_98a6: br.s IL_98ee
IL_98a8: ldloc.s V_6
IL_98aa: call string [mscorlib]System.Convert::ToString(int32)
IL_98af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_98b4: stloc.s V_7
IL_98b6: ldloc.s V_9
IL_98b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_98bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_98c2: stloc.s V_10
IL_98c4: ldloc.s V_10
IL_98c6: call string [mscorlib]System.Convert::ToString(int32)
IL_98cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_98d0: stloc.s V_8
IL_98d2: ldloc.s V_9
IL_98d4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_98d9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_98de: stloc.s V_9
IL_98e0: ldloc.s V_8
IL_98e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_98e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_98ec: stloc.s V_6
IL_98ee: ldloc.s V_7
IL_98f0: ldloc.s V_10
IL_98f2: blt.s IL_993c
IL_98f4: ldloc.s V_8
IL_98f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_98fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9900: stloc.s V_10
IL_9902: ldloc.s V_9
IL_9904: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9909: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_990e: stloc.s V_7
IL_9910: ldloc.s V_7
IL_9912: call string [mscorlib]System.Convert::ToString(int32)
IL_9917: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_991c: stloc.s V_8
IL_991e: ldloc.s V_7
IL_9920: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9925: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_992a: stloc.s V_8
IL_992c: ldloc.s V_7
IL_992e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9933: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9938: stloc.s V_8
IL_993a: br.s IL_9982
IL_993c: ldloc.s V_7
IL_993e: call string [mscorlib]System.Convert::ToString(int32)
IL_9943: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9948: stloc.s V_7
IL_994a: ldloc.s V_10
IL_994c: call string [mscorlib]System.Convert::ToString(int32)
IL_9951: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9956: stloc.s V_6
IL_9958: ldloc.s V_8
IL_995a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_995f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9964: stloc.s V_7
IL_9966: ldloc.s V_9
IL_9968: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_996d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9972: stloc.s V_8
IL_9974: ldloc.s V_9
IL_9976: call string [mscorlib]System.Convert::ToString(int32)
IL_997b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9980: stloc.s V_10
IL_9982: ldloc.s V_7
IL_9984: ldloc.s V_9
IL_9986: bgt.s IL_99d0
IL_9988: ldloc.s V_10
IL_998a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_998f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9994: stloc.s V_8
IL_9996: ldloc.s V_6
IL_9998: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_999d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99a2: stloc.s V_7
IL_99a4: ldloc.s V_9
IL_99a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_99ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_99b0: stloc.s V_7
IL_99b2: ldloc.s V_10
IL_99b4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_99b9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99be: stloc.s V_8
IL_99c0: ldloc.s V_8
IL_99c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_99c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99cc: stloc.s V_9
IL_99ce: br.s IL_9a16
IL_99d0: ldloc.s V_7
IL_99d2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_99d7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_99dc: stloc.s V_7
IL_99de: ldloc.s V_9
IL_99e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_99e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_99ea: stloc.s V_6
IL_99ec: ldloc.s V_7
IL_99ee: call string [mscorlib]System.Convert::ToString(int32)
IL_99f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_99f8: stloc.s V_6
IL_99fa: ldloc.s V_9
IL_99fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a01: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a06: stloc.s V_6
IL_9a08: ldloc.s V_10
IL_9a0a: call string [mscorlib]System.Convert::ToString(int32)
IL_9a0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9a14: stloc.s V_6
IL_9a16: ldloc.s V_10
IL_9a18: ldloc.s V_8
IL_9a1a: blt.s IL_9a64
IL_9a1c: ldloc.s V_7
IL_9a1e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9a23: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9a28: stloc.s V_8
IL_9a2a: ldloc.s V_8
IL_9a2c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a31: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a36: stloc.s V_8
IL_9a38: ldloc.s V_7
IL_9a3a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a3f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a44: stloc.s V_6
IL_9a46: ldloc.s V_7
IL_9a48: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a4d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a52: stloc.s V_6
IL_9a54: ldloc.s V_9
IL_9a56: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9a5b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9a60: stloc.s V_9
IL_9a62: br.s IL_9aaa
IL_9a64: ldloc.s V_10
IL_9a66: call string [mscorlib]System.Convert::ToString(int32)
IL_9a6b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9a70: stloc.s V_6
IL_9a72: ldloc.s V_6
IL_9a74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9a79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9a7e: stloc.s V_8
IL_9a80: ldloc.s V_8
IL_9a82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9a87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9a8c: stloc.s V_10
IL_9a8e: ldloc.s V_7
IL_9a90: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9a95: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9a9a: stloc.s V_8
IL_9a9c: ldloc.s V_9
IL_9a9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9aa3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9aa8: stloc.s V_8
IL_9aaa: ldloc.s V_10
IL_9aac: ldloc.s V_6
IL_9aae: bne.un.s IL_9af8
IL_9ab0: ldloc.s V_6
IL_9ab2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9ab7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9abc: stloc.s V_8
IL_9abe: ldloc.s V_10
IL_9ac0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9ac5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9aca: stloc.s V_7
IL_9acc: ldloc.s V_8
IL_9ace: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9ad3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9ad8: stloc.s V_9
IL_9ada: ldloc.s V_10
IL_9adc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9ae1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9ae6: stloc.s V_8
IL_9ae8: ldloc.s V_10
IL_9aea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9aef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9af4: stloc.s V_6
IL_9af6: br.s IL_9b3e
IL_9af8: ldloc.s V_6
IL_9afa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9aff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b04: stloc.s V_6
IL_9b06: ldloc.s V_9
IL_9b08: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9b0d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b12: stloc.s V_6
IL_9b14: ldloc.s V_9
IL_9b16: call string [mscorlib]System.Convert::ToString(int32)
IL_9b1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9b20: stloc.s V_7
IL_9b22: ldloc.s V_9
IL_9b24: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9b29: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9b2e: stloc.s V_9
IL_9b30: ldloc.s V_8
IL_9b32: call string [mscorlib]System.Convert::ToString(int32)
IL_9b37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9b3c: stloc.s V_7
IL_9b3e: ldloc.s V_8
IL_9b40: ldloc.s V_10
IL_9b42: bgt.s IL_9b8c
IL_9b44: ldloc.s V_9
IL_9b46: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9b4b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9b50: stloc.s V_7
IL_9b52: ldloc.s V_9
IL_9b54: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9b59: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b5e: stloc.s V_8
IL_9b60: ldloc.s V_7
IL_9b62: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9b67: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9b6c: stloc.s V_6
IL_9b6e: ldloc.s V_8
IL_9b70: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9b75: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9b7a: stloc.s V_9
IL_9b7c: ldloc.s V_9
IL_9b7e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9b83: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9b88: stloc.s V_9
IL_9b8a: br.s IL_9bd2
IL_9b8c: ldloc.s V_7
IL_9b8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9b93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9b98: stloc.s V_7
IL_9b9a: ldloc.s V_10
IL_9b9c: call string [mscorlib]System.Convert::ToString(int32)
IL_9ba1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ba6: stloc.s V_9
IL_9ba8: ldloc.s V_8
IL_9baa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9baf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9bb4: stloc.s V_8
IL_9bb6: ldloc.s V_9
IL_9bb8: call string [mscorlib]System.Convert::ToString(int32)
IL_9bbd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9bc2: stloc.s V_7
IL_9bc4: ldloc.s V_8
IL_9bc6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9bcb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9bd0: stloc.s V_6
IL_9bd2: ldloc.s V_10
IL_9bd4: ldloc.s V_8
IL_9bd6: bne.un.s IL_9c20
IL_9bd8: ldloc.s V_7
IL_9bda: call string [mscorlib]System.Convert::ToString(int32)
IL_9bdf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9be4: stloc.s V_6
IL_9be6: ldloc.s V_7
IL_9be8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9bed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9bf2: stloc.s V_7
IL_9bf4: ldloc.s V_6
IL_9bf6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9bfb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c00: stloc.s V_7
IL_9c02: ldloc.s V_6
IL_9c04: call string [mscorlib]System.Convert::ToString(int32)
IL_9c09: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9c0e: stloc.s V_8
IL_9c10: ldloc.s V_9
IL_9c12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c1c: stloc.s V_6
IL_9c1e: br.s IL_9c66
IL_9c20: ldloc.s V_6
IL_9c22: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c27: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c2c: stloc.s V_10
IL_9c2e: ldloc.s V_10
IL_9c30: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c35: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c3a: stloc.s V_7
IL_9c3c: ldloc.s V_6
IL_9c3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c48: stloc.s V_10
IL_9c4a: ldloc.s V_6
IL_9c4c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c51: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c56: stloc.s V_6
IL_9c58: ldloc.s V_8
IL_9c5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9c5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9c64: stloc.s V_6
IL_9c66: ldloc.s V_10
IL_9c68: ldloc.s V_9
IL_9c6a: bne.un.s IL_9cb4
IL_9c6c: ldloc.s V_9
IL_9c6e: call string [mscorlib]System.Convert::ToString(int32)
IL_9c73: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9c78: stloc.s V_6
IL_9c7a: ldloc.s V_6
IL_9c7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9c86: stloc.s V_8
IL_9c88: ldloc.s V_8
IL_9c8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9c8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9c94: stloc.s V_6
IL_9c96: ldloc.s V_8
IL_9c98: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9c9d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9ca2: stloc.s V_10
IL_9ca4: ldloc.s V_8
IL_9ca6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9cab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cb0: stloc.s V_7
IL_9cb2: br.s IL_9cfa
IL_9cb4: ldloc.s V_8
IL_9cb6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9cbb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cc0: stloc.s V_6
IL_9cc2: ldloc.s V_10
IL_9cc4: call string [mscorlib]System.Convert::ToString(int32)
IL_9cc9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9cce: stloc.s V_8
IL_9cd0: ldloc.s V_10
IL_9cd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9cd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cdc: stloc.s V_9
IL_9cde: ldloc.s V_7
IL_9ce0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9ce5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9cea: stloc.s V_6
IL_9cec: ldloc.s V_6
IL_9cee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9cf3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9cf8: stloc.s V_6
IL_9cfa: ldloc.s V_9
IL_9cfc: ldloc.s V_9
IL_9cfe: bgt.s IL_9d48
IL_9d00: ldloc.s V_8
IL_9d02: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9d07: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9d0c: stloc.s V_8
IL_9d0e: ldloc.s V_10
IL_9d10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d1a: stloc.s V_10
IL_9d1c: ldloc.s V_9
IL_9d1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d28: stloc.s V_6
IL_9d2a: ldloc.s V_10
IL_9d2c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d31: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9d36: stloc.s V_7
IL_9d38: ldloc.s V_10
IL_9d3a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d3f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9d44: stloc.s V_8
IL_9d46: br.s IL_9d8e
IL_9d48: ldloc.s V_9
IL_9d4a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d4f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9d54: stloc.s V_9
IL_9d56: ldloc.s V_7
IL_9d58: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d5d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d62: stloc.s V_10
IL_9d64: ldloc.s V_7
IL_9d66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d70: stloc.s V_9
IL_9d72: ldloc.s V_10
IL_9d74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9d79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9d7e: stloc.s V_10
IL_9d80: ldloc.s V_6
IL_9d82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9d87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9d8c: stloc.s V_9
IL_9d8e: ldloc.s V_7
IL_9d90: ldloc.s V_7
IL_9d92: bge.s IL_9ddc
IL_9d94: ldloc.s V_6
IL_9d96: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9d9b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9da0: stloc.s V_9
IL_9da2: ldloc.s V_10
IL_9da4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9da9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9dae: stloc.s V_10
IL_9db0: ldloc.s V_7
IL_9db2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9db7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9dbc: stloc.s V_9
IL_9dbe: ldloc.s V_7
IL_9dc0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9dc5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9dca: stloc.s V_7
IL_9dcc: ldloc.s V_7
IL_9dce: call string [mscorlib]System.Convert::ToString(int32)
IL_9dd3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9dd8: stloc.s V_6
IL_9dda: br.s IL_9e22
IL_9ddc: ldloc.s V_7
IL_9dde: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9de3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9de8: stloc.s V_7
IL_9dea: ldloc.s V_8
IL_9dec: call string [mscorlib]System.Convert::ToString(int32)
IL_9df1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9df6: stloc.s V_8
IL_9df8: ldloc.s V_9
IL_9dfa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9dff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e04: stloc.s V_7
IL_9e06: ldloc.s V_10
IL_9e08: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9e0d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9e12: stloc.s V_6
IL_9e14: ldloc.s V_7
IL_9e16: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e1b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e20: stloc.s V_10
IL_9e22: ldloc.s V_6
IL_9e24: ldloc.s V_9
IL_9e26: bgt.s IL_9e70
IL_9e28: ldloc.s V_10
IL_9e2a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9e2f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e34: stloc.s V_8
IL_9e36: ldloc.s V_9
IL_9e38: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9e3d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e42: stloc.s V_10
IL_9e44: ldloc.s V_10
IL_9e46: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e4b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e50: stloc.s V_10
IL_9e52: ldloc.s V_6
IL_9e54: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e59: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e5e: stloc.s V_6
IL_9e60: ldloc.s V_10
IL_9e62: call string [mscorlib]System.Convert::ToString(int32)
IL_9e67: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9e6c: stloc.s V_6
IL_9e6e: br.s IL_9eb6
IL_9e70: ldloc.s V_9
IL_9e72: call string [mscorlib]System.Convert::ToString(int32)
IL_9e77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9e7c: stloc.s V_8
IL_9e7e: ldloc.s V_9
IL_9e80: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9e85: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9e8a: stloc.s V_9
IL_9e8c: ldloc.s V_10
IL_9e8e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9e93: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9e98: stloc.s V_10
IL_9e9a: ldloc.s V_6
IL_9e9c: call string [mscorlib]System.Convert::ToString(int32)
IL_9ea1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ea6: stloc.s V_7
IL_9ea8: ldloc.s V_6
IL_9eaa: call string [mscorlib]System.Convert::ToString(int32)
IL_9eaf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9eb4: stloc.s V_10
IL_9eb6: ldloc.s V_9
IL_9eb8: ldloc.s V_6
IL_9eba: ble.s IL_9f04
IL_9ebc: ldloc.s V_9
IL_9ebe: call string [mscorlib]System.Convert::ToString(int32)
IL_9ec3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ec8: stloc.s V_9
IL_9eca: ldloc.s V_8
IL_9ecc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9ed1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9ed6: stloc.s V_8
IL_9ed8: ldloc.s V_7
IL_9eda: call string [mscorlib]System.Convert::ToString(int32)
IL_9edf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ee4: stloc.s V_9
IL_9ee6: ldloc.s V_8
IL_9ee8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9eed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9ef2: stloc.s V_8
IL_9ef4: ldloc.s V_7
IL_9ef6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9efb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9f00: stloc.s V_9
IL_9f02: br.s IL_9f4a
IL_9f04: ldloc.s V_10
IL_9f06: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9f0b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9f10: stloc.s V_10
IL_9f12: ldloc.s V_7
IL_9f14: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9f19: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9f1e: stloc.s V_8
IL_9f20: ldloc.s V_7
IL_9f22: call string [mscorlib]System.Convert::ToString(int32)
IL_9f27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9f2c: stloc.s V_6
IL_9f2e: ldloc.s V_6
IL_9f30: call string [mscorlib]System.Convert::ToString(int32)
IL_9f35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9f3a: stloc.s V_10
IL_9f3c: ldloc.s V_8
IL_9f3e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9f43: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9f48: stloc.s V_8
IL_9f4a: ldloc.s V_6
IL_9f4c: ldloc.s V_9
IL_9f4e: beq.s IL_9f98
IL_9f50: ldloc.s V_6
IL_9f52: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9f57: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9f5c: stloc.s V_10
IL_9f5e: ldloc.s V_6
IL_9f60: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9f65: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9f6a: stloc.s V_7
IL_9f6c: ldloc.s V_7
IL_9f6e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_9f73: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_9f78: stloc.s V_6
IL_9f7a: ldloc.s V_6
IL_9f7c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9f81: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9f86: stloc.s V_7
IL_9f88: ldloc.s V_8
IL_9f8a: call string [mscorlib]System.Convert::ToString(int32)
IL_9f8f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9f94: stloc.s V_8
IL_9f96: br.s IL_9fde
IL_9f98: ldloc.s V_7
IL_9f9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9f9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9fa4: stloc.s V_9
IL_9fa6: ldloc.s V_9
IL_9fa8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9fad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9fb2: stloc.s V_7
IL_9fb4: ldloc.s V_10
IL_9fb6: call string [mscorlib]System.Convert::ToString(int32)
IL_9fbb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9fc0: stloc.s V_10
IL_9fc2: ldloc.s V_9
IL_9fc4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_9fc9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_9fce: stloc.s V_7
IL_9fd0: ldloc.s V_8
IL_9fd2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_9fd7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_9fdc: stloc.s V_8
IL_9fde: ldloc.s V_9
IL_9fe0: ldloc.s V_6
IL_9fe2: bne.un.s IL_a02c
IL_9fe4: ldloc.s V_9
IL_9fe6: call string [mscorlib]System.Convert::ToString(int32)
IL_9feb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ff0: stloc.s V_10
IL_9ff2: ldloc.s V_7
IL_9ff4: call string [mscorlib]System.Convert::ToString(int32)
IL_9ff9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_9ffe: stloc.s V_7
IL_a000: ldloc.s V_6
IL_a002: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a007: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a00c: stloc.s V_9
IL_a00e: ldloc.s V_7
IL_a010: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a015: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a01a: stloc.s V_10
IL_a01c: ldloc.s V_10
IL_a01e: call string [mscorlib]System.Convert::ToString(int32)
IL_a023: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a028: stloc.s V_6
IL_a02a: br.s IL_a072
IL_a02c: ldloc.s V_9
IL_a02e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a033: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a038: stloc.s V_8
IL_a03a: ldloc.s V_9
IL_a03c: call string [mscorlib]System.Convert::ToString(int32)
IL_a041: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a046: stloc.s V_7
IL_a048: ldloc.s V_9
IL_a04a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a04f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a054: stloc.s V_10
IL_a056: ldloc.s V_9
IL_a058: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a05d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a062: stloc.s V_6
IL_a064: ldloc.s V_10
IL_a066: call string [mscorlib]System.Convert::ToString(int32)
IL_a06b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a070: stloc.s V_7
IL_a072: ldloc.s V_8
IL_a074: ldloc.s V_9
IL_a076: bne.un.s IL_a0c0
IL_a078: ldloc.s V_6
IL_a07a: call string [mscorlib]System.Convert::ToString(int32)
IL_a07f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a084: stloc.s V_6
IL_a086: ldloc.s V_8
IL_a088: call string [mscorlib]System.Convert::ToString(int32)
IL_a08d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a092: stloc.s V_10
IL_a094: ldloc.s V_6
IL_a096: call string [mscorlib]System.Convert::ToString(int32)
IL_a09b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a0a0: stloc.s V_10
IL_a0a2: ldloc.s V_10
IL_a0a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0ae: stloc.s V_9
IL_a0b0: ldloc.s V_10
IL_a0b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0bc: stloc.s V_9
IL_a0be: br.s IL_a106
IL_a0c0: ldloc.s V_7
IL_a0c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a0c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a0cc: stloc.s V_10
IL_a0ce: ldloc.s V_10
IL_a0d0: call string [mscorlib]System.Convert::ToString(int32)
IL_a0d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a0da: stloc.s V_10
IL_a0dc: ldloc.s V_9
IL_a0de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0e8: stloc.s V_8
IL_a0ea: ldloc.s V_9
IL_a0ec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a0f1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a0f6: stloc.s V_10
IL_a0f8: ldloc.s V_9
IL_a0fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a0ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a104: stloc.s V_9
IL_a106: ldloc.s V_6
IL_a108: ldloc.s V_7
IL_a10a: bge.s IL_a154
IL_a10c: ldloc.s V_10
IL_a10e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a113: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a118: stloc.s V_8
IL_a11a: ldloc.s V_6
IL_a11c: call string [mscorlib]System.Convert::ToString(int32)
IL_a121: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a126: stloc.s V_10
IL_a128: ldloc.s V_6
IL_a12a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a12f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a134: stloc.s V_7
IL_a136: ldloc.s V_10
IL_a138: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a13d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a142: stloc.s V_8
IL_a144: ldloc.s V_10
IL_a146: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a14b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a150: stloc.s V_10
IL_a152: br.s IL_a19a
IL_a154: ldloc.s V_10
IL_a156: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a15b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a160: stloc.s V_9
IL_a162: ldloc.s V_10
IL_a164: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a169: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a16e: stloc.s V_8
IL_a170: ldloc.s V_8
IL_a172: call string [mscorlib]System.Convert::ToString(int32)
IL_a177: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a17c: stloc.s V_10
IL_a17e: ldloc.s V_8
IL_a180: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a185: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a18a: stloc.s V_7
IL_a18c: ldloc.s V_7
IL_a18e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a193: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a198: stloc.s V_10
IL_a19a: ldloc.s V_8
IL_a19c: ldloc.s V_10
IL_a19e: blt.s IL_a1e8
IL_a1a0: ldloc.s V_6
IL_a1a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a1a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a1ac: stloc.s V_8
IL_a1ae: ldloc.s V_7
IL_a1b0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a1b5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a1ba: stloc.s V_6
IL_a1bc: ldloc.s V_7
IL_a1be: call string [mscorlib]System.Convert::ToString(int32)
IL_a1c3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a1c8: stloc.s V_7
IL_a1ca: ldloc.s V_10
IL_a1cc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a1d1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a1d6: stloc.s V_10
IL_a1d8: ldloc.s V_9
IL_a1da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a1df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a1e4: stloc.s V_9
IL_a1e6: br.s IL_a22e
IL_a1e8: ldloc.s V_10
IL_a1ea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a1ef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a1f4: stloc.s V_9
IL_a1f6: ldloc.s V_7
IL_a1f8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a1fd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a202: stloc.s V_10
IL_a204: ldloc.s V_8
IL_a206: call string [mscorlib]System.Convert::ToString(int32)
IL_a20b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a210: stloc.s V_7
IL_a212: ldloc.s V_9
IL_a214: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a219: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a21e: stloc.s V_8
IL_a220: ldloc.s V_10
IL_a222: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a227: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a22c: stloc.s V_9
IL_a22e: ldloc.s V_7
IL_a230: ldloc.s V_8
IL_a232: bne.un.s IL_a27c
IL_a234: ldloc.s V_6
IL_a236: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a23b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a240: stloc.s V_6
IL_a242: ldloc.s V_7
IL_a244: call string [mscorlib]System.Convert::ToString(int32)
IL_a249: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a24e: stloc.s V_9
IL_a250: ldloc.s V_7
IL_a252: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a257: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a25c: stloc.s V_8
IL_a25e: ldloc.s V_9
IL_a260: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a265: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a26a: stloc.s V_9
IL_a26c: ldloc.s V_10
IL_a26e: call string [mscorlib]System.Convert::ToString(int32)
IL_a273: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a278: stloc.s V_9
IL_a27a: br.s IL_a2c2
IL_a27c: ldloc.s V_6
IL_a27e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a283: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a288: stloc.s V_10
IL_a28a: ldloc.s V_10
IL_a28c: call string [mscorlib]System.Convert::ToString(int32)
IL_a291: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a296: stloc.s V_8
IL_a298: ldloc.s V_9
IL_a29a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a29f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a2a4: stloc.s V_9
IL_a2a6: ldloc.s V_9
IL_a2a8: call string [mscorlib]System.Convert::ToString(int32)
IL_a2ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2b2: stloc.s V_8
IL_a2b4: ldloc.s V_7
IL_a2b6: call string [mscorlib]System.Convert::ToString(int32)
IL_a2bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2c0: stloc.s V_8
IL_a2c2: ldloc.s V_6
IL_a2c4: ldloc.s V_9
IL_a2c6: bge.s IL_a310
IL_a2c8: ldloc.s V_8
IL_a2ca: call string [mscorlib]System.Convert::ToString(int32)
IL_a2cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2d4: stloc.s V_7
IL_a2d6: ldloc.s V_8
IL_a2d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a2dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a2e2: stloc.s V_8
IL_a2e4: ldloc.s V_8
IL_a2e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a2eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a2f0: stloc.s V_8
IL_a2f2: ldloc.s V_9
IL_a2f4: call string [mscorlib]System.Convert::ToString(int32)
IL_a2f9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a2fe: stloc.s V_10
IL_a300: ldloc.s V_10
IL_a302: call string [mscorlib]System.Convert::ToString(int32)
IL_a307: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a30c: stloc.s V_10
IL_a30e: br.s IL_a356
IL_a310: ldloc.s V_6
IL_a312: call string [mscorlib]System.Convert::ToString(int32)
IL_a317: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a31c: stloc.s V_10
IL_a31e: ldloc.s V_9
IL_a320: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a325: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a32a: stloc.s V_10
IL_a32c: ldloc.s V_8
IL_a32e: call string [mscorlib]System.Convert::ToString(int32)
IL_a333: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a338: stloc.s V_9
IL_a33a: ldloc.s V_10
IL_a33c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a341: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a346: stloc.s V_8
IL_a348: ldloc.s V_8
IL_a34a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a34f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a354: stloc.s V_9
IL_a356: ldloc.s V_8
IL_a358: ldloc.s V_10
IL_a35a: ble.s IL_a3a4
IL_a35c: ldloc.s V_10
IL_a35e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a363: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a368: stloc.s V_6
IL_a36a: ldloc.s V_6
IL_a36c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a371: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a376: stloc.s V_7
IL_a378: ldloc.s V_6
IL_a37a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a37f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a384: stloc.s V_9
IL_a386: ldloc.s V_8
IL_a388: call string [mscorlib]System.Convert::ToString(int32)
IL_a38d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a392: stloc.s V_7
IL_a394: ldloc.s V_10
IL_a396: call string [mscorlib]System.Convert::ToString(int32)
IL_a39b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a3a0: stloc.s V_6
IL_a3a2: br.s IL_a3ea
IL_a3a4: ldloc.s V_10
IL_a3a6: call string [mscorlib]System.Convert::ToString(int32)
IL_a3ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a3b0: stloc.s V_9
IL_a3b2: ldloc.s V_9
IL_a3b4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a3b9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a3be: stloc.s V_6
IL_a3c0: ldloc.s V_6
IL_a3c2: call string [mscorlib]System.Convert::ToString(int32)
IL_a3c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a3cc: stloc.s V_10
IL_a3ce: ldloc.s V_9
IL_a3d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a3d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a3da: stloc.s V_6
IL_a3dc: ldloc.s V_7
IL_a3de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a3e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a3e8: stloc.s V_8
IL_a3ea: ldloc.s V_9
IL_a3ec: ldloc.s V_6
IL_a3ee: beq.s IL_a438
IL_a3f0: ldloc.s V_7
IL_a3f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a3f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a3fc: stloc.s V_9
IL_a3fe: ldloc.s V_7
IL_a400: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a405: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a40a: stloc.s V_10
IL_a40c: ldloc.s V_7
IL_a40e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a413: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a418: stloc.s V_6
IL_a41a: ldloc.s V_9
IL_a41c: call string [mscorlib]System.Convert::ToString(int32)
IL_a421: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a426: stloc.s V_8
IL_a428: ldloc.s V_9
IL_a42a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a42f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a434: stloc.s V_10
IL_a436: br.s IL_a47e
IL_a438: ldloc.s V_7
IL_a43a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a43f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a444: stloc.s V_6
IL_a446: ldloc.s V_6
IL_a448: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a44d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a452: stloc.s V_9
IL_a454: ldloc.s V_10
IL_a456: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a45b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a460: stloc.s V_7
IL_a462: ldloc.s V_8
IL_a464: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a469: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a46e: stloc.s V_10
IL_a470: ldloc.s V_6
IL_a472: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a477: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a47c: stloc.s V_8
IL_a47e: ldloc.s V_7
IL_a480: ldloc.s V_6
IL_a482: beq.s IL_a4cc
IL_a484: ldloc.s V_10
IL_a486: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a48b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a490: stloc.s V_7
IL_a492: ldloc.s V_7
IL_a494: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a499: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a49e: stloc.s V_8
IL_a4a0: ldloc.s V_7
IL_a4a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a4a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a4ac: stloc.s V_9
IL_a4ae: ldloc.s V_10
IL_a4b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a4b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a4ba: stloc.s V_7
IL_a4bc: ldloc.s V_9
IL_a4be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a4c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a4c8: stloc.s V_7
IL_a4ca: br.s IL_a512
IL_a4cc: ldloc.s V_10
IL_a4ce: call string [mscorlib]System.Convert::ToString(int32)
IL_a4d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a4d8: stloc.s V_6
IL_a4da: ldloc.s V_8
IL_a4dc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a4e1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a4e6: stloc.s V_6
IL_a4e8: ldloc.s V_9
IL_a4ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a4ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a4f4: stloc.s V_6
IL_a4f6: ldloc.s V_6
IL_a4f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a4fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a502: stloc.s V_8
IL_a504: ldloc.s V_6
IL_a506: call string [mscorlib]System.Convert::ToString(int32)
IL_a50b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a510: stloc.s V_10
IL_a512: ldloc.s V_9
IL_a514: ldloc.s V_6
IL_a516: bge.s IL_a560
IL_a518: ldloc.s V_6
IL_a51a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a51f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a524: stloc.s V_9
IL_a526: ldloc.s V_6
IL_a528: call string [mscorlib]System.Convert::ToString(int32)
IL_a52d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a532: stloc.s V_10
IL_a534: ldloc.s V_6
IL_a536: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a53b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a540: stloc.s V_6
IL_a542: ldloc.s V_8
IL_a544: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a549: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a54e: stloc.s V_10
IL_a550: ldloc.s V_6
IL_a552: call string [mscorlib]System.Convert::ToString(int32)
IL_a557: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a55c: stloc.s V_10
IL_a55e: br.s IL_a5a6
IL_a560: ldloc.s V_8
IL_a562: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a567: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a56c: stloc.s V_10
IL_a56e: ldloc.s V_6
IL_a570: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a575: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a57a: stloc.s V_6
IL_a57c: ldloc.s V_10
IL_a57e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a583: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a588: stloc.s V_8
IL_a58a: ldloc.s V_9
IL_a58c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a591: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a596: stloc.s V_6
IL_a598: ldloc.s V_7
IL_a59a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a59f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a5a4: stloc.s V_6
IL_a5a6: ldloc.s V_6
IL_a5a8: ldloc.s V_10
IL_a5aa: bge.s IL_a5f4
IL_a5ac: ldloc.s V_7
IL_a5ae: call string [mscorlib]System.Convert::ToString(int32)
IL_a5b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a5b8: stloc.s V_9
IL_a5ba: ldloc.s V_10
IL_a5bc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a5c1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a5c6: stloc.s V_8
IL_a5c8: ldloc.s V_7
IL_a5ca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a5cf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a5d4: stloc.s V_10
IL_a5d6: ldloc.s V_8
IL_a5d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a5dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a5e2: stloc.s V_8
IL_a5e4: ldloc.s V_8
IL_a5e6: call string [mscorlib]System.Convert::ToString(int32)
IL_a5eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a5f0: stloc.s V_7
IL_a5f2: br.s IL_a63a
IL_a5f4: ldloc.s V_7
IL_a5f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a5fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a600: stloc.s V_6
IL_a602: ldloc.s V_9
IL_a604: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a609: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a60e: stloc.s V_8
IL_a610: ldloc.s V_9
IL_a612: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a617: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a61c: stloc.s V_6
IL_a61e: ldloc.s V_8
IL_a620: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a625: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a62a: stloc.s V_6
IL_a62c: ldloc.s V_6
IL_a62e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a633: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a638: stloc.s V_7
IL_a63a: ldloc.s V_9
IL_a63c: ldloc.s V_10
IL_a63e: bne.un.s IL_a688
IL_a640: ldloc.s V_10
IL_a642: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a647: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a64c: stloc.s V_9
IL_a64e: ldloc.s V_6
IL_a650: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a655: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a65a: stloc.s V_10
IL_a65c: ldloc.s V_10
IL_a65e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a663: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a668: stloc.s V_8
IL_a66a: ldloc.s V_10
IL_a66c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a671: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a676: stloc.s V_9
IL_a678: ldloc.s V_8
IL_a67a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a67f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a684: stloc.s V_8
IL_a686: br.s IL_a6ce
IL_a688: ldloc.s V_10
IL_a68a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a68f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a694: stloc.s V_6
IL_a696: ldloc.s V_10
IL_a698: call string [mscorlib]System.Convert::ToString(int32)
IL_a69d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6a2: stloc.s V_6
IL_a6a4: ldloc.s V_7
IL_a6a6: call string [mscorlib]System.Convert::ToString(int32)
IL_a6ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6b0: stloc.s V_6
IL_a6b2: ldloc.s V_8
IL_a6b4: call string [mscorlib]System.Convert::ToString(int32)
IL_a6b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6be: stloc.s V_9
IL_a6c0: ldloc.s V_10
IL_a6c2: call string [mscorlib]System.Convert::ToString(int32)
IL_a6c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6cc: stloc.s V_8
IL_a6ce: ldloc.s V_9
IL_a6d0: ldloc.s V_9
IL_a6d2: bge.s IL_a71c
IL_a6d4: ldloc.s V_8
IL_a6d6: call string [mscorlib]System.Convert::ToString(int32)
IL_a6db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a6e0: stloc.s V_9
IL_a6e2: ldloc.s V_9
IL_a6e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a6e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a6ee: stloc.s V_9
IL_a6f0: ldloc.s V_6
IL_a6f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a6f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a6fc: stloc.s V_6
IL_a6fe: ldloc.s V_7
IL_a700: call string [mscorlib]System.Convert::ToString(int32)
IL_a705: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a70a: stloc.s V_10
IL_a70c: ldloc.s V_10
IL_a70e: call string [mscorlib]System.Convert::ToString(int32)
IL_a713: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a718: stloc.s V_10
IL_a71a: br.s IL_a762
IL_a71c: ldloc.s V_6
IL_a71e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a723: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a728: stloc.s V_6
IL_a72a: ldloc.s V_6
IL_a72c: call string [mscorlib]System.Convert::ToString(int32)
IL_a731: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a736: stloc.s V_6
IL_a738: ldloc.s V_8
IL_a73a: call string [mscorlib]System.Convert::ToString(int32)
IL_a73f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a744: stloc.s V_6
IL_a746: ldloc.s V_9
IL_a748: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a74d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a752: stloc.s V_9
IL_a754: ldloc.s V_9
IL_a756: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a75b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a760: stloc.s V_9
IL_a762: ldloc.s V_7
IL_a764: ldloc.s V_7
IL_a766: ble.s IL_a7b0
IL_a768: ldloc.s V_7
IL_a76a: call string [mscorlib]System.Convert::ToString(int32)
IL_a76f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a774: stloc.s V_7
IL_a776: ldloc.s V_9
IL_a778: call string [mscorlib]System.Convert::ToString(int32)
IL_a77d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a782: stloc.s V_10
IL_a784: ldloc.s V_9
IL_a786: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a78b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a790: stloc.s V_6
IL_a792: ldloc.s V_6
IL_a794: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a799: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a79e: stloc.s V_10
IL_a7a0: ldloc.s V_10
IL_a7a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a7a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a7ac: stloc.s V_10
IL_a7ae: br.s IL_a7f6
IL_a7b0: ldloc.s V_7
IL_a7b2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a7b7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a7bc: stloc.s V_8
IL_a7be: ldloc.s V_10
IL_a7c0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a7c5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a7ca: stloc.s V_10
IL_a7cc: ldloc.s V_10
IL_a7ce: call string [mscorlib]System.Convert::ToString(int32)
IL_a7d3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a7d8: stloc.s V_9
IL_a7da: ldloc.s V_6
IL_a7dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a7e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a7e6: stloc.s V_6
IL_a7e8: ldloc.s V_10
IL_a7ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a7ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a7f4: stloc.s V_6
IL_a7f6: ldloc.s V_10
IL_a7f8: ldloc.s V_6
IL_a7fa: bge.s IL_a844
IL_a7fc: ldloc.s V_10
IL_a7fe: call string [mscorlib]System.Convert::ToString(int32)
IL_a803: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a808: stloc.s V_10
IL_a80a: ldloc.s V_9
IL_a80c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a811: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a816: stloc.s V_9
IL_a818: ldloc.s V_9
IL_a81a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a81f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a824: stloc.s V_7
IL_a826: ldloc.s V_8
IL_a828: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a82d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a832: stloc.s V_7
IL_a834: ldloc.s V_7
IL_a836: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a83b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a840: stloc.s V_7
IL_a842: br.s IL_a88a
IL_a844: ldloc.s V_9
IL_a846: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a84b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a850: stloc.s V_10
IL_a852: ldloc.s V_6
IL_a854: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a859: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a85e: stloc.s V_8
IL_a860: ldloc.s V_10
IL_a862: call string [mscorlib]System.Convert::ToString(int32)
IL_a867: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a86c: stloc.s V_7
IL_a86e: ldloc.s V_9
IL_a870: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a875: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a87a: stloc.s V_7
IL_a87c: ldloc.s V_9
IL_a87e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a883: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a888: stloc.s V_9
IL_a88a: ldloc.s V_8
IL_a88c: ldloc.s V_7
IL_a88e: bne.un.s IL_a8d8
IL_a890: ldloc.s V_7
IL_a892: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a897: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a89c: stloc.s V_10
IL_a89e: ldloc.s V_7
IL_a8a0: call string [mscorlib]System.Convert::ToString(int32)
IL_a8a5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a8aa: stloc.s V_10
IL_a8ac: ldloc.s V_6
IL_a8ae: call string [mscorlib]System.Convert::ToString(int32)
IL_a8b3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a8b8: stloc.s V_8
IL_a8ba: ldloc.s V_8
IL_a8bc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a8c1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a8c6: stloc.s V_7
IL_a8c8: ldloc.s V_6
IL_a8ca: call string [mscorlib]System.Convert::ToString(int32)
IL_a8cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a8d4: stloc.s V_8
IL_a8d6: br.s IL_a91e
IL_a8d8: ldloc.s V_6
IL_a8da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a8df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a8e4: stloc.s V_10
IL_a8e6: ldloc.s V_9
IL_a8e8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a8ed: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a8f2: stloc.s V_7
IL_a8f4: ldloc.s V_6
IL_a8f6: call string [mscorlib]System.Convert::ToString(int32)
IL_a8fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a900: stloc.s V_6
IL_a902: ldloc.s V_7
IL_a904: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a909: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a90e: stloc.s V_6
IL_a910: ldloc.s V_10
IL_a912: call string [mscorlib]System.Convert::ToString(int32)
IL_a917: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a91c: stloc.s V_6
IL_a91e: ldloc.s V_8
IL_a920: ldloc.s V_9
IL_a922: beq.s IL_a96c
IL_a924: ldloc.s V_10
IL_a926: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a92b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a930: stloc.s V_6
IL_a932: ldloc.s V_8
IL_a934: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a939: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a93e: stloc.s V_10
IL_a940: ldloc.s V_9
IL_a942: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a947: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a94c: stloc.s V_7
IL_a94e: ldloc.s V_7
IL_a950: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a955: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a95a: stloc.s V_10
IL_a95c: ldloc.s V_7
IL_a95e: call string [mscorlib]System.Convert::ToString(int32)
IL_a963: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a968: stloc.s V_8
IL_a96a: br.s IL_a9b2
IL_a96c: ldloc.s V_10
IL_a96e: call string [mscorlib]System.Convert::ToString(int32)
IL_a973: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a978: stloc.s V_8
IL_a97a: ldloc.s V_8
IL_a97c: call string [mscorlib]System.Convert::ToString(int32)
IL_a981: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a986: stloc.s V_9
IL_a988: ldloc.s V_7
IL_a98a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a98f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a994: stloc.s V_9
IL_a996: ldloc.s V_7
IL_a998: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a99d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a9a2: stloc.s V_7
IL_a9a4: ldloc.s V_9
IL_a9a6: call string [mscorlib]System.Convert::ToString(int32)
IL_a9ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a9b0: stloc.s V_6
IL_a9b2: ldloc.s V_8
IL_a9b4: ldloc.s V_9
IL_a9b6: bge.s IL_aa00
IL_a9b8: ldloc.s V_6
IL_a9ba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_a9bf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_a9c4: stloc.s V_9
IL_a9c6: ldloc.s V_6
IL_a9c8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a9cd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a9d2: stloc.s V_7
IL_a9d4: ldloc.s V_6
IL_a9d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_a9db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_a9e0: stloc.s V_8
IL_a9e2: ldloc.s V_8
IL_a9e4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_a9e9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_a9ee: stloc.s V_10
IL_a9f0: ldloc.s V_9
IL_a9f2: call string [mscorlib]System.Convert::ToString(int32)
IL_a9f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_a9fc: stloc.s V_9
IL_a9fe: br.s IL_aa46
IL_aa00: ldloc.s V_6
IL_aa02: call string [mscorlib]System.Convert::ToString(int32)
IL_aa07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa0c: stloc.s V_10
IL_aa0e: ldloc.s V_6
IL_aa10: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa15: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa1a: stloc.s V_6
IL_aa1c: ldloc.s V_9
IL_aa1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aa23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aa28: stloc.s V_6
IL_aa2a: ldloc.s V_7
IL_aa2c: call string [mscorlib]System.Convert::ToString(int32)
IL_aa31: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa36: stloc.s V_8
IL_aa38: ldloc.s V_7
IL_aa3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa44: stloc.s V_7
IL_aa46: ldloc.s V_9
IL_aa48: ldloc.s V_8
IL_aa4a: beq.s IL_aa94
IL_aa4c: ldloc.s V_7
IL_aa4e: call string [mscorlib]System.Convert::ToString(int32)
IL_aa53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa58: stloc.s V_8
IL_aa5a: ldloc.s V_9
IL_aa5c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa61: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa66: stloc.s V_6
IL_aa68: ldloc.s V_8
IL_aa6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aa74: stloc.s V_9
IL_aa76: ldloc.s V_9
IL_aa78: call string [mscorlib]System.Convert::ToString(int32)
IL_aa7d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aa82: stloc.s V_8
IL_aa84: ldloc.s V_7
IL_aa86: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aa8b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aa90: stloc.s V_10
IL_aa92: br.s IL_aada
IL_aa94: ldloc.s V_10
IL_aa96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aa9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aaa0: stloc.s V_8
IL_aaa2: ldloc.s V_7
IL_aaa4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aaa9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aaae: stloc.s V_9
IL_aab0: ldloc.s V_10
IL_aab2: call string [mscorlib]System.Convert::ToString(int32)
IL_aab7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aabc: stloc.s V_9
IL_aabe: ldloc.s V_7
IL_aac0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aac5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aaca: stloc.s V_8
IL_aacc: ldloc.s V_9
IL_aace: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aad3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aad8: stloc.s V_10
IL_aada: ldloc.s V_6
IL_aadc: ldloc.s V_8
IL_aade: bne.un.s IL_ab28
IL_aae0: ldloc.s V_10
IL_aae2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aae7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aaec: stloc.s V_10
IL_aaee: ldloc.s V_7
IL_aaf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aaf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aafa: stloc.s V_7
IL_aafc: ldloc.s V_10
IL_aafe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ab03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ab08: stloc.s V_7
IL_ab0a: ldloc.s V_10
IL_ab0c: call string [mscorlib]System.Convert::ToString(int32)
IL_ab11: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab16: stloc.s V_8
IL_ab18: ldloc.s V_7
IL_ab1a: call string [mscorlib]System.Convert::ToString(int32)
IL_ab1f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab24: stloc.s V_10
IL_ab26: br.s IL_ab6e
IL_ab28: ldloc.s V_6
IL_ab2a: call string [mscorlib]System.Convert::ToString(int32)
IL_ab2f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab34: stloc.s V_10
IL_ab36: ldloc.s V_8
IL_ab38: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ab3d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ab42: stloc.s V_8
IL_ab44: ldloc.s V_6
IL_ab46: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ab4b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ab50: stloc.s V_7
IL_ab52: ldloc.s V_7
IL_ab54: call string [mscorlib]System.Convert::ToString(int32)
IL_ab59: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ab5e: stloc.s V_7
IL_ab60: ldloc.s V_10
IL_ab62: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ab67: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ab6c: stloc.s V_8
IL_ab6e: ldloc.s V_10
IL_ab70: ldloc.s V_8
IL_ab72: beq.s IL_abbc
IL_ab74: ldloc.s V_6
IL_ab76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ab7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ab80: stloc.s V_7
IL_ab82: ldloc.s V_7
IL_ab84: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ab89: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ab8e: stloc.s V_7
IL_ab90: ldloc.s V_10
IL_ab92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ab97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ab9c: stloc.s V_8
IL_ab9e: ldloc.s V_10
IL_aba0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aba5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_abaa: stloc.s V_7
IL_abac: ldloc.s V_7
IL_abae: call string [mscorlib]System.Convert::ToString(int32)
IL_abb3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_abb8: stloc.s V_6
IL_abba: br.s IL_ac02
IL_abbc: ldloc.s V_8
IL_abbe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_abc3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_abc8: stloc.s V_10
IL_abca: ldloc.s V_6
IL_abcc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_abd1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_abd6: stloc.s V_9
IL_abd8: ldloc.s V_8
IL_abda: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_abdf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_abe4: stloc.s V_10
IL_abe6: ldloc.s V_6
IL_abe8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_abed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_abf2: stloc.s V_10
IL_abf4: ldloc.s V_7
IL_abf6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_abfb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ac00: stloc.s V_6
IL_ac02: ldloc.s V_8
IL_ac04: ldloc.s V_10
IL_ac06: ble.s IL_ac50
IL_ac08: ldloc.s V_9
IL_ac0a: call string [mscorlib]System.Convert::ToString(int32)
IL_ac0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac14: stloc.s V_7
IL_ac16: ldloc.s V_8
IL_ac18: call string [mscorlib]System.Convert::ToString(int32)
IL_ac1d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac22: stloc.s V_6
IL_ac24: ldloc.s V_9
IL_ac26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ac2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ac30: stloc.s V_9
IL_ac32: ldloc.s V_8
IL_ac34: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ac39: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ac3e: stloc.s V_9
IL_ac40: ldloc.s V_6
IL_ac42: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ac47: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ac4c: stloc.s V_6
IL_ac4e: br.s IL_ac96
IL_ac50: ldloc.s V_6
IL_ac52: call string [mscorlib]System.Convert::ToString(int32)
IL_ac57: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac5c: stloc.s V_10
IL_ac5e: ldloc.s V_8
IL_ac60: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ac65: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ac6a: stloc.s V_7
IL_ac6c: ldloc.s V_6
IL_ac6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ac73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ac78: stloc.s V_8
IL_ac7a: ldloc.s V_6
IL_ac7c: call string [mscorlib]System.Convert::ToString(int32)
IL_ac81: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ac86: stloc.s V_9
IL_ac88: ldloc.s V_9
IL_ac8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ac8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ac94: stloc.s V_6
IL_ac96: ldloc.s V_7
IL_ac98: ldloc.s V_9
IL_ac9a: bgt.s IL_ace4
IL_ac9c: ldloc.s V_10
IL_ac9e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aca3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aca8: stloc.s V_6
IL_acaa: ldloc.s V_7
IL_acac: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_acb1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_acb6: stloc.s V_8
IL_acb8: ldloc.s V_8
IL_acba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_acbf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_acc4: stloc.s V_6
IL_acc6: ldloc.s V_10
IL_acc8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_accd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_acd2: stloc.s V_7
IL_acd4: ldloc.s V_9
IL_acd6: call string [mscorlib]System.Convert::ToString(int32)
IL_acdb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ace0: stloc.s V_6
IL_ace2: br.s IL_ad2a
IL_ace4: ldloc.s V_7
IL_ace6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aceb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_acf0: stloc.s V_6
IL_acf2: ldloc.s V_7
IL_acf4: call string [mscorlib]System.Convert::ToString(int32)
IL_acf9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_acfe: stloc.s V_7
IL_ad00: ldloc.s V_7
IL_ad02: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ad07: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ad0c: stloc.s V_7
IL_ad0e: ldloc.s V_6
IL_ad10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad1a: stloc.s V_9
IL_ad1c: ldloc.s V_8
IL_ad1e: call string [mscorlib]System.Convert::ToString(int32)
IL_ad23: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ad28: stloc.s V_7
IL_ad2a: ldloc.s V_6
IL_ad2c: ldloc.s V_8
IL_ad2e: beq.s IL_ad78
IL_ad30: ldloc.s V_8
IL_ad32: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ad37: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ad3c: stloc.s V_9
IL_ad3e: ldloc.s V_9
IL_ad40: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad45: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad4a: stloc.s V_7
IL_ad4c: ldloc.s V_7
IL_ad4e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad53: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad58: stloc.s V_10
IL_ad5a: ldloc.s V_7
IL_ad5c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ad61: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ad66: stloc.s V_6
IL_ad68: ldloc.s V_10
IL_ad6a: call string [mscorlib]System.Convert::ToString(int32)
IL_ad6f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ad74: stloc.s V_7
IL_ad76: br.s IL_adbe
IL_ad78: ldloc.s V_7
IL_ad7a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ad7f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ad84: stloc.s V_8
IL_ad86: ldloc.s V_9
IL_ad88: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ad8d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ad92: stloc.s V_8
IL_ad94: ldloc.s V_6
IL_ad96: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ad9b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ada0: stloc.s V_7
IL_ada2: ldloc.s V_7
IL_ada4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ada9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_adae: stloc.s V_9
IL_adb0: ldloc.s V_7
IL_adb2: call string [mscorlib]System.Convert::ToString(int32)
IL_adb7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_adbc: stloc.s V_7
IL_adbe: ldloc.s V_8
IL_adc0: ldloc.s V_6
IL_adc2: beq.s IL_ae0c
IL_adc4: ldloc.s V_10
IL_adc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_adcb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_add0: stloc.s V_7
IL_add2: ldloc.s V_9
IL_add4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_add9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_adde: stloc.s V_7
IL_ade0: ldloc.s V_7
IL_ade2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ade7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_adec: stloc.s V_8
IL_adee: ldloc.s V_9
IL_adf0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_adf5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_adfa: stloc.s V_6
IL_adfc: ldloc.s V_10
IL_adfe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ae03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ae08: stloc.s V_10
IL_ae0a: br.s IL_ae52
IL_ae0c: ldloc.s V_8
IL_ae0e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ae13: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ae18: stloc.s V_6
IL_ae1a: ldloc.s V_10
IL_ae1c: call string [mscorlib]System.Convert::ToString(int32)
IL_ae21: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae26: stloc.s V_6
IL_ae28: ldloc.s V_6
IL_ae2a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ae2f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ae34: stloc.s V_10
IL_ae36: ldloc.s V_8
IL_ae38: call string [mscorlib]System.Convert::ToString(int32)
IL_ae3d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae42: stloc.s V_8
IL_ae44: ldloc.s V_8
IL_ae46: call string [mscorlib]System.Convert::ToString(int32)
IL_ae4b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae50: stloc.s V_8
IL_ae52: ldloc.s V_6
IL_ae54: ldloc.s V_9
IL_ae56: beq.s IL_aea0
IL_ae58: ldloc.s V_8
IL_ae5a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ae5f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ae64: stloc.s V_7
IL_ae66: ldloc.s V_7
IL_ae68: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ae6d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ae72: stloc.s V_6
IL_ae74: ldloc.s V_10
IL_ae76: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ae7b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ae80: stloc.s V_8
IL_ae82: ldloc.s V_8
IL_ae84: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ae89: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ae8e: stloc.s V_7
IL_ae90: ldloc.s V_7
IL_ae92: call string [mscorlib]System.Convert::ToString(int32)
IL_ae97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ae9c: stloc.s V_7
IL_ae9e: br.s IL_aee6
IL_aea0: ldloc.s V_10
IL_aea2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aea7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aeac: stloc.s V_8
IL_aeae: ldloc.s V_10
IL_aeb0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aeb5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aeba: stloc.s V_10
IL_aebc: ldloc.s V_9
IL_aebe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_aec3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_aec8: stloc.s V_7
IL_aeca: ldloc.s V_7
IL_aecc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aed1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_aed6: stloc.s V_9
IL_aed8: ldloc.s V_10
IL_aeda: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_aedf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aee4: stloc.s V_6
IL_aee6: ldloc.s V_6
IL_aee8: ldloc.s V_6
IL_aeea: bne.un.s IL_af34
IL_aeec: ldloc.s V_8
IL_aeee: call string [mscorlib]System.Convert::ToString(int32)
IL_aef3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_aef8: stloc.s V_10
IL_aefa: ldloc.s V_9
IL_aefc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af06: stloc.s V_8
IL_af08: ldloc.s V_9
IL_af0a: call string [mscorlib]System.Convert::ToString(int32)
IL_af0f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_af14: stloc.s V_7
IL_af16: ldloc.s V_6
IL_af18: call string [mscorlib]System.Convert::ToString(int32)
IL_af1d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_af22: stloc.s V_10
IL_af24: ldloc.s V_10
IL_af26: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af2b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af30: stloc.s V_8
IL_af32: br.s IL_af7a
IL_af34: ldloc.s V_8
IL_af36: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_af3b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_af40: stloc.s V_6
IL_af42: ldloc.s V_7
IL_af44: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af49: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af4e: stloc.s V_9
IL_af50: ldloc.s V_8
IL_af52: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_af57: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_af5c: stloc.s V_10
IL_af5e: ldloc.s V_7
IL_af60: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_af65: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_af6a: stloc.s V_9
IL_af6c: ldloc.s V_10
IL_af6e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_af73: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_af78: stloc.s V_6
IL_af7a: ldloc.s V_8
IL_af7c: ldloc.s V_6
IL_af7e: beq.s IL_afc8
IL_af80: ldloc.s V_6
IL_af82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_af87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_af8c: stloc.s V_7
IL_af8e: ldloc.s V_10
IL_af90: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_af95: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_af9a: stloc.s V_10
IL_af9c: ldloc.s V_7
IL_af9e: call string [mscorlib]System.Convert::ToString(int32)
IL_afa3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_afa8: stloc.s V_6
IL_afaa: ldloc.s V_9
IL_afac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_afb1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_afb6: stloc.s V_7
IL_afb8: ldloc.s V_10
IL_afba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_afbf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_afc4: stloc.s V_9
IL_afc6: br.s IL_b00e
IL_afc8: ldloc.s V_6
IL_afca: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_afcf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_afd4: stloc.s V_7
IL_afd6: ldloc.s V_6
IL_afd8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_afdd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_afe2: stloc.s V_8
IL_afe4: ldloc.s V_8
IL_afe6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_afeb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_aff0: stloc.s V_10
IL_aff2: ldloc.s V_10
IL_aff4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_aff9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_affe: stloc.s V_6
IL_b000: ldloc.s V_6
IL_b002: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b007: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b00c: stloc.s V_8
IL_b00e: ldloc.s V_10
IL_b010: ldloc.s V_6
IL_b012: bne.un.s IL_b05c
IL_b014: ldloc.s V_9
IL_b016: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b01b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b020: stloc.s V_10
IL_b022: ldloc.s V_6
IL_b024: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b029: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b02e: stloc.s V_9
IL_b030: ldloc.s V_7
IL_b032: call string [mscorlib]System.Convert::ToString(int32)
IL_b037: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b03c: stloc.s V_8
IL_b03e: ldloc.s V_9
IL_b040: call string [mscorlib]System.Convert::ToString(int32)
IL_b045: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b04a: stloc.s V_10
IL_b04c: ldloc.s V_7
IL_b04e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b053: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b058: stloc.s V_9
IL_b05a: br.s IL_b0a2
IL_b05c: ldloc.s V_8
IL_b05e: call string [mscorlib]System.Convert::ToString(int32)
IL_b063: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b068: stloc.s V_8
IL_b06a: ldloc.s V_7
IL_b06c: call string [mscorlib]System.Convert::ToString(int32)
IL_b071: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b076: stloc.s V_9
IL_b078: ldloc.s V_7
IL_b07a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b07f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b084: stloc.s V_6
IL_b086: ldloc.s V_6
IL_b088: call string [mscorlib]System.Convert::ToString(int32)
IL_b08d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b092: stloc.s V_8
IL_b094: ldloc.s V_8
IL_b096: call string [mscorlib]System.Convert::ToString(int32)
IL_b09b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b0a0: stloc.s V_6
IL_b0a2: ldloc.s V_8
IL_b0a4: ldloc.s V_7
IL_b0a6: bge.s IL_b0f0
IL_b0a8: ldloc.s V_10
IL_b0aa: call string [mscorlib]System.Convert::ToString(int32)
IL_b0af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b0b4: stloc.s V_8
IL_b0b6: ldloc.s V_9
IL_b0b8: call string [mscorlib]System.Convert::ToString(int32)
IL_b0bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b0c2: stloc.s V_6
IL_b0c4: ldloc.s V_8
IL_b0c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b0cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b0d0: stloc.s V_6
IL_b0d2: ldloc.s V_8
IL_b0d4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b0d9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b0de: stloc.s V_10
IL_b0e0: ldloc.s V_10
IL_b0e2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b0e7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b0ec: stloc.s V_10
IL_b0ee: br.s IL_b136
IL_b0f0: ldloc.s V_8
IL_b0f2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b0f7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b0fc: stloc.s V_9
IL_b0fe: ldloc.s V_8
IL_b100: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b105: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b10a: stloc.s V_9
IL_b10c: ldloc.s V_9
IL_b10e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b113: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b118: stloc.s V_9
IL_b11a: ldloc.s V_9
IL_b11c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b121: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b126: stloc.s V_8
IL_b128: ldloc.s V_6
IL_b12a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b12f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b134: stloc.s V_10
IL_b136: ldloc.s V_9
IL_b138: ldloc.s V_7
IL_b13a: bne.un.s IL_b184
IL_b13c: ldloc.s V_7
IL_b13e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b143: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b148: stloc.s V_8
IL_b14a: ldloc.s V_10
IL_b14c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b151: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b156: stloc.s V_7
IL_b158: ldloc.s V_8
IL_b15a: call string [mscorlib]System.Convert::ToString(int32)
IL_b15f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b164: stloc.s V_10
IL_b166: ldloc.s V_8
IL_b168: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b16d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b172: stloc.s V_10
IL_b174: ldloc.s V_8
IL_b176: call string [mscorlib]System.Convert::ToString(int32)
IL_b17b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b180: stloc.s V_9
IL_b182: br.s IL_b1ca
IL_b184: ldloc.s V_8
IL_b186: call string [mscorlib]System.Convert::ToString(int32)
IL_b18b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b190: stloc.s V_7
IL_b192: ldloc.s V_7
IL_b194: call string [mscorlib]System.Convert::ToString(int32)
IL_b199: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b19e: stloc.s V_10
IL_b1a0: ldloc.s V_9
IL_b1a2: call string [mscorlib]System.Convert::ToString(int32)
IL_b1a7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b1ac: stloc.s V_10
IL_b1ae: ldloc.s V_8
IL_b1b0: call string [mscorlib]System.Convert::ToString(int32)
IL_b1b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b1ba: stloc.s V_6
IL_b1bc: ldloc.s V_9
IL_b1be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b1c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b1c8: stloc.s V_10
IL_b1ca: ldloc.s V_10
IL_b1cc: ldloc.s V_6
IL_b1ce: blt.s IL_b218
IL_b1d0: ldloc.s V_6
IL_b1d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b1d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b1dc: stloc.s V_7
IL_b1de: ldloc.s V_10
IL_b1e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b1e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b1ea: stloc.s V_8
IL_b1ec: ldloc.s V_7
IL_b1ee: call string [mscorlib]System.Convert::ToString(int32)
IL_b1f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b1f8: stloc.s V_8
IL_b1fa: ldloc.s V_9
IL_b1fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b201: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b206: stloc.s V_10
IL_b208: ldloc.s V_8
IL_b20a: call string [mscorlib]System.Convert::ToString(int32)
IL_b20f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b214: stloc.s V_7
IL_b216: br.s IL_b25e
IL_b218: ldloc.s V_10
IL_b21a: call string [mscorlib]System.Convert::ToString(int32)
IL_b21f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b224: stloc.s V_6
IL_b226: ldloc.s V_6
IL_b228: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b22d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b232: stloc.s V_9
IL_b234: ldloc.s V_8
IL_b236: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b23b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b240: stloc.s V_10
IL_b242: ldloc.s V_8
IL_b244: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b249: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b24e: stloc.s V_9
IL_b250: ldloc.s V_8
IL_b252: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b257: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b25c: stloc.s V_8
IL_b25e: ldloc.s V_9
IL_b260: ldloc.s V_7
IL_b262: beq.s IL_b2ac
IL_b264: ldloc.s V_7
IL_b266: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b26b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b270: stloc.s V_7
IL_b272: ldloc.s V_6
IL_b274: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b279: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b27e: stloc.s V_7
IL_b280: ldloc.s V_10
IL_b282: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b287: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b28c: stloc.s V_9
IL_b28e: ldloc.s V_10
IL_b290: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b295: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b29a: stloc.s V_10
IL_b29c: ldloc.s V_6
IL_b29e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b2a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b2a8: stloc.s V_10
IL_b2aa: br.s IL_b2f2
IL_b2ac: ldloc.s V_9
IL_b2ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b2b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b2b8: stloc.s V_6
IL_b2ba: ldloc.s V_6
IL_b2bc: call string [mscorlib]System.Convert::ToString(int32)
IL_b2c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b2c6: stloc.s V_10
IL_b2c8: ldloc.s V_10
IL_b2ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b2cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b2d4: stloc.s V_6
IL_b2d6: ldloc.s V_6
IL_b2d8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b2dd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b2e2: stloc.s V_8
IL_b2e4: ldloc.s V_9
IL_b2e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b2eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b2f0: stloc.s V_7
IL_b2f2: ldloc.s V_10
IL_b2f4: ldloc.s V_7
IL_b2f6: beq.s IL_b340
IL_b2f8: ldloc.s V_6
IL_b2fa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b2ff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b304: stloc.s V_8
IL_b306: ldloc.s V_9
IL_b308: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b30d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b312: stloc.s V_6
IL_b314: ldloc.s V_8
IL_b316: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b31b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b320: stloc.s V_9
IL_b322: ldloc.s V_8
IL_b324: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b329: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b32e: stloc.s V_7
IL_b330: ldloc.s V_7
IL_b332: call string [mscorlib]System.Convert::ToString(int32)
IL_b337: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b33c: stloc.s V_9
IL_b33e: br.s IL_b386
IL_b340: ldloc.s V_6
IL_b342: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b347: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b34c: stloc.s V_8
IL_b34e: ldloc.s V_10
IL_b350: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b355: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b35a: stloc.s V_10
IL_b35c: ldloc.s V_6
IL_b35e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b363: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b368: stloc.s V_6
IL_b36a: ldloc.s V_10
IL_b36c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b371: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b376: stloc.s V_8
IL_b378: ldloc.s V_7
IL_b37a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b37f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b384: stloc.s V_6
IL_b386: ldloc.s V_6
IL_b388: ldloc.s V_6
IL_b38a: ble.s IL_b3d4
IL_b38c: ldloc.s V_9
IL_b38e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b393: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b398: stloc.s V_9
IL_b39a: ldloc.s V_10
IL_b39c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3a6: stloc.s V_10
IL_b3a8: ldloc.s V_9
IL_b3aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b3af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b3b4: stloc.s V_10
IL_b3b6: ldloc.s V_8
IL_b3b8: call string [mscorlib]System.Convert::ToString(int32)
IL_b3bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b3c2: stloc.s V_8
IL_b3c4: ldloc.s V_6
IL_b3c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3d0: stloc.s V_8
IL_b3d2: br.s IL_b41a
IL_b3d4: ldloc.s V_8
IL_b3d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3e0: stloc.s V_9
IL_b3e2: ldloc.s V_10
IL_b3e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b3e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b3ee: stloc.s V_9
IL_b3f0: ldloc.s V_9
IL_b3f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b3f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b3fc: stloc.s V_7
IL_b3fe: ldloc.s V_10
IL_b400: call string [mscorlib]System.Convert::ToString(int32)
IL_b405: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b40a: stloc.s V_6
IL_b40c: ldloc.s V_8
IL_b40e: call string [mscorlib]System.Convert::ToString(int32)
IL_b413: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b418: stloc.s V_10
IL_b41a: ldloc.s V_7
IL_b41c: ldloc.s V_10
IL_b41e: bge.s IL_b468
IL_b420: ldloc.s V_7
IL_b422: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b427: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b42c: stloc.s V_7
IL_b42e: ldloc.s V_9
IL_b430: call string [mscorlib]System.Convert::ToString(int32)
IL_b435: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b43a: stloc.s V_8
IL_b43c: ldloc.s V_10
IL_b43e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b443: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b448: stloc.s V_6
IL_b44a: ldloc.s V_8
IL_b44c: call string [mscorlib]System.Convert::ToString(int32)
IL_b451: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b456: stloc.s V_6
IL_b458: ldloc.s V_10
IL_b45a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b45f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b464: stloc.s V_8
IL_b466: br.s IL_b4ae
IL_b468: ldloc.s V_8
IL_b46a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b46f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b474: stloc.s V_10
IL_b476: ldloc.s V_6
IL_b478: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b47d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b482: stloc.s V_9
IL_b484: ldloc.s V_10
IL_b486: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b48b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b490: stloc.s V_6
IL_b492: ldloc.s V_7
IL_b494: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b499: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b49e: stloc.s V_6
IL_b4a0: ldloc.s V_9
IL_b4a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b4a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b4ac: stloc.s V_6
IL_b4ae: ldloc.s V_7
IL_b4b0: ldloc.s V_8
IL_b4b2: bge.s IL_b4fc
IL_b4b4: ldloc.s V_10
IL_b4b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b4bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b4c0: stloc.s V_9
IL_b4c2: ldloc.s V_7
IL_b4c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b4c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b4ce: stloc.s V_9
IL_b4d0: ldloc.s V_10
IL_b4d2: call string [mscorlib]System.Convert::ToString(int32)
IL_b4d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b4dc: stloc.s V_10
IL_b4de: ldloc.s V_10
IL_b4e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b4e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b4ea: stloc.s V_6
IL_b4ec: ldloc.s V_9
IL_b4ee: call string [mscorlib]System.Convert::ToString(int32)
IL_b4f3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b4f8: stloc.s V_7
IL_b4fa: br.s IL_b542
IL_b4fc: ldloc.s V_6
IL_b4fe: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b503: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b508: stloc.s V_10
IL_b50a: ldloc.s V_9
IL_b50c: call string [mscorlib]System.Convert::ToString(int32)
IL_b511: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b516: stloc.s V_6
IL_b518: ldloc.s V_8
IL_b51a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b51f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b524: stloc.s V_9
IL_b526: ldloc.s V_9
IL_b528: call string [mscorlib]System.Convert::ToString(int32)
IL_b52d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b532: stloc.s V_7
IL_b534: ldloc.s V_6
IL_b536: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b53b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b540: stloc.s V_7
IL_b542: ldloc.s V_10
IL_b544: ldloc.s V_7
IL_b546: bge.s IL_b590
IL_b548: ldloc.s V_10
IL_b54a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b54f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b554: stloc.s V_6
IL_b556: ldloc.s V_6
IL_b558: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b55d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b562: stloc.s V_6
IL_b564: ldloc.s V_10
IL_b566: call string [mscorlib]System.Convert::ToString(int32)
IL_b56b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b570: stloc.s V_7
IL_b572: ldloc.s V_6
IL_b574: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b579: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b57e: stloc.s V_7
IL_b580: ldloc.s V_7
IL_b582: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b587: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b58c: stloc.s V_6
IL_b58e: br.s IL_b5d6
IL_b590: ldloc.s V_10
IL_b592: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b597: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b59c: stloc.s V_8
IL_b59e: ldloc.s V_9
IL_b5a0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b5a5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b5aa: stloc.s V_8
IL_b5ac: ldloc.s V_10
IL_b5ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b5b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b5b8: stloc.s V_9
IL_b5ba: ldloc.s V_9
IL_b5bc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b5c1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b5c6: stloc.s V_8
IL_b5c8: ldloc.s V_8
IL_b5ca: call string [mscorlib]System.Convert::ToString(int32)
IL_b5cf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b5d4: stloc.s V_8
IL_b5d6: ldloc.s V_10
IL_b5d8: ldloc.s V_7
IL_b5da: bne.un.s IL_b624
IL_b5dc: ldloc.s V_9
IL_b5de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b5e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b5e8: stloc.s V_9
IL_b5ea: ldloc.s V_6
IL_b5ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b5f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b5f6: stloc.s V_10
IL_b5f8: ldloc.s V_10
IL_b5fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b5ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b604: stloc.s V_10
IL_b606: ldloc.s V_6
IL_b608: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b60d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b612: stloc.s V_10
IL_b614: ldloc.s V_9
IL_b616: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b61b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b620: stloc.s V_7
IL_b622: br.s IL_b66a
IL_b624: ldloc.s V_10
IL_b626: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b62b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b630: stloc.s V_8
IL_b632: ldloc.s V_9
IL_b634: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b639: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b63e: stloc.s V_6
IL_b640: ldloc.s V_10
IL_b642: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b647: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b64c: stloc.s V_8
IL_b64e: ldloc.s V_8
IL_b650: call string [mscorlib]System.Convert::ToString(int32)
IL_b655: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b65a: stloc.s V_10
IL_b65c: ldloc.s V_6
IL_b65e: call string [mscorlib]System.Convert::ToString(int32)
IL_b663: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b668: stloc.s V_8
IL_b66a: ldloc.s V_8
IL_b66c: ldloc.s V_7
IL_b66e: blt.s IL_b6b8
IL_b670: ldloc.s V_8
IL_b672: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b677: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b67c: stloc.s V_10
IL_b67e: ldloc.s V_7
IL_b680: call string [mscorlib]System.Convert::ToString(int32)
IL_b685: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b68a: stloc.s V_8
IL_b68c: ldloc.s V_7
IL_b68e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b693: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b698: stloc.s V_10
IL_b69a: ldloc.s V_9
IL_b69c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b6a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b6a6: stloc.s V_9
IL_b6a8: ldloc.s V_6
IL_b6aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b6af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b6b4: stloc.s V_9
IL_b6b6: br.s IL_b6fe
IL_b6b8: ldloc.s V_9
IL_b6ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b6bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b6c4: stloc.s V_10
IL_b6c6: ldloc.s V_6
IL_b6c8: call string [mscorlib]System.Convert::ToString(int32)
IL_b6cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b6d2: stloc.s V_8
IL_b6d4: ldloc.s V_10
IL_b6d6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b6db: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b6e0: stloc.s V_8
IL_b6e2: ldloc.s V_7
IL_b6e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b6e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b6ee: stloc.s V_9
IL_b6f0: ldloc.s V_6
IL_b6f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b6f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b6fc: stloc.s V_8
IL_b6fe: ldloc.s V_7
IL_b700: ldloc.s V_10
IL_b702: beq.s IL_b74c
IL_b704: ldloc.s V_10
IL_b706: call string [mscorlib]System.Convert::ToString(int32)
IL_b70b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b710: stloc.s V_10
IL_b712: ldloc.s V_6
IL_b714: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b719: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b71e: stloc.s V_6
IL_b720: ldloc.s V_7
IL_b722: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b727: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b72c: stloc.s V_8
IL_b72e: ldloc.s V_7
IL_b730: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b735: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b73a: stloc.s V_8
IL_b73c: ldloc.s V_8
IL_b73e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b743: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b748: stloc.s V_7
IL_b74a: br.s IL_b792
IL_b74c: ldloc.s V_9
IL_b74e: call string [mscorlib]System.Convert::ToString(int32)
IL_b753: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b758: stloc.s V_8
IL_b75a: ldloc.s V_10
IL_b75c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b761: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b766: stloc.s V_7
IL_b768: ldloc.s V_7
IL_b76a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b76f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b774: stloc.s V_7
IL_b776: ldloc.s V_9
IL_b778: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b77d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b782: stloc.s V_9
IL_b784: ldloc.s V_6
IL_b786: call string [mscorlib]System.Convert::ToString(int32)
IL_b78b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b790: stloc.s V_6
IL_b792: ldloc.s V_9
IL_b794: ldloc.s V_8
IL_b796: bge.s IL_b7e0
IL_b798: ldloc.s V_8
IL_b79a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b79f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b7a4: stloc.s V_9
IL_b7a6: ldloc.s V_6
IL_b7a8: call string [mscorlib]System.Convert::ToString(int32)
IL_b7ad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b7b2: stloc.s V_6
IL_b7b4: ldloc.s V_8
IL_b7b6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b7bb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b7c0: stloc.s V_8
IL_b7c2: ldloc.s V_6
IL_b7c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b7c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b7ce: stloc.s V_9
IL_b7d0: ldloc.s V_10
IL_b7d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b7d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b7dc: stloc.s V_9
IL_b7de: br.s IL_b826
IL_b7e0: ldloc.s V_9
IL_b7e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b7e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b7ec: stloc.s V_9
IL_b7ee: ldloc.s V_8
IL_b7f0: call string [mscorlib]System.Convert::ToString(int32)
IL_b7f5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b7fa: stloc.s V_8
IL_b7fc: ldloc.s V_7
IL_b7fe: call string [mscorlib]System.Convert::ToString(int32)
IL_b803: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b808: stloc.s V_10
IL_b80a: ldloc.s V_6
IL_b80c: call string [mscorlib]System.Convert::ToString(int32)
IL_b811: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b816: stloc.s V_9
IL_b818: ldloc.s V_9
IL_b81a: call string [mscorlib]System.Convert::ToString(int32)
IL_b81f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b824: stloc.s V_8
IL_b826: ldloc.s V_6
IL_b828: ldloc.s V_6
IL_b82a: bge.s IL_b874
IL_b82c: ldloc.s V_7
IL_b82e: call string [mscorlib]System.Convert::ToString(int32)
IL_b833: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b838: stloc.s V_9
IL_b83a: ldloc.s V_6
IL_b83c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b841: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b846: stloc.s V_6
IL_b848: ldloc.s V_10
IL_b84a: call string [mscorlib]System.Convert::ToString(int32)
IL_b84f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b854: stloc.s V_8
IL_b856: ldloc.s V_7
IL_b858: call string [mscorlib]System.Convert::ToString(int32)
IL_b85d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b862: stloc.s V_8
IL_b864: ldloc.s V_7
IL_b866: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b86b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b870: stloc.s V_6
IL_b872: br.s IL_b8ba
IL_b874: ldloc.s V_9
IL_b876: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b87b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b880: stloc.s V_10
IL_b882: ldloc.s V_6
IL_b884: call string [mscorlib]System.Convert::ToString(int32)
IL_b889: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b88e: stloc.s V_7
IL_b890: ldloc.s V_6
IL_b892: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b897: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b89c: stloc.s V_6
IL_b89e: ldloc.s V_6
IL_b8a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b8a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b8aa: stloc.s V_7
IL_b8ac: ldloc.s V_8
IL_b8ae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b8b3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b8b8: stloc.s V_6
IL_b8ba: ldloc.s V_7
IL_b8bc: ldloc.s V_10
IL_b8be: bne.un.s IL_b908
IL_b8c0: ldloc.s V_10
IL_b8c2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b8c7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b8cc: stloc.s V_6
IL_b8ce: ldloc.s V_8
IL_b8d0: call string [mscorlib]System.Convert::ToString(int32)
IL_b8d5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b8da: stloc.s V_8
IL_b8dc: ldloc.s V_10
IL_b8de: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b8e3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b8e8: stloc.s V_9
IL_b8ea: ldloc.s V_6
IL_b8ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b8f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b8f6: stloc.s V_9
IL_b8f8: ldloc.s V_9
IL_b8fa: call string [mscorlib]System.Convert::ToString(int32)
IL_b8ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b904: stloc.s V_10
IL_b906: br.s IL_b94e
IL_b908: ldloc.s V_6
IL_b90a: call string [mscorlib]System.Convert::ToString(int32)
IL_b90f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b914: stloc.s V_9
IL_b916: ldloc.s V_8
IL_b918: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b91d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b922: stloc.s V_6
IL_b924: ldloc.s V_9
IL_b926: call string [mscorlib]System.Convert::ToString(int32)
IL_b92b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b930: stloc.s V_10
IL_b932: ldloc.s V_6
IL_b934: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b939: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b93e: stloc.s V_6
IL_b940: ldloc.s V_9
IL_b942: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b947: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b94c: stloc.s V_10
IL_b94e: ldloc.s V_9
IL_b950: ldloc.s V_6
IL_b952: blt.s IL_b99c
IL_b954: ldloc.s V_6
IL_b956: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b95b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b960: stloc.s V_7
IL_b962: ldloc.s V_9
IL_b964: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b969: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b96e: stloc.s V_8
IL_b970: ldloc.s V_9
IL_b972: call string [mscorlib]System.Convert::ToString(int32)
IL_b977: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b97c: stloc.s V_7
IL_b97e: ldloc.s V_7
IL_b980: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b985: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b98a: stloc.s V_7
IL_b98c: ldloc.s V_10
IL_b98e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b993: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b998: stloc.s V_10
IL_b99a: br.s IL_b9e2
IL_b99c: ldloc.s V_8
IL_b99e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b9a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_b9a8: stloc.s V_8
IL_b9aa: ldloc.s V_8
IL_b9ac: call string [mscorlib]System.Convert::ToString(int32)
IL_b9b1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b9b6: stloc.s V_7
IL_b9b8: ldloc.s V_7
IL_b9ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_b9bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_b9c4: stloc.s V_8
IL_b9c6: ldloc.s V_10
IL_b9c8: call string [mscorlib]System.Convert::ToString(int32)
IL_b9cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b9d2: stloc.s V_7
IL_b9d4: ldloc.s V_8
IL_b9d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_b9db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_b9e0: stloc.s V_7
IL_b9e2: ldloc.s V_7
IL_b9e4: ldloc.s V_9
IL_b9e6: bge.s IL_ba30
IL_b9e8: ldloc.s V_8
IL_b9ea: call string [mscorlib]System.Convert::ToString(int32)
IL_b9ef: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_b9f4: stloc.s V_6
IL_b9f6: ldloc.s V_7
IL_b9f8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_b9fd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ba02: stloc.s V_9
IL_ba04: ldloc.s V_7
IL_ba06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba10: stloc.s V_7
IL_ba12: ldloc.s V_6
IL_ba14: call string [mscorlib]System.Convert::ToString(int32)
IL_ba19: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ba1e: stloc.s V_9
IL_ba20: ldloc.s V_8
IL_ba22: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ba27: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ba2c: stloc.s V_7
IL_ba2e: br.s IL_ba76
IL_ba30: ldloc.s V_6
IL_ba32: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ba37: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ba3c: stloc.s V_7
IL_ba3e: ldloc.s V_6
IL_ba40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba4a: stloc.s V_6
IL_ba4c: ldloc.s V_6
IL_ba4e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba53: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba58: stloc.s V_9
IL_ba5a: ldloc.s V_10
IL_ba5c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ba61: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ba66: stloc.s V_9
IL_ba68: ldloc.s V_10
IL_ba6a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba6f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba74: stloc.s V_10
IL_ba76: ldloc.s V_6
IL_ba78: ldloc.s V_7
IL_ba7a: ble.s IL_bac4
IL_ba7c: ldloc.s V_9
IL_ba7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba88: stloc.s V_9
IL_ba8a: ldloc.s V_6
IL_ba8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ba96: stloc.s V_7
IL_ba98: ldloc.s V_9
IL_ba9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ba9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_baa4: stloc.s V_7
IL_baa6: ldloc.s V_8
IL_baa8: call string [mscorlib]System.Convert::ToString(int32)
IL_baad: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bab2: stloc.s V_6
IL_bab4: ldloc.s V_8
IL_bab6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_babb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bac0: stloc.s V_6
IL_bac2: br.s IL_bb0a
IL_bac4: ldloc.s V_8
IL_bac6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bacb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bad0: stloc.s V_7
IL_bad2: ldloc.s V_7
IL_bad4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bad9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bade: stloc.s V_8
IL_bae0: ldloc.s V_9
IL_bae2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bae7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_baec: stloc.s V_8
IL_baee: ldloc.s V_6
IL_baf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_baf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bafa: stloc.s V_8
IL_bafc: ldloc.s V_10
IL_bafe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bb03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bb08: stloc.s V_8
IL_bb0a: ldloc.s V_9
IL_bb0c: ldloc.s V_8
IL_bb0e: bgt.s IL_bb58
IL_bb10: ldloc.s V_6
IL_bb12: call string [mscorlib]System.Convert::ToString(int32)
IL_bb17: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb1c: stloc.s V_10
IL_bb1e: ldloc.s V_8
IL_bb20: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bb25: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bb2a: stloc.s V_9
IL_bb2c: ldloc.s V_6
IL_bb2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bb33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bb38: stloc.s V_6
IL_bb3a: ldloc.s V_6
IL_bb3c: call string [mscorlib]System.Convert::ToString(int32)
IL_bb41: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb46: stloc.s V_8
IL_bb48: ldloc.s V_7
IL_bb4a: call string [mscorlib]System.Convert::ToString(int32)
IL_bb4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb54: stloc.s V_8
IL_bb56: br.s IL_bb9e
IL_bb58: ldloc.s V_10
IL_bb5a: call string [mscorlib]System.Convert::ToString(int32)
IL_bb5f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb64: stloc.s V_7
IL_bb66: ldloc.s V_10
IL_bb68: call string [mscorlib]System.Convert::ToString(int32)
IL_bb6d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb72: stloc.s V_7
IL_bb74: ldloc.s V_8
IL_bb76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bb7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bb80: stloc.s V_10
IL_bb82: ldloc.s V_6
IL_bb84: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bb89: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bb8e: stloc.s V_10
IL_bb90: ldloc.s V_8
IL_bb92: call string [mscorlib]System.Convert::ToString(int32)
IL_bb97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bb9c: stloc.s V_6
IL_bb9e: ldloc.s V_8
IL_bba0: ldloc.s V_6
IL_bba2: bne.un.s IL_bbec
IL_bba4: ldloc.s V_7
IL_bba6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bbab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bbb0: stloc.s V_10
IL_bbb2: ldloc.s V_6
IL_bbb4: call string [mscorlib]System.Convert::ToString(int32)
IL_bbb9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bbbe: stloc.s V_7
IL_bbc0: ldloc.s V_7
IL_bbc2: call string [mscorlib]System.Convert::ToString(int32)
IL_bbc7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bbcc: stloc.s V_6
IL_bbce: ldloc.s V_9
IL_bbd0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bbd5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bbda: stloc.s V_7
IL_bbdc: ldloc.s V_7
IL_bbde: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bbe3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bbe8: stloc.s V_8
IL_bbea: br.s IL_bc32
IL_bbec: ldloc.s V_10
IL_bbee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bbf3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bbf8: stloc.s V_9
IL_bbfa: ldloc.s V_10
IL_bbfc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bc01: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bc06: stloc.s V_6
IL_bc08: ldloc.s V_7
IL_bc0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bc0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bc14: stloc.s V_8
IL_bc16: ldloc.s V_6
IL_bc18: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bc1d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bc22: stloc.s V_8
IL_bc24: ldloc.s V_6
IL_bc26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bc2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bc30: stloc.s V_7
IL_bc32: ldloc.s V_9
IL_bc34: ldloc.s V_6
IL_bc36: bgt.s IL_bc80
IL_bc38: ldloc.s V_7
IL_bc3a: call string [mscorlib]System.Convert::ToString(int32)
IL_bc3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bc44: stloc.s V_6
IL_bc46: ldloc.s V_10
IL_bc48: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bc4d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bc52: stloc.s V_10
IL_bc54: ldloc.s V_6
IL_bc56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bc5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bc60: stloc.s V_10
IL_bc62: ldloc.s V_6
IL_bc64: call string [mscorlib]System.Convert::ToString(int32)
IL_bc69: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bc6e: stloc.s V_9
IL_bc70: ldloc.s V_6
IL_bc72: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bc77: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bc7c: stloc.s V_10
IL_bc7e: br.s IL_bcc6
IL_bc80: ldloc.s V_9
IL_bc82: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bc87: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bc8c: stloc.s V_10
IL_bc8e: ldloc.s V_7
IL_bc90: call string [mscorlib]System.Convert::ToString(int32)
IL_bc95: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bc9a: stloc.s V_8
IL_bc9c: ldloc.s V_7
IL_bc9e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bca3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bca8: stloc.s V_6
IL_bcaa: ldloc.s V_9
IL_bcac: call string [mscorlib]System.Convert::ToString(int32)
IL_bcb1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bcb6: stloc.s V_6
IL_bcb8: ldloc.s V_8
IL_bcba: call string [mscorlib]System.Convert::ToString(int32)
IL_bcbf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bcc4: stloc.s V_6
IL_bcc6: ldloc.s V_9
IL_bcc8: ldloc.s V_8
IL_bcca: ble.s IL_bd14
IL_bccc: ldloc.s V_7
IL_bcce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bcd3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bcd8: stloc.s V_9
IL_bcda: ldloc.s V_6
IL_bcdc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bce1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bce6: stloc.s V_10
IL_bce8: ldloc.s V_10
IL_bcea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bcef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bcf4: stloc.s V_10
IL_bcf6: ldloc.s V_7
IL_bcf8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bcfd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd02: stloc.s V_10
IL_bd04: ldloc.s V_8
IL_bd06: call string [mscorlib]System.Convert::ToString(int32)
IL_bd0b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bd10: stloc.s V_7
IL_bd12: br.s IL_bd5a
IL_bd14: ldloc.s V_9
IL_bd16: call string [mscorlib]System.Convert::ToString(int32)
IL_bd1b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bd20: stloc.s V_6
IL_bd22: ldloc.s V_10
IL_bd24: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd29: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd2e: stloc.s V_8
IL_bd30: ldloc.s V_7
IL_bd32: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bd37: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bd3c: stloc.s V_9
IL_bd3e: ldloc.s V_8
IL_bd40: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd45: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd4a: stloc.s V_6
IL_bd4c: ldloc.s V_8
IL_bd4e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd53: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd58: stloc.s V_7
IL_bd5a: ldloc.s V_9
IL_bd5c: ldloc.s V_10
IL_bd5e: bgt.s IL_bda8
IL_bd60: ldloc.s V_10
IL_bd62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bd67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bd6c: stloc.s V_9
IL_bd6e: ldloc.s V_8
IL_bd70: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd75: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bd7a: stloc.s V_9
IL_bd7c: ldloc.s V_8
IL_bd7e: call string [mscorlib]System.Convert::ToString(int32)
IL_bd83: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bd88: stloc.s V_9
IL_bd8a: ldloc.s V_8
IL_bd8c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bd91: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bd96: stloc.s V_8
IL_bd98: ldloc.s V_10
IL_bd9a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bd9f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bda4: stloc.s V_10
IL_bda6: br.s IL_bdee
IL_bda8: ldloc.s V_6
IL_bdaa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bdaf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bdb4: stloc.s V_6
IL_bdb6: ldloc.s V_10
IL_bdb8: call string [mscorlib]System.Convert::ToString(int32)
IL_bdbd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bdc2: stloc.s V_10
IL_bdc4: ldloc.s V_8
IL_bdc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bdcb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bdd0: stloc.s V_8
IL_bdd2: ldloc.s V_10
IL_bdd4: call string [mscorlib]System.Convert::ToString(int32)
IL_bdd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bdde: stloc.s V_10
IL_bde0: ldloc.s V_8
IL_bde2: call string [mscorlib]System.Convert::ToString(int32)
IL_bde7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bdec: stloc.s V_8
IL_bdee: ldloc.s V_7
IL_bdf0: ldloc.s V_6
IL_bdf2: blt.s IL_be3c
IL_bdf4: ldloc.s V_8
IL_bdf6: call string [mscorlib]System.Convert::ToString(int32)
IL_bdfb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_be00: stloc.s V_8
IL_be02: ldloc.s V_9
IL_be04: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_be09: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_be0e: stloc.s V_9
IL_be10: ldloc.s V_7
IL_be12: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_be17: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_be1c: stloc.s V_7
IL_be1e: ldloc.s V_9
IL_be20: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be25: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be2a: stloc.s V_8
IL_be2c: ldloc.s V_6
IL_be2e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_be33: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_be38: stloc.s V_9
IL_be3a: br.s IL_be82
IL_be3c: ldloc.s V_10
IL_be3e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be43: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be48: stloc.s V_8
IL_be4a: ldloc.s V_6
IL_be4c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_be51: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_be56: stloc.s V_7
IL_be58: ldloc.s V_6
IL_be5a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be5f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be64: stloc.s V_6
IL_be66: ldloc.s V_7
IL_be68: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_be6d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_be72: stloc.s V_7
IL_be74: ldloc.s V_10
IL_be76: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_be7b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_be80: stloc.s V_8
IL_be82: ldloc.s V_6
IL_be84: ldloc.s V_10
IL_be86: beq.s IL_bed0
IL_be88: ldloc.s V_7
IL_be8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_be8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_be94: stloc.s V_8
IL_be96: ldloc.s V_9
IL_be98: call string [mscorlib]System.Convert::ToString(int32)
IL_be9d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bea2: stloc.s V_7
IL_bea4: ldloc.s V_9
IL_bea6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_beab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_beb0: stloc.s V_8
IL_beb2: ldloc.s V_9
IL_beb4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_beb9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bebe: stloc.s V_8
IL_bec0: ldloc.s V_8
IL_bec2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bec7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_becc: stloc.s V_9
IL_bece: br.s IL_bf16
IL_bed0: ldloc.s V_9
IL_bed2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bed7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bedc: stloc.s V_9
IL_bede: ldloc.s V_8
IL_bee0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bee5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_beea: stloc.s V_8
IL_beec: ldloc.s V_7
IL_beee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bef3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bef8: stloc.s V_10
IL_befa: ldloc.s V_8
IL_befc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bf01: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bf06: stloc.s V_8
IL_bf08: ldloc.s V_10
IL_bf0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bf0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bf14: stloc.s V_7
IL_bf16: ldloc.s V_8
IL_bf18: ldloc.s V_7
IL_bf1a: blt.s IL_bf64
IL_bf1c: ldloc.s V_10
IL_bf1e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bf23: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bf28: stloc.s V_10
IL_bf2a: ldloc.s V_8
IL_bf2c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bf31: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bf36: stloc.s V_10
IL_bf38: ldloc.s V_7
IL_bf3a: call string [mscorlib]System.Convert::ToString(int32)
IL_bf3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf44: stloc.s V_6
IL_bf46: ldloc.s V_7
IL_bf48: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bf4d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bf52: stloc.s V_8
IL_bf54: ldloc.s V_8
IL_bf56: call string [mscorlib]System.Convert::ToString(int32)
IL_bf5b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf60: stloc.s V_7
IL_bf62: br.s IL_bfaa
IL_bf64: ldloc.s V_10
IL_bf66: call string [mscorlib]System.Convert::ToString(int32)
IL_bf6b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf70: stloc.s V_10
IL_bf72: ldloc.s V_10
IL_bf74: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bf79: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bf7e: stloc.s V_7
IL_bf80: ldloc.s V_10
IL_bf82: call string [mscorlib]System.Convert::ToString(int32)
IL_bf87: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bf8c: stloc.s V_8
IL_bf8e: ldloc.s V_7
IL_bf90: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bf95: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bf9a: stloc.s V_10
IL_bf9c: ldloc.s V_9
IL_bf9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bfa3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bfa8: stloc.s V_6
IL_bfaa: ldloc.s V_6
IL_bfac: ldloc.s V_7
IL_bfae: beq.s IL_bff8
IL_bfb0: ldloc.s V_6
IL_bfb2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bfb7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bfbc: stloc.s V_8
IL_bfbe: ldloc.s V_10
IL_bfc0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_bfc5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_bfca: stloc.s V_8
IL_bfcc: ldloc.s V_7
IL_bfce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_bfd3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_bfd8: stloc.s V_6
IL_bfda: ldloc.s V_6
IL_bfdc: call string [mscorlib]System.Convert::ToString(int32)
IL_bfe1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_bfe6: stloc.s V_6
IL_bfe8: ldloc.s V_8
IL_bfea: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_bfef: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_bff4: stloc.s V_6
IL_bff6: br.s IL_c03e
IL_bff8: ldloc.s V_6
IL_bffa: call string [mscorlib]System.Convert::ToString(int32)
IL_bfff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c004: stloc.s V_6
IL_c006: ldloc.s V_6
IL_c008: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c00d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c012: stloc.s V_10
IL_c014: ldloc.s V_9
IL_c016: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c01b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c020: stloc.s V_7
IL_c022: ldloc.s V_7
IL_c024: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c029: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c02e: stloc.s V_6
IL_c030: ldloc.s V_8
IL_c032: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c037: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c03c: stloc.s V_7
IL_c03e: ldloc.s V_8
IL_c040: ldloc.s V_7
IL_c042: bgt.s IL_c08c
IL_c044: ldloc.s V_10
IL_c046: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c04b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c050: stloc.s V_10
IL_c052: ldloc.s V_10
IL_c054: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c059: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c05e: stloc.s V_7
IL_c060: ldloc.s V_10
IL_c062: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c067: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c06c: stloc.s V_10
IL_c06e: ldloc.s V_6
IL_c070: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c075: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c07a: stloc.s V_8
IL_c07c: ldloc.s V_10
IL_c07e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c083: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c088: stloc.s V_10
IL_c08a: br.s IL_c0d2
IL_c08c: ldloc.s V_9
IL_c08e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c093: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c098: stloc.s V_9
IL_c09a: ldloc.s V_10
IL_c09c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c0a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c0a6: stloc.s V_8
IL_c0a8: ldloc.s V_8
IL_c0aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c0af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c0b4: stloc.s V_6
IL_c0b6: ldloc.s V_9
IL_c0b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c0bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c0c2: stloc.s V_8
IL_c0c4: ldloc.s V_7
IL_c0c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c0cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c0d0: stloc.s V_9
IL_c0d2: ldloc.s V_8
IL_c0d4: ldloc.s V_10
IL_c0d6: bne.un.s IL_c120
IL_c0d8: ldloc.s V_7
IL_c0da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c0df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c0e4: stloc.s V_9
IL_c0e6: ldloc.s V_6
IL_c0e8: call string [mscorlib]System.Convert::ToString(int32)
IL_c0ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c0f2: stloc.s V_9
IL_c0f4: ldloc.s V_6
IL_c0f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c0fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c100: stloc.s V_7
IL_c102: ldloc.s V_6
IL_c104: call string [mscorlib]System.Convert::ToString(int32)
IL_c109: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c10e: stloc.s V_6
IL_c110: ldloc.s V_7
IL_c112: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c117: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c11c: stloc.s V_9
IL_c11e: br.s IL_c166
IL_c120: ldloc.s V_10
IL_c122: call string [mscorlib]System.Convert::ToString(int32)
IL_c127: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c12c: stloc.s V_7
IL_c12e: ldloc.s V_9
IL_c130: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c135: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c13a: stloc.s V_10
IL_c13c: ldloc.s V_8
IL_c13e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c143: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c148: stloc.s V_8
IL_c14a: ldloc.s V_10
IL_c14c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c151: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c156: stloc.s V_7
IL_c158: ldloc.s V_6
IL_c15a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c15f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c164: stloc.s V_6
IL_c166: ldloc.s V_9
IL_c168: ldloc.s V_9
IL_c16a: bne.un.s IL_c1b4
IL_c16c: ldloc.s V_8
IL_c16e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c173: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c178: stloc.s V_6
IL_c17a: ldloc.s V_8
IL_c17c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c181: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c186: stloc.s V_8
IL_c188: ldloc.s V_10
IL_c18a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c18f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c194: stloc.s V_8
IL_c196: ldloc.s V_8
IL_c198: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c19d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c1a2: stloc.s V_9
IL_c1a4: ldloc.s V_7
IL_c1a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c1ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c1b0: stloc.s V_7
IL_c1b2: br.s IL_c1fa
IL_c1b4: ldloc.s V_7
IL_c1b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c1bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c1c0: stloc.s V_8
IL_c1c2: ldloc.s V_7
IL_c1c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c1c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c1ce: stloc.s V_7
IL_c1d0: ldloc.s V_8
IL_c1d2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c1d7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c1dc: stloc.s V_7
IL_c1de: ldloc.s V_9
IL_c1e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c1e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c1ea: stloc.s V_9
IL_c1ec: ldloc.s V_10
IL_c1ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c1f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c1f8: stloc.s V_7
IL_c1fa: ldloc.s V_8
IL_c1fc: ldloc.s V_6
IL_c1fe: ble.s IL_c248
IL_c200: ldloc.s V_10
IL_c202: call string [mscorlib]System.Convert::ToString(int32)
IL_c207: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c20c: stloc.s V_7
IL_c20e: ldloc.s V_9
IL_c210: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c215: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c21a: stloc.s V_9
IL_c21c: ldloc.s V_6
IL_c21e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c223: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c228: stloc.s V_8
IL_c22a: ldloc.s V_9
IL_c22c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c231: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c236: stloc.s V_9
IL_c238: ldloc.s V_6
IL_c23a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c23f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c244: stloc.s V_10
IL_c246: br.s IL_c28e
IL_c248: ldloc.s V_9
IL_c24a: call string [mscorlib]System.Convert::ToString(int32)
IL_c24f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c254: stloc.s V_8
IL_c256: ldloc.s V_9
IL_c258: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c25d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c262: stloc.s V_9
IL_c264: ldloc.s V_6
IL_c266: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c26b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c270: stloc.s V_8
IL_c272: ldloc.s V_8
IL_c274: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c279: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c27e: stloc.s V_6
IL_c280: ldloc.s V_9
IL_c282: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c287: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c28c: stloc.s V_9
IL_c28e: ldloc.s V_9
IL_c290: ldloc.s V_8
IL_c292: beq.s IL_c2dc
IL_c294: ldloc.s V_7
IL_c296: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c29b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2a0: stloc.s V_8
IL_c2a2: ldloc.s V_9
IL_c2a4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2a9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2ae: stloc.s V_8
IL_c2b0: ldloc.s V_9
IL_c2b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2bc: stloc.s V_9
IL_c2be: ldloc.s V_7
IL_c2c0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c2c5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c2ca: stloc.s V_7
IL_c2cc: ldloc.s V_7
IL_c2ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2d8: stloc.s V_9
IL_c2da: br.s IL_c322
IL_c2dc: ldloc.s V_10
IL_c2de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c2e8: stloc.s V_9
IL_c2ea: ldloc.s V_7
IL_c2ec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c2f1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c2f6: stloc.s V_7
IL_c2f8: ldloc.s V_9
IL_c2fa: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c2ff: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c304: stloc.s V_7
IL_c306: ldloc.s V_10
IL_c308: call string [mscorlib]System.Convert::ToString(int32)
IL_c30d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c312: stloc.s V_10
IL_c314: ldloc.s V_6
IL_c316: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c31b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c320: stloc.s V_6
IL_c322: ldloc.s V_9
IL_c324: ldloc.s V_6
IL_c326: blt.s IL_c370
IL_c328: ldloc.s V_6
IL_c32a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c32f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c334: stloc.s V_7
IL_c336: ldloc.s V_9
IL_c338: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c33d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c342: stloc.s V_10
IL_c344: ldloc.s V_8
IL_c346: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c34b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c350: stloc.s V_10
IL_c352: ldloc.s V_8
IL_c354: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c359: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c35e: stloc.s V_6
IL_c360: ldloc.s V_10
IL_c362: call string [mscorlib]System.Convert::ToString(int32)
IL_c367: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c36c: stloc.s V_10
IL_c36e: br.s IL_c3b6
IL_c370: ldloc.s V_8
IL_c372: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c377: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c37c: stloc.s V_7
IL_c37e: ldloc.s V_7
IL_c380: call string [mscorlib]System.Convert::ToString(int32)
IL_c385: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c38a: stloc.s V_10
IL_c38c: ldloc.s V_10
IL_c38e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c393: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c398: stloc.s V_7
IL_c39a: ldloc.s V_7
IL_c39c: call string [mscorlib]System.Convert::ToString(int32)
IL_c3a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c3a6: stloc.s V_8
IL_c3a8: ldloc.s V_10
IL_c3aa: call string [mscorlib]System.Convert::ToString(int32)
IL_c3af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c3b4: stloc.s V_9
IL_c3b6: ldloc.s V_10
IL_c3b8: ldloc.s V_9
IL_c3ba: bgt.s IL_c404
IL_c3bc: ldloc.s V_8
IL_c3be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c3c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c3c8: stloc.s V_6
IL_c3ca: ldloc.s V_9
IL_c3cc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c3d1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c3d6: stloc.s V_6
IL_c3d8: ldloc.s V_6
IL_c3da: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c3df: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c3e4: stloc.s V_6
IL_c3e6: ldloc.s V_9
IL_c3e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c3ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c3f2: stloc.s V_9
IL_c3f4: ldloc.s V_10
IL_c3f6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c3fb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c400: stloc.s V_7
IL_c402: br.s IL_c44a
IL_c404: ldloc.s V_10
IL_c406: call string [mscorlib]System.Convert::ToString(int32)
IL_c40b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c410: stloc.s V_6
IL_c412: ldloc.s V_6
IL_c414: call string [mscorlib]System.Convert::ToString(int32)
IL_c419: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c41e: stloc.s V_9
IL_c420: ldloc.s V_6
IL_c422: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c427: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c42c: stloc.s V_10
IL_c42e: ldloc.s V_8
IL_c430: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c435: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c43a: stloc.s V_6
IL_c43c: ldloc.s V_8
IL_c43e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c443: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c448: stloc.s V_8
IL_c44a: ldloc.s V_8
IL_c44c: ldloc.s V_8
IL_c44e: bgt.s IL_c498
IL_c450: ldloc.s V_7
IL_c452: call string [mscorlib]System.Convert::ToString(int32)
IL_c457: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c45c: stloc.s V_9
IL_c45e: ldloc.s V_6
IL_c460: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c465: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c46a: stloc.s V_8
IL_c46c: ldloc.s V_8
IL_c46e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c473: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c478: stloc.s V_9
IL_c47a: ldloc.s V_6
IL_c47c: call string [mscorlib]System.Convert::ToString(int32)
IL_c481: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c486: stloc.s V_7
IL_c488: ldloc.s V_9
IL_c48a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c48f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c494: stloc.s V_6
IL_c496: br.s IL_c4de
IL_c498: ldloc.s V_10
IL_c49a: call string [mscorlib]System.Convert::ToString(int32)
IL_c49f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c4a4: stloc.s V_7
IL_c4a6: ldloc.s V_7
IL_c4a8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c4ad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c4b2: stloc.s V_10
IL_c4b4: ldloc.s V_6
IL_c4b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c4bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c4c0: stloc.s V_9
IL_c4c2: ldloc.s V_9
IL_c4c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c4c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c4ce: stloc.s V_7
IL_c4d0: ldloc.s V_6
IL_c4d2: call string [mscorlib]System.Convert::ToString(int32)
IL_c4d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c4dc: stloc.s V_6
IL_c4de: ldloc.s V_6
IL_c4e0: ldloc.s V_10
IL_c4e2: bgt.s IL_c52c
IL_c4e4: ldloc.s V_7
IL_c4e6: call string [mscorlib]System.Convert::ToString(int32)
IL_c4eb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c4f0: stloc.s V_7
IL_c4f2: ldloc.s V_8
IL_c4f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c4f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c4fe: stloc.s V_9
IL_c500: ldloc.s V_9
IL_c502: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c507: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c50c: stloc.s V_10
IL_c50e: ldloc.s V_8
IL_c510: call string [mscorlib]System.Convert::ToString(int32)
IL_c515: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c51a: stloc.s V_8
IL_c51c: ldloc.s V_10
IL_c51e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c523: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c528: stloc.s V_6
IL_c52a: br.s IL_c572
IL_c52c: ldloc.s V_8
IL_c52e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c533: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c538: stloc.s V_10
IL_c53a: ldloc.s V_8
IL_c53c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c541: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c546: stloc.s V_9
IL_c548: ldloc.s V_7
IL_c54a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c54f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c554: stloc.s V_6
IL_c556: ldloc.s V_7
IL_c558: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c55d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c562: stloc.s V_6
IL_c564: ldloc.s V_7
IL_c566: call string [mscorlib]System.Convert::ToString(int32)
IL_c56b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c570: stloc.s V_8
IL_c572: ldloc.s V_9
IL_c574: ldloc.s V_8
IL_c576: blt.s IL_c5c0
IL_c578: ldloc.s V_9
IL_c57a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c57f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c584: stloc.s V_6
IL_c586: ldloc.s V_7
IL_c588: call string [mscorlib]System.Convert::ToString(int32)
IL_c58d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c592: stloc.s V_7
IL_c594: ldloc.s V_10
IL_c596: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c59b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5a0: stloc.s V_7
IL_c5a2: ldloc.s V_9
IL_c5a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c5a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5ae: stloc.s V_9
IL_c5b0: ldloc.s V_10
IL_c5b2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c5b7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5bc: stloc.s V_8
IL_c5be: br.s IL_c606
IL_c5c0: ldloc.s V_7
IL_c5c2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c5c7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c5cc: stloc.s V_9
IL_c5ce: ldloc.s V_7
IL_c5d0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c5d5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c5da: stloc.s V_8
IL_c5dc: ldloc.s V_7
IL_c5de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c5e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c5e8: stloc.s V_7
IL_c5ea: ldloc.s V_7
IL_c5ec: call string [mscorlib]System.Convert::ToString(int32)
IL_c5f1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c5f6: stloc.s V_10
IL_c5f8: ldloc.s V_7
IL_c5fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c5ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c604: stloc.s V_7
IL_c606: ldloc.s V_6
IL_c608: ldloc.s V_10
IL_c60a: blt.s IL_c654
IL_c60c: ldloc.s V_6
IL_c60e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c613: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c618: stloc.s V_6
IL_c61a: ldloc.s V_8
IL_c61c: call string [mscorlib]System.Convert::ToString(int32)
IL_c621: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c626: stloc.s V_6
IL_c628: ldloc.s V_9
IL_c62a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c62f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c634: stloc.s V_7
IL_c636: ldloc.s V_6
IL_c638: call string [mscorlib]System.Convert::ToString(int32)
IL_c63d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c642: stloc.s V_9
IL_c644: ldloc.s V_10
IL_c646: call string [mscorlib]System.Convert::ToString(int32)
IL_c64b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c650: stloc.s V_9
IL_c652: br.s IL_c69a
IL_c654: ldloc.s V_8
IL_c656: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c65b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c660: stloc.s V_7
IL_c662: ldloc.s V_9
IL_c664: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c669: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c66e: stloc.s V_10
IL_c670: ldloc.s V_8
IL_c672: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c677: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c67c: stloc.s V_7
IL_c67e: ldloc.s V_6
IL_c680: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c685: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c68a: stloc.s V_7
IL_c68c: ldloc.s V_9
IL_c68e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c693: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c698: stloc.s V_10
IL_c69a: ldloc.s V_6
IL_c69c: ldloc.s V_10
IL_c69e: bgt.s IL_c6e8
IL_c6a0: ldloc.s V_7
IL_c6a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c6a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c6ac: stloc.s V_9
IL_c6ae: ldloc.s V_8
IL_c6b0: call string [mscorlib]System.Convert::ToString(int32)
IL_c6b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c6ba: stloc.s V_9
IL_c6bc: ldloc.s V_9
IL_c6be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c6c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c6c8: stloc.s V_10
IL_c6ca: ldloc.s V_9
IL_c6cc: call string [mscorlib]System.Convert::ToString(int32)
IL_c6d1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c6d6: stloc.s V_8
IL_c6d8: ldloc.s V_10
IL_c6da: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c6df: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c6e4: stloc.s V_7
IL_c6e6: br.s IL_c72e
IL_c6e8: ldloc.s V_8
IL_c6ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c6ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c6f4: stloc.s V_7
IL_c6f6: ldloc.s V_6
IL_c6f8: call string [mscorlib]System.Convert::ToString(int32)
IL_c6fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c702: stloc.s V_10
IL_c704: ldloc.s V_10
IL_c706: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c70b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c710: stloc.s V_7
IL_c712: ldloc.s V_7
IL_c714: call string [mscorlib]System.Convert::ToString(int32)
IL_c719: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c71e: stloc.s V_9
IL_c720: ldloc.s V_6
IL_c722: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c727: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c72c: stloc.s V_8
IL_c72e: ldloc.s V_6
IL_c730: ldloc.s V_7
IL_c732: beq.s IL_c77c
IL_c734: ldloc.s V_6
IL_c736: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c73b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c740: stloc.s V_6
IL_c742: ldloc.s V_7
IL_c744: call string [mscorlib]System.Convert::ToString(int32)
IL_c749: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c74e: stloc.s V_9
IL_c750: ldloc.s V_10
IL_c752: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c757: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c75c: stloc.s V_10
IL_c75e: ldloc.s V_8
IL_c760: call string [mscorlib]System.Convert::ToString(int32)
IL_c765: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c76a: stloc.s V_10
IL_c76c: ldloc.s V_6
IL_c76e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c773: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c778: stloc.s V_9
IL_c77a: br.s IL_c7c2
IL_c77c: ldloc.s V_6
IL_c77e: call string [mscorlib]System.Convert::ToString(int32)
IL_c783: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c788: stloc.s V_6
IL_c78a: ldloc.s V_9
IL_c78c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c791: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c796: stloc.s V_7
IL_c798: ldloc.s V_8
IL_c79a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c79f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c7a4: stloc.s V_9
IL_c7a6: ldloc.s V_10
IL_c7a8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c7ad: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c7b2: stloc.s V_7
IL_c7b4: ldloc.s V_10
IL_c7b6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c7bb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c7c0: stloc.s V_7
IL_c7c2: ldloc.s V_9
IL_c7c4: ldloc.s V_8
IL_c7c6: bgt.s IL_c810
IL_c7c8: ldloc.s V_7
IL_c7ca: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c7cf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c7d4: stloc.s V_8
IL_c7d6: ldloc.s V_7
IL_c7d8: call string [mscorlib]System.Convert::ToString(int32)
IL_c7dd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c7e2: stloc.s V_10
IL_c7e4: ldloc.s V_8
IL_c7e6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c7eb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c7f0: stloc.s V_7
IL_c7f2: ldloc.s V_7
IL_c7f4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c7f9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c7fe: stloc.s V_7
IL_c800: ldloc.s V_9
IL_c802: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c807: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c80c: stloc.s V_8
IL_c80e: br.s IL_c856
IL_c810: ldloc.s V_9
IL_c812: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c817: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c81c: stloc.s V_6
IL_c81e: ldloc.s V_7
IL_c820: call string [mscorlib]System.Convert::ToString(int32)
IL_c825: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c82a: stloc.s V_6
IL_c82c: ldloc.s V_8
IL_c82e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c833: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c838: stloc.s V_9
IL_c83a: ldloc.s V_8
IL_c83c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c841: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c846: stloc.s V_8
IL_c848: ldloc.s V_9
IL_c84a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c84f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c854: stloc.s V_8
IL_c856: ldloc.s V_7
IL_c858: ldloc.s V_10
IL_c85a: beq.s IL_c8a4
IL_c85c: ldloc.s V_6
IL_c85e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c863: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c868: stloc.s V_10
IL_c86a: ldloc.s V_10
IL_c86c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c871: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c876: stloc.s V_10
IL_c878: ldloc.s V_9
IL_c87a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c87f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c884: stloc.s V_10
IL_c886: ldloc.s V_10
IL_c888: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c88d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c892: stloc.s V_6
IL_c894: ldloc.s V_7
IL_c896: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c89b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c8a0: stloc.s V_7
IL_c8a2: br.s IL_c8ea
IL_c8a4: ldloc.s V_10
IL_c8a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c8ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c8b0: stloc.s V_7
IL_c8b2: ldloc.s V_6
IL_c8b4: call string [mscorlib]System.Convert::ToString(int32)
IL_c8b9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c8be: stloc.s V_6
IL_c8c0: ldloc.s V_9
IL_c8c2: call string [mscorlib]System.Convert::ToString(int32)
IL_c8c7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c8cc: stloc.s V_6
IL_c8ce: ldloc.s V_7
IL_c8d0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c8d5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c8da: stloc.s V_9
IL_c8dc: ldloc.s V_8
IL_c8de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c8e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c8e8: stloc.s V_10
IL_c8ea: ldloc.s V_7
IL_c8ec: ldloc.s V_6
IL_c8ee: bne.un.s IL_c938
IL_c8f0: ldloc.s V_8
IL_c8f2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c8f7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c8fc: stloc.s V_7
IL_c8fe: ldloc.s V_6
IL_c900: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c905: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c90a: stloc.s V_8
IL_c90c: ldloc.s V_8
IL_c90e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c913: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c918: stloc.s V_9
IL_c91a: ldloc.s V_10
IL_c91c: call string [mscorlib]System.Convert::ToString(int32)
IL_c921: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c926: stloc.s V_8
IL_c928: ldloc.s V_8
IL_c92a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c92f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c934: stloc.s V_9
IL_c936: br.s IL_c97e
IL_c938: ldloc.s V_6
IL_c93a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c93f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c944: stloc.s V_6
IL_c946: ldloc.s V_10
IL_c948: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c94d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c952: stloc.s V_9
IL_c954: ldloc.s V_9
IL_c956: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c95b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c960: stloc.s V_10
IL_c962: ldloc.s V_10
IL_c964: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c969: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c96e: stloc.s V_7
IL_c970: ldloc.s V_7
IL_c972: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c977: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c97c: stloc.s V_9
IL_c97e: ldloc.s V_7
IL_c980: ldloc.s V_6
IL_c982: bge.s IL_c9cc
IL_c984: ldloc.s V_7
IL_c986: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c98b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_c990: stloc.s V_9
IL_c992: ldloc.s V_6
IL_c994: call string [mscorlib]System.Convert::ToString(int32)
IL_c999: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c99e: stloc.s V_10
IL_c9a0: ldloc.s V_7
IL_c9a2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c9a7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c9ac: stloc.s V_10
IL_c9ae: ldloc.s V_6
IL_c9b0: call string [mscorlib]System.Convert::ToString(int32)
IL_c9b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_c9ba: stloc.s V_8
IL_c9bc: ldloc.s V_6
IL_c9be: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c9c3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c9c8: stloc.s V_9
IL_c9ca: br.s IL_ca12
IL_c9cc: ldloc.s V_9
IL_c9ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c9d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c9d8: stloc.s V_9
IL_c9da: ldloc.s V_7
IL_c9dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_c9e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_c9e6: stloc.s V_8
IL_c9e8: ldloc.s V_9
IL_c9ea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_c9ef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_c9f4: stloc.s V_7
IL_c9f6: ldloc.s V_6
IL_c9f8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_c9fd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca02: stloc.s V_10
IL_ca04: ldloc.s V_7
IL_ca06: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ca0b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca10: stloc.s V_6
IL_ca12: ldloc.s V_7
IL_ca14: ldloc.s V_6
IL_ca16: blt.s IL_ca60
IL_ca18: ldloc.s V_6
IL_ca1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ca1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca24: stloc.s V_10
IL_ca26: ldloc.s V_8
IL_ca28: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ca2d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ca32: stloc.s V_6
IL_ca34: ldloc.s V_9
IL_ca36: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ca3b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ca40: stloc.s V_10
IL_ca42: ldloc.s V_7
IL_ca44: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ca49: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ca4e: stloc.s V_8
IL_ca50: ldloc.s V_6
IL_ca52: call string [mscorlib]System.Convert::ToString(int32)
IL_ca57: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ca5c: stloc.s V_8
IL_ca5e: br.s IL_caa6
IL_ca60: ldloc.s V_6
IL_ca62: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ca67: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ca6c: stloc.s V_9
IL_ca6e: ldloc.s V_7
IL_ca70: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ca75: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ca7a: stloc.s V_8
IL_ca7c: ldloc.s V_8
IL_ca7e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ca83: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ca88: stloc.s V_9
IL_ca8a: ldloc.s V_8
IL_ca8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ca91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ca96: stloc.s V_9
IL_ca98: ldloc.s V_7
IL_ca9a: call string [mscorlib]System.Convert::ToString(int32)
IL_ca9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_caa4: stloc.s V_6
IL_caa6: ldloc.s V_6
IL_caa8: ldloc.s V_7
IL_caaa: ble.s IL_caf4
IL_caac: ldloc.s V_10
IL_caae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cab3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cab8: stloc.s V_10
IL_caba: ldloc.s V_8
IL_cabc: call string [mscorlib]System.Convert::ToString(int32)
IL_cac1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cac6: stloc.s V_10
IL_cac8: ldloc.s V_6
IL_caca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cacf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cad4: stloc.s V_6
IL_cad6: ldloc.s V_6
IL_cad8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cadd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cae2: stloc.s V_9
IL_cae4: ldloc.s V_8
IL_cae6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_caeb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_caf0: stloc.s V_8
IL_caf2: br.s IL_cb3a
IL_caf4: ldloc.s V_6
IL_caf6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cafb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb00: stloc.s V_10
IL_cb02: ldloc.s V_8
IL_cb04: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cb09: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cb0e: stloc.s V_6
IL_cb10: ldloc.s V_9
IL_cb12: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cb17: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cb1c: stloc.s V_9
IL_cb1e: ldloc.s V_7
IL_cb20: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb25: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb2a: stloc.s V_9
IL_cb2c: ldloc.s V_6
IL_cb2e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cb33: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cb38: stloc.s V_6
IL_cb3a: ldloc.s V_8
IL_cb3c: ldloc.s V_7
IL_cb3e: blt.s IL_cb88
IL_cb40: ldloc.s V_10
IL_cb42: call string [mscorlib]System.Convert::ToString(int32)
IL_cb47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cb4c: stloc.s V_10
IL_cb4e: ldloc.s V_8
IL_cb50: call string [mscorlib]System.Convert::ToString(int32)
IL_cb55: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cb5a: stloc.s V_7
IL_cb5c: ldloc.s V_7
IL_cb5e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb63: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb68: stloc.s V_9
IL_cb6a: ldloc.s V_8
IL_cb6c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cb71: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cb76: stloc.s V_7
IL_cb78: ldloc.s V_9
IL_cb7a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb7f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb84: stloc.s V_8
IL_cb86: br.s IL_cbce
IL_cb88: ldloc.s V_7
IL_cb8a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cb8f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cb94: stloc.s V_6
IL_cb96: ldloc.s V_7
IL_cb98: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cb9d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cba2: stloc.s V_6
IL_cba4: ldloc.s V_9
IL_cba6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cbab: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cbb0: stloc.s V_9
IL_cbb2: ldloc.s V_6
IL_cbb4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cbb9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cbbe: stloc.s V_7
IL_cbc0: ldloc.s V_9
IL_cbc2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cbc7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cbcc: stloc.s V_6
IL_cbce: ldloc.s V_6
IL_cbd0: ldloc.s V_7
IL_cbd2: ble.s IL_cc1c
IL_cbd4: ldloc.s V_9
IL_cbd6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cbdb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cbe0: stloc.s V_9
IL_cbe2: ldloc.s V_9
IL_cbe4: call string [mscorlib]System.Convert::ToString(int32)
IL_cbe9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cbee: stloc.s V_9
IL_cbf0: ldloc.s V_7
IL_cbf2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cbf7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cbfc: stloc.s V_9
IL_cbfe: ldloc.s V_10
IL_cc00: call string [mscorlib]System.Convert::ToString(int32)
IL_cc05: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc0a: stloc.s V_6
IL_cc0c: ldloc.s V_6
IL_cc0e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cc13: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cc18: stloc.s V_6
IL_cc1a: br.s IL_cc62
IL_cc1c: ldloc.s V_8
IL_cc1e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cc23: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cc28: stloc.s V_9
IL_cc2a: ldloc.s V_8
IL_cc2c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cc31: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cc36: stloc.s V_10
IL_cc38: ldloc.s V_8
IL_cc3a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cc3f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cc44: stloc.s V_10
IL_cc46: ldloc.s V_7
IL_cc48: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cc4d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cc52: stloc.s V_6
IL_cc54: ldloc.s V_7
IL_cc56: call string [mscorlib]System.Convert::ToString(int32)
IL_cc5b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc60: stloc.s V_7
IL_cc62: ldloc.s V_6
IL_cc64: ldloc.s V_10
IL_cc66: bgt.s IL_ccb0
IL_cc68: ldloc.s V_10
IL_cc6a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cc6f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cc74: stloc.s V_6
IL_cc76: ldloc.s V_9
IL_cc78: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cc7d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cc82: stloc.s V_10
IL_cc84: ldloc.s V_8
IL_cc86: call string [mscorlib]System.Convert::ToString(int32)
IL_cc8b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc90: stloc.s V_8
IL_cc92: ldloc.s V_8
IL_cc94: call string [mscorlib]System.Convert::ToString(int32)
IL_cc99: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cc9e: stloc.s V_6
IL_cca0: ldloc.s V_7
IL_cca2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cca7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ccac: stloc.s V_9
IL_ccae: br.s IL_ccf6
IL_ccb0: ldloc.s V_6
IL_ccb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ccb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ccbc: stloc.s V_10
IL_ccbe: ldloc.s V_10
IL_ccc0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ccc5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ccca: stloc.s V_6
IL_cccc: ldloc.s V_7
IL_ccce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ccd3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ccd8: stloc.s V_10
IL_ccda: ldloc.s V_9
IL_ccdc: call string [mscorlib]System.Convert::ToString(int32)
IL_cce1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cce6: stloc.s V_7
IL_cce8: ldloc.s V_9
IL_ccea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ccef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ccf4: stloc.s V_8
IL_ccf6: ldloc.s V_8
IL_ccf8: ldloc.s V_7
IL_ccfa: beq.s IL_cd44
IL_ccfc: ldloc.s V_7
IL_ccfe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cd03: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cd08: stloc.s V_6
IL_cd0a: ldloc.s V_9
IL_cd0c: call string [mscorlib]System.Convert::ToString(int32)
IL_cd11: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cd16: stloc.s V_7
IL_cd18: ldloc.s V_9
IL_cd1a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd1f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd24: stloc.s V_9
IL_cd26: ldloc.s V_8
IL_cd28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cd2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cd32: stloc.s V_6
IL_cd34: ldloc.s V_9
IL_cd36: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cd3b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cd40: stloc.s V_10
IL_cd42: br.s IL_cd8a
IL_cd44: ldloc.s V_7
IL_cd46: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd4b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd50: stloc.s V_6
IL_cd52: ldloc.s V_6
IL_cd54: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd59: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd5e: stloc.s V_7
IL_cd60: ldloc.s V_6
IL_cd62: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cd67: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cd6c: stloc.s V_6
IL_cd6e: ldloc.s V_9
IL_cd70: call string [mscorlib]System.Convert::ToString(int32)
IL_cd75: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cd7a: stloc.s V_8
IL_cd7c: ldloc.s V_7
IL_cd7e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cd83: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cd88: stloc.s V_6
IL_cd8a: ldloc.s V_7
IL_cd8c: ldloc.s V_6
IL_cd8e: bne.un.s IL_cdd8
IL_cd90: ldloc.s V_7
IL_cd92: call string [mscorlib]System.Convert::ToString(int32)
IL_cd97: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cd9c: stloc.s V_6
IL_cd9e: ldloc.s V_9
IL_cda0: call string [mscorlib]System.Convert::ToString(int32)
IL_cda5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cdaa: stloc.s V_6
IL_cdac: ldloc.s V_9
IL_cdae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cdb3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cdb8: stloc.s V_8
IL_cdba: ldloc.s V_10
IL_cdbc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cdc1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cdc6: stloc.s V_6
IL_cdc8: ldloc.s V_8
IL_cdca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cdcf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cdd4: stloc.s V_10
IL_cdd6: br.s IL_ce1e
IL_cdd8: ldloc.s V_10
IL_cdda: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cddf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cde4: stloc.s V_6
IL_cde6: ldloc.s V_6
IL_cde8: call string [mscorlib]System.Convert::ToString(int32)
IL_cded: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cdf2: stloc.s V_8
IL_cdf4: ldloc.s V_8
IL_cdf6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cdfb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ce00: stloc.s V_7
IL_ce02: ldloc.s V_10
IL_ce04: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce09: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce0e: stloc.s V_7
IL_ce10: ldloc.s V_8
IL_ce12: call string [mscorlib]System.Convert::ToString(int32)
IL_ce17: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce1c: stloc.s V_10
IL_ce1e: ldloc.s V_7
IL_ce20: ldloc.s V_9
IL_ce22: bgt.s IL_ce6c
IL_ce24: ldloc.s V_8
IL_ce26: call string [mscorlib]System.Convert::ToString(int32)
IL_ce2b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce30: stloc.s V_8
IL_ce32: ldloc.s V_9
IL_ce34: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce39: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce3e: stloc.s V_7
IL_ce40: ldloc.s V_6
IL_ce42: call string [mscorlib]System.Convert::ToString(int32)
IL_ce47: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce4c: stloc.s V_8
IL_ce4e: ldloc.s V_8
IL_ce50: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce55: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce5a: stloc.s V_7
IL_ce5c: ldloc.s V_7
IL_ce5e: call string [mscorlib]System.Convert::ToString(int32)
IL_ce63: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ce68: stloc.s V_6
IL_ce6a: br.s IL_ceb2
IL_ce6c: ldloc.s V_8
IL_ce6e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ce73: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ce78: stloc.s V_7
IL_ce7a: ldloc.s V_9
IL_ce7c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ce81: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ce86: stloc.s V_7
IL_ce88: ldloc.s V_9
IL_ce8a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce8f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ce94: stloc.s V_6
IL_ce96: ldloc.s V_10
IL_ce98: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ce9d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cea2: stloc.s V_9
IL_cea4: ldloc.s V_9
IL_cea6: call string [mscorlib]System.Convert::ToString(int32)
IL_ceab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ceb0: stloc.s V_9
IL_ceb2: ldloc.s V_9
IL_ceb4: ldloc.s V_8
IL_ceb6: bge.s IL_cf00
IL_ceb8: ldloc.s V_9
IL_ceba: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cebf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cec4: stloc.s V_7
IL_cec6: ldloc.s V_8
IL_cec8: call string [mscorlib]System.Convert::ToString(int32)
IL_cecd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ced2: stloc.s V_10
IL_ced4: ldloc.s V_10
IL_ced6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cedb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cee0: stloc.s V_7
IL_cee2: ldloc.s V_6
IL_cee4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cee9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ceee: stloc.s V_10
IL_cef0: ldloc.s V_6
IL_cef2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cef7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cefc: stloc.s V_6
IL_cefe: br.s IL_cf46
IL_cf00: ldloc.s V_9
IL_cf02: call string [mscorlib]System.Convert::ToString(int32)
IL_cf07: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf0c: stloc.s V_8
IL_cf0e: ldloc.s V_6
IL_cf10: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cf15: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cf1a: stloc.s V_10
IL_cf1c: ldloc.s V_10
IL_cf1e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cf23: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cf28: stloc.s V_6
IL_cf2a: ldloc.s V_6
IL_cf2c: call string [mscorlib]System.Convert::ToString(int32)
IL_cf31: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf36: stloc.s V_10
IL_cf38: ldloc.s V_6
IL_cf3a: call string [mscorlib]System.Convert::ToString(int32)
IL_cf3f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf44: stloc.s V_10
IL_cf46: ldloc.s V_6
IL_cf48: ldloc.s V_7
IL_cf4a: blt.s IL_cf94
IL_cf4c: ldloc.s V_7
IL_cf4e: call string [mscorlib]System.Convert::ToString(int32)
IL_cf53: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf58: stloc.s V_10
IL_cf5a: ldloc.s V_7
IL_cf5c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cf61: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cf66: stloc.s V_9
IL_cf68: ldloc.s V_6
IL_cf6a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cf6f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cf74: stloc.s V_6
IL_cf76: ldloc.s V_9
IL_cf78: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cf7d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cf82: stloc.s V_9
IL_cf84: ldloc.s V_8
IL_cf86: call string [mscorlib]System.Convert::ToString(int32)
IL_cf8b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cf90: stloc.s V_8
IL_cf92: br.s IL_cfda
IL_cf94: ldloc.s V_6
IL_cf96: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cf9b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cfa0: stloc.s V_9
IL_cfa2: ldloc.s V_7
IL_cfa4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cfa9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cfae: stloc.s V_10
IL_cfb0: ldloc.s V_6
IL_cfb2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_cfb7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_cfbc: stloc.s V_7
IL_cfbe: ldloc.s V_7
IL_cfc0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cfc5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cfca: stloc.s V_10
IL_cfcc: ldloc.s V_7
IL_cfce: call string [mscorlib]System.Convert::ToString(int32)
IL_cfd3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_cfd8: stloc.s V_7
IL_cfda: ldloc.s V_9
IL_cfdc: ldloc.s V_6
IL_cfde: bne.un.s IL_d028
IL_cfe0: ldloc.s V_8
IL_cfe2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_cfe7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_cfec: stloc.s V_10
IL_cfee: ldloc.s V_6
IL_cff0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_cff5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_cffa: stloc.s V_10
IL_cffc: ldloc.s V_7
IL_cffe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d003: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d008: stloc.s V_8
IL_d00a: ldloc.s V_7
IL_d00c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d011: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d016: stloc.s V_6
IL_d018: ldloc.s V_10
IL_d01a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d01f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d024: stloc.s V_6
IL_d026: br.s IL_d06e
IL_d028: ldloc.s V_8
IL_d02a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d02f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d034: stloc.s V_9
IL_d036: ldloc.s V_8
IL_d038: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d03d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d042: stloc.s V_10
IL_d044: ldloc.s V_7
IL_d046: call string [mscorlib]System.Convert::ToString(int32)
IL_d04b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d050: stloc.s V_10
IL_d052: ldloc.s V_8
IL_d054: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d059: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d05e: stloc.s V_7
IL_d060: ldloc.s V_8
IL_d062: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d067: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d06c: stloc.s V_6
IL_d06e: ldloc.s V_10
IL_d070: ldloc.s V_8
IL_d072: bne.un.s IL_d0bc
IL_d074: ldloc.s V_9
IL_d076: call string [mscorlib]System.Convert::ToString(int32)
IL_d07b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d080: stloc.s V_9
IL_d082: ldloc.s V_7
IL_d084: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d089: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d08e: stloc.s V_6
IL_d090: ldloc.s V_9
IL_d092: call string [mscorlib]System.Convert::ToString(int32)
IL_d097: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d09c: stloc.s V_6
IL_d09e: ldloc.s V_6
IL_d0a0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d0a5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d0aa: stloc.s V_10
IL_d0ac: ldloc.s V_8
IL_d0ae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d0b3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d0b8: stloc.s V_10
IL_d0ba: br.s IL_d102
IL_d0bc: ldloc.s V_7
IL_d0be: call string [mscorlib]System.Convert::ToString(int32)
IL_d0c3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d0c8: stloc.s V_7
IL_d0ca: ldloc.s V_7
IL_d0cc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d0d1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d0d6: stloc.s V_10
IL_d0d8: ldloc.s V_8
IL_d0da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d0df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d0e4: stloc.s V_8
IL_d0e6: ldloc.s V_6
IL_d0e8: call string [mscorlib]System.Convert::ToString(int32)
IL_d0ed: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d0f2: stloc.s V_6
IL_d0f4: ldloc.s V_10
IL_d0f6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d0fb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d100: stloc.s V_8
IL_d102: ldloc.s V_7
IL_d104: ldloc.s V_7
IL_d106: beq.s IL_d150
IL_d108: ldloc.s V_10
IL_d10a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d10f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d114: stloc.s V_9
IL_d116: ldloc.s V_7
IL_d118: call string [mscorlib]System.Convert::ToString(int32)
IL_d11d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d122: stloc.s V_7
IL_d124: ldloc.s V_10
IL_d126: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d12b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d130: stloc.s V_6
IL_d132: ldloc.s V_7
IL_d134: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d139: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d13e: stloc.s V_10
IL_d140: ldloc.s V_6
IL_d142: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d147: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d14c: stloc.s V_7
IL_d14e: br.s IL_d196
IL_d150: ldloc.s V_6
IL_d152: call string [mscorlib]System.Convert::ToString(int32)
IL_d157: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d15c: stloc.s V_6
IL_d15e: ldloc.s V_6
IL_d160: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d165: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d16a: stloc.s V_6
IL_d16c: ldloc.s V_9
IL_d16e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d173: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d178: stloc.s V_6
IL_d17a: ldloc.s V_6
IL_d17c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d181: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d186: stloc.s V_6
IL_d188: ldloc.s V_6
IL_d18a: call string [mscorlib]System.Convert::ToString(int32)
IL_d18f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d194: stloc.s V_7
IL_d196: ldloc.s V_6
IL_d198: ldloc.s V_6
IL_d19a: bne.un.s IL_d1e4
IL_d19c: ldloc.s V_8
IL_d19e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d1a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d1a8: stloc.s V_9
IL_d1aa: ldloc.s V_6
IL_d1ac: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d1b1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d1b6: stloc.s V_9
IL_d1b8: ldloc.s V_6
IL_d1ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d1bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d1c4: stloc.s V_10
IL_d1c6: ldloc.s V_10
IL_d1c8: call string [mscorlib]System.Convert::ToString(int32)
IL_d1cd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d1d2: stloc.s V_8
IL_d1d4: ldloc.s V_7
IL_d1d6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d1db: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d1e0: stloc.s V_6
IL_d1e2: br.s IL_d22a
IL_d1e4: ldloc.s V_9
IL_d1e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d1eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d1f0: stloc.s V_6
IL_d1f2: ldloc.s V_8
IL_d1f4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d1f9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d1fe: stloc.s V_9
IL_d200: ldloc.s V_6
IL_d202: call string [mscorlib]System.Convert::ToString(int32)
IL_d207: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d20c: stloc.s V_7
IL_d20e: ldloc.s V_9
IL_d210: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d215: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d21a: stloc.s V_6
IL_d21c: ldloc.s V_7
IL_d21e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d223: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d228: stloc.s V_7
IL_d22a: ldloc.s V_6
IL_d22c: ldloc.s V_10
IL_d22e: bgt.s IL_d278
IL_d230: ldloc.s V_7
IL_d232: call string [mscorlib]System.Convert::ToString(int32)
IL_d237: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d23c: stloc.s V_7
IL_d23e: ldloc.s V_8
IL_d240: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d245: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d24a: stloc.s V_8
IL_d24c: ldloc.s V_6
IL_d24e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d253: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d258: stloc.s V_6
IL_d25a: ldloc.s V_9
IL_d25c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d261: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d266: stloc.s V_10
IL_d268: ldloc.s V_6
IL_d26a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d26f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d274: stloc.s V_10
IL_d276: br.s IL_d2be
IL_d278: ldloc.s V_6
IL_d27a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d27f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d284: stloc.s V_10
IL_d286: ldloc.s V_6
IL_d288: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d28d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d292: stloc.s V_8
IL_d294: ldloc.s V_8
IL_d296: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d29b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2a0: stloc.s V_8
IL_d2a2: ldloc.s V_6
IL_d2a4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d2a9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2ae: stloc.s V_7
IL_d2b0: ldloc.s V_10
IL_d2b2: call string [mscorlib]System.Convert::ToString(int32)
IL_d2b7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d2bc: stloc.s V_8
IL_d2be: ldloc.s V_9
IL_d2c0: ldloc.s V_7
IL_d2c2: beq.s IL_d30c
IL_d2c4: ldloc.s V_6
IL_d2c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d2cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d2d0: stloc.s V_10
IL_d2d2: ldloc.s V_6
IL_d2d4: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d2d9: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2de: stloc.s V_10
IL_d2e0: ldloc.s V_10
IL_d2e2: call string [mscorlib]System.Convert::ToString(int32)
IL_d2e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d2ec: stloc.s V_6
IL_d2ee: ldloc.s V_10
IL_d2f0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d2f5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d2fa: stloc.s V_8
IL_d2fc: ldloc.s V_6
IL_d2fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d303: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d308: stloc.s V_8
IL_d30a: br.s IL_d352
IL_d30c: ldloc.s V_9
IL_d30e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d313: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d318: stloc.s V_8
IL_d31a: ldloc.s V_7
IL_d31c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d321: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d326: stloc.s V_6
IL_d328: ldloc.s V_7
IL_d32a: call string [mscorlib]System.Convert::ToString(int32)
IL_d32f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d334: stloc.s V_9
IL_d336: ldloc.s V_10
IL_d338: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d33d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d342: stloc.s V_10
IL_d344: ldloc.s V_7
IL_d346: call string [mscorlib]System.Convert::ToString(int32)
IL_d34b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d350: stloc.s V_8
IL_d352: ldloc.s V_6
IL_d354: ldloc.s V_10
IL_d356: bge.s IL_d3a0
IL_d358: ldloc.s V_6
IL_d35a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d35f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d364: stloc.s V_7
IL_d366: ldloc.s V_9
IL_d368: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d36d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d372: stloc.s V_6
IL_d374: ldloc.s V_7
IL_d376: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d37b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d380: stloc.s V_10
IL_d382: ldloc.s V_10
IL_d384: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d389: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d38e: stloc.s V_7
IL_d390: ldloc.s V_6
IL_d392: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d397: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d39c: stloc.s V_9
IL_d39e: br.s IL_d3e6
IL_d3a0: ldloc.s V_7
IL_d3a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d3a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d3ac: stloc.s V_10
IL_d3ae: ldloc.s V_8
IL_d3b0: call string [mscorlib]System.Convert::ToString(int32)
IL_d3b5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d3ba: stloc.s V_6
IL_d3bc: ldloc.s V_6
IL_d3be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d3c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d3c8: stloc.s V_6
IL_d3ca: ldloc.s V_6
IL_d3cc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d3d1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d3d6: stloc.s V_9
IL_d3d8: ldloc.s V_10
IL_d3da: call string [mscorlib]System.Convert::ToString(int32)
IL_d3df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d3e4: stloc.s V_7
IL_d3e6: ldloc.s V_7
IL_d3e8: ldloc.s V_7
IL_d3ea: blt.s IL_d434
IL_d3ec: ldloc.s V_8
IL_d3ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d3f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d3f8: stloc.s V_10
IL_d3fa: ldloc.s V_9
IL_d3fc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d401: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d406: stloc.s V_10
IL_d408: ldloc.s V_10
IL_d40a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d40f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d414: stloc.s V_10
IL_d416: ldloc.s V_9
IL_d418: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d41d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d422: stloc.s V_10
IL_d424: ldloc.s V_7
IL_d426: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d42b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d430: stloc.s V_8
IL_d432: br.s IL_d47a
IL_d434: ldloc.s V_10
IL_d436: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d43b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d440: stloc.s V_9
IL_d442: ldloc.s V_7
IL_d444: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d449: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d44e: stloc.s V_6
IL_d450: ldloc.s V_9
IL_d452: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d457: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d45c: stloc.s V_8
IL_d45e: ldloc.s V_9
IL_d460: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d465: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d46a: stloc.s V_10
IL_d46c: ldloc.s V_8
IL_d46e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d473: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d478: stloc.s V_8
IL_d47a: ldloc.s V_10
IL_d47c: ldloc.s V_10
IL_d47e: bgt.s IL_d4c8
IL_d480: ldloc.s V_10
IL_d482: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d487: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d48c: stloc.s V_9
IL_d48e: ldloc.s V_7
IL_d490: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d495: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d49a: stloc.s V_9
IL_d49c: ldloc.s V_8
IL_d49e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d4a3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d4a8: stloc.s V_9
IL_d4aa: ldloc.s V_9
IL_d4ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4b6: stloc.s V_9
IL_d4b8: ldloc.s V_10
IL_d4ba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d4bf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d4c4: stloc.s V_8
IL_d4c6: br.s IL_d50e
IL_d4c8: ldloc.s V_7
IL_d4ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4d4: stloc.s V_10
IL_d4d6: ldloc.s V_6
IL_d4d8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4dd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4e2: stloc.s V_6
IL_d4e4: ldloc.s V_10
IL_d4e6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d4eb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d4f0: stloc.s V_10
IL_d4f2: ldloc.s V_6
IL_d4f4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d4f9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d4fe: stloc.s V_9
IL_d500: ldloc.s V_7
IL_d502: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d507: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d50c: stloc.s V_10
IL_d50e: ldloc.s V_7
IL_d510: ldloc.s V_8
IL_d512: bge.s IL_d55c
IL_d514: ldloc.s V_8
IL_d516: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d51b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d520: stloc.s V_10
IL_d522: ldloc.s V_8
IL_d524: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d529: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d52e: stloc.s V_8
IL_d530: ldloc.s V_10
IL_d532: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d537: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d53c: stloc.s V_8
IL_d53e: ldloc.s V_10
IL_d540: call string [mscorlib]System.Convert::ToString(int32)
IL_d545: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d54a: stloc.s V_9
IL_d54c: ldloc.s V_6
IL_d54e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d553: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d558: stloc.s V_10
IL_d55a: br.s IL_d5a2
IL_d55c: ldloc.s V_7
IL_d55e: call string [mscorlib]System.Convert::ToString(int32)
IL_d563: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d568: stloc.s V_10
IL_d56a: ldloc.s V_8
IL_d56c: call string [mscorlib]System.Convert::ToString(int32)
IL_d571: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d576: stloc.s V_7
IL_d578: ldloc.s V_7
IL_d57a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d57f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d584: stloc.s V_9
IL_d586: ldloc.s V_6
IL_d588: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d58d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d592: stloc.s V_10
IL_d594: ldloc.s V_9
IL_d596: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d59b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d5a0: stloc.s V_7
IL_d5a2: ldloc.s V_7
IL_d5a4: ldloc.s V_6
IL_d5a6: bge.s IL_d5f0
IL_d5a8: ldloc.s V_7
IL_d5aa: call string [mscorlib]System.Convert::ToString(int32)
IL_d5af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d5b4: stloc.s V_6
IL_d5b6: ldloc.s V_8
IL_d5b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d5bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d5c2: stloc.s V_7
IL_d5c4: ldloc.s V_6
IL_d5c6: call string [mscorlib]System.Convert::ToString(int32)
IL_d5cb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d5d0: stloc.s V_10
IL_d5d2: ldloc.s V_9
IL_d5d4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d5d9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d5de: stloc.s V_7
IL_d5e0: ldloc.s V_8
IL_d5e2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d5e7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d5ec: stloc.s V_6
IL_d5ee: br.s IL_d636
IL_d5f0: ldloc.s V_9
IL_d5f2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d5f7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d5fc: stloc.s V_10
IL_d5fe: ldloc.s V_9
IL_d600: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d605: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d60a: stloc.s V_6
IL_d60c: ldloc.s V_6
IL_d60e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d613: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d618: stloc.s V_6
IL_d61a: ldloc.s V_6
IL_d61c: call string [mscorlib]System.Convert::ToString(int32)
IL_d621: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d626: stloc.s V_6
IL_d628: ldloc.s V_9
IL_d62a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d62f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d634: stloc.s V_8
IL_d636: ldloc.s V_8
IL_d638: ldloc.s V_7
IL_d63a: bge.s IL_d684
IL_d63c: ldloc.s V_10
IL_d63e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d643: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d648: stloc.s V_9
IL_d64a: ldloc.s V_7
IL_d64c: call string [mscorlib]System.Convert::ToString(int32)
IL_d651: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d656: stloc.s V_9
IL_d658: ldloc.s V_6
IL_d65a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d65f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d664: stloc.s V_10
IL_d666: ldloc.s V_9
IL_d668: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d66d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d672: stloc.s V_8
IL_d674: ldloc.s V_6
IL_d676: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d67b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d680: stloc.s V_9
IL_d682: br.s IL_d6ca
IL_d684: ldloc.s V_10
IL_d686: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d68b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d690: stloc.s V_8
IL_d692: ldloc.s V_7
IL_d694: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d699: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d69e: stloc.s V_6
IL_d6a0: ldloc.s V_8
IL_d6a2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d6a7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d6ac: stloc.s V_7
IL_d6ae: ldloc.s V_10
IL_d6b0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6b5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6ba: stloc.s V_7
IL_d6bc: ldloc.s V_7
IL_d6be: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6c3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6c8: stloc.s V_7
IL_d6ca: ldloc.s V_10
IL_d6cc: ldloc.s V_8
IL_d6ce: blt.s IL_d718
IL_d6d0: ldloc.s V_10
IL_d6d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6dc: stloc.s V_7
IL_d6de: ldloc.s V_7
IL_d6e0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d6e5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d6ea: stloc.s V_9
IL_d6ec: ldloc.s V_8
IL_d6ee: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d6f3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d6f8: stloc.s V_8
IL_d6fa: ldloc.s V_9
IL_d6fc: call string [mscorlib]System.Convert::ToString(int32)
IL_d701: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d706: stloc.s V_9
IL_d708: ldloc.s V_9
IL_d70a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d70f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d714: stloc.s V_8
IL_d716: br.s IL_d75e
IL_d718: ldloc.s V_10
IL_d71a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d71f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d724: stloc.s V_6
IL_d726: ldloc.s V_8
IL_d728: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d72d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d732: stloc.s V_9
IL_d734: ldloc.s V_9
IL_d736: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d73b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d740: stloc.s V_10
IL_d742: ldloc.s V_7
IL_d744: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d749: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d74e: stloc.s V_8
IL_d750: ldloc.s V_6
IL_d752: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d757: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d75c: stloc.s V_7
IL_d75e: ldloc.s V_6
IL_d760: ldloc.s V_8
IL_d762: bne.un.s IL_d7ac
IL_d764: ldloc.s V_8
IL_d766: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d76b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d770: stloc.s V_6
IL_d772: ldloc.s V_6
IL_d774: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d779: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d77e: stloc.s V_6
IL_d780: ldloc.s V_10
IL_d782: call string [mscorlib]System.Convert::ToString(int32)
IL_d787: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d78c: stloc.s V_8
IL_d78e: ldloc.s V_8
IL_d790: call string [mscorlib]System.Convert::ToString(int32)
IL_d795: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d79a: stloc.s V_10
IL_d79c: ldloc.s V_10
IL_d79e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d7a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d7a8: stloc.s V_9
IL_d7aa: br.s IL_d7f2
IL_d7ac: ldloc.s V_8
IL_d7ae: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d7b3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d7b8: stloc.s V_6
IL_d7ba: ldloc.s V_9
IL_d7bc: call string [mscorlib]System.Convert::ToString(int32)
IL_d7c1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d7c6: stloc.s V_7
IL_d7c8: ldloc.s V_10
IL_d7ca: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d7cf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d7d4: stloc.s V_6
IL_d7d6: ldloc.s V_9
IL_d7d8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d7dd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d7e2: stloc.s V_7
IL_d7e4: ldloc.s V_10
IL_d7e6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d7eb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d7f0: stloc.s V_6
IL_d7f2: ldloc.s V_6
IL_d7f4: ldloc.s V_8
IL_d7f6: blt.s IL_d840
IL_d7f8: ldloc.s V_6
IL_d7fa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d7ff: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d804: stloc.s V_7
IL_d806: ldloc.s V_6
IL_d808: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d80d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d812: stloc.s V_7
IL_d814: ldloc.s V_9
IL_d816: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d81b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d820: stloc.s V_10
IL_d822: ldloc.s V_10
IL_d824: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d829: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d82e: stloc.s V_8
IL_d830: ldloc.s V_8
IL_d832: call string [mscorlib]System.Convert::ToString(int32)
IL_d837: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d83c: stloc.s V_7
IL_d83e: br.s IL_d886
IL_d840: ldloc.s V_7
IL_d842: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d847: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d84c: stloc.s V_8
IL_d84e: ldloc.s V_8
IL_d850: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d855: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d85a: stloc.s V_9
IL_d85c: ldloc.s V_10
IL_d85e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d863: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d868: stloc.s V_9
IL_d86a: ldloc.s V_8
IL_d86c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d871: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d876: stloc.s V_9
IL_d878: ldloc.s V_8
IL_d87a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d87f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d884: stloc.s V_7
IL_d886: ldloc.s V_7
IL_d888: ldloc.s V_8
IL_d88a: ble.s IL_d8d4
IL_d88c: ldloc.s V_8
IL_d88e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d893: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d898: stloc.s V_10
IL_d89a: ldloc.s V_7
IL_d89c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d8a1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d8a6: stloc.s V_9
IL_d8a8: ldloc.s V_7
IL_d8aa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d8af: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d8b4: stloc.s V_7
IL_d8b6: ldloc.s V_7
IL_d8b8: call string [mscorlib]System.Convert::ToString(int32)
IL_d8bd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d8c2: stloc.s V_6
IL_d8c4: ldloc.s V_8
IL_d8c6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d8cb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d8d0: stloc.s V_10
IL_d8d2: br.s IL_d91a
IL_d8d4: ldloc.s V_10
IL_d8d6: call string [mscorlib]System.Convert::ToString(int32)
IL_d8db: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d8e0: stloc.s V_6
IL_d8e2: ldloc.s V_8
IL_d8e4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d8e9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d8ee: stloc.s V_8
IL_d8f0: ldloc.s V_7
IL_d8f2: call string [mscorlib]System.Convert::ToString(int32)
IL_d8f7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d8fc: stloc.s V_6
IL_d8fe: ldloc.s V_6
IL_d900: call string [mscorlib]System.Convert::ToString(int32)
IL_d905: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d90a: stloc.s V_7
IL_d90c: ldloc.s V_10
IL_d90e: call string [mscorlib]System.Convert::ToString(int32)
IL_d913: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d918: stloc.s V_8
IL_d91a: ldloc.s V_8
IL_d91c: ldloc.s V_10
IL_d91e: bge.s IL_d968
IL_d920: ldloc.s V_6
IL_d922: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d927: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d92c: stloc.s V_7
IL_d92e: ldloc.s V_7
IL_d930: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d935: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d93a: stloc.s V_6
IL_d93c: ldloc.s V_6
IL_d93e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d943: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d948: stloc.s V_10
IL_d94a: ldloc.s V_7
IL_d94c: call string [mscorlib]System.Convert::ToString(int32)
IL_d951: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d956: stloc.s V_6
IL_d958: ldloc.s V_10
IL_d95a: call string [mscorlib]System.Convert::ToString(int32)
IL_d95f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d964: stloc.s V_8
IL_d966: br.s IL_d9ae
IL_d968: ldloc.s V_10
IL_d96a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d96f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d974: stloc.s V_6
IL_d976: ldloc.s V_8
IL_d978: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d97d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d982: stloc.s V_9
IL_d984: ldloc.s V_10
IL_d986: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d98b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d990: stloc.s V_10
IL_d992: ldloc.s V_7
IL_d994: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_d999: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_d99e: stloc.s V_6
IL_d9a0: ldloc.s V_9
IL_d9a2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d9a7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d9ac: stloc.s V_7
IL_d9ae: ldloc.s V_10
IL_d9b0: ldloc.s V_6
IL_d9b2: bgt.s IL_d9fc
IL_d9b4: ldloc.s V_10
IL_d9b6: call string [mscorlib]System.Convert::ToString(int32)
IL_d9bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d9c0: stloc.s V_8
IL_d9c2: ldloc.s V_9
IL_d9c4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_d9c9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_d9ce: stloc.s V_7
IL_d9d0: ldloc.s V_9
IL_d9d2: call string [mscorlib]System.Convert::ToString(int32)
IL_d9d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_d9dc: stloc.s V_8
IL_d9de: ldloc.s V_6
IL_d9e0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d9e5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d9ea: stloc.s V_8
IL_d9ec: ldloc.s V_10
IL_d9ee: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_d9f3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_d9f8: stloc.s V_10
IL_d9fa: br.s IL_da42
IL_d9fc: ldloc.s V_8
IL_d9fe: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_da03: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_da08: stloc.s V_7
IL_da0a: ldloc.s V_6
IL_da0c: call string [mscorlib]System.Convert::ToString(int32)
IL_da11: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da16: stloc.s V_10
IL_da18: ldloc.s V_7
IL_da1a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_da1f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_da24: stloc.s V_7
IL_da26: ldloc.s V_8
IL_da28: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_da2d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_da32: stloc.s V_7
IL_da34: ldloc.s V_8
IL_da36: call string [mscorlib]System.Convert::ToString(int32)
IL_da3b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da40: stloc.s V_10
IL_da42: ldloc.s V_8
IL_da44: ldloc.s V_9
IL_da46: blt.s IL_da90
IL_da48: ldloc.s V_6
IL_da4a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_da4f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_da54: stloc.s V_7
IL_da56: ldloc.s V_6
IL_da58: call string [mscorlib]System.Convert::ToString(int32)
IL_da5d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da62: stloc.s V_6
IL_da64: ldloc.s V_9
IL_da66: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_da6b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_da70: stloc.s V_7
IL_da72: ldloc.s V_6
IL_da74: call string [mscorlib]System.Convert::ToString(int32)
IL_da79: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_da7e: stloc.s V_10
IL_da80: ldloc.s V_8
IL_da82: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_da87: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_da8c: stloc.s V_10
IL_da8e: br.s IL_dad6
IL_da90: ldloc.s V_7
IL_da92: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_da97: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_da9c: stloc.s V_7
IL_da9e: ldloc.s V_7
IL_daa0: call string [mscorlib]System.Convert::ToString(int32)
IL_daa5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_daaa: stloc.s V_7
IL_daac: ldloc.s V_7
IL_daae: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dab3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dab8: stloc.s V_6
IL_daba: ldloc.s V_7
IL_dabc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dac1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dac6: stloc.s V_8
IL_dac8: ldloc.s V_6
IL_daca: call string [mscorlib]System.Convert::ToString(int32)
IL_dacf: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dad4: stloc.s V_6
IL_dad6: ldloc.s V_6
IL_dad8: ldloc.s V_8
IL_dada: ble.s IL_db24
IL_dadc: ldloc.s V_9
IL_dade: call string [mscorlib]System.Convert::ToString(int32)
IL_dae3: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dae8: stloc.s V_7
IL_daea: ldloc.s V_10
IL_daec: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_daf1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_daf6: stloc.s V_10
IL_daf8: ldloc.s V_8
IL_dafa: call string [mscorlib]System.Convert::ToString(int32)
IL_daff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db04: stloc.s V_8
IL_db06: ldloc.s V_10
IL_db08: call string [mscorlib]System.Convert::ToString(int32)
IL_db0d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db12: stloc.s V_7
IL_db14: ldloc.s V_9
IL_db16: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db1b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db20: stloc.s V_7
IL_db22: br.s IL_db6a
IL_db24: ldloc.s V_9
IL_db26: call string [mscorlib]System.Convert::ToString(int32)
IL_db2b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db30: stloc.s V_6
IL_db32: ldloc.s V_10
IL_db34: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_db39: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_db3e: stloc.s V_6
IL_db40: ldloc.s V_6
IL_db42: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db47: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db4c: stloc.s V_7
IL_db4e: ldloc.s V_8
IL_db50: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db55: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db5a: stloc.s V_9
IL_db5c: ldloc.s V_8
IL_db5e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_db63: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_db68: stloc.s V_9
IL_db6a: ldloc.s V_9
IL_db6c: ldloc.s V_8
IL_db6e: bgt.s IL_dbb8
IL_db70: ldloc.s V_8
IL_db72: call string [mscorlib]System.Convert::ToString(int32)
IL_db77: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_db7c: stloc.s V_9
IL_db7e: ldloc.s V_9
IL_db80: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_db85: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_db8a: stloc.s V_10
IL_db8c: ldloc.s V_10
IL_db8e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_db93: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_db98: stloc.s V_8
IL_db9a: ldloc.s V_8
IL_db9c: call string [mscorlib]System.Convert::ToString(int32)
IL_dba1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dba6: stloc.s V_9
IL_dba8: ldloc.s V_9
IL_dbaa: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dbaf: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dbb4: stloc.s V_8
IL_dbb6: br.s IL_dbfe
IL_dbb8: ldloc.s V_6
IL_dbba: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dbbf: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dbc4: stloc.s V_9
IL_dbc6: ldloc.s V_6
IL_dbc8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dbcd: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dbd2: stloc.s V_8
IL_dbd4: ldloc.s V_7
IL_dbd6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dbdb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dbe0: stloc.s V_8
IL_dbe2: ldloc.s V_9
IL_dbe4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dbe9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dbee: stloc.s V_8
IL_dbf0: ldloc.s V_8
IL_dbf2: call string [mscorlib]System.Convert::ToString(int32)
IL_dbf7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dbfc: stloc.s V_7
IL_dbfe: ldloc.s V_9
IL_dc00: ldloc.s V_10
IL_dc02: ble.s IL_dc4c
IL_dc04: ldloc.s V_10
IL_dc06: call string [mscorlib]System.Convert::ToString(int32)
IL_dc0b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dc10: stloc.s V_7
IL_dc12: ldloc.s V_6
IL_dc14: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc19: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc1e: stloc.s V_6
IL_dc20: ldloc.s V_7
IL_dc22: call string [mscorlib]System.Convert::ToString(int32)
IL_dc27: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dc2c: stloc.s V_10
IL_dc2e: ldloc.s V_8
IL_dc30: call string [mscorlib]System.Convert::ToString(int32)
IL_dc35: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dc3a: stloc.s V_10
IL_dc3c: ldloc.s V_7
IL_dc3e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dc43: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dc48: stloc.s V_9
IL_dc4a: br.s IL_dc92
IL_dc4c: ldloc.s V_6
IL_dc4e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc53: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc58: stloc.s V_10
IL_dc5a: ldloc.s V_8
IL_dc5c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dc61: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dc66: stloc.s V_7
IL_dc68: ldloc.s V_8
IL_dc6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc74: stloc.s V_8
IL_dc76: ldloc.s V_6
IL_dc78: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dc7d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dc82: stloc.s V_6
IL_dc84: ldloc.s V_6
IL_dc86: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc8b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dc90: stloc.s V_10
IL_dc92: ldloc.s V_8
IL_dc94: ldloc.s V_6
IL_dc96: blt.s IL_dce0
IL_dc98: ldloc.s V_8
IL_dc9a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dc9f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dca4: stloc.s V_8
IL_dca6: ldloc.s V_10
IL_dca8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dcad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dcb2: stloc.s V_9
IL_dcb4: ldloc.s V_8
IL_dcb6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dcbb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dcc0: stloc.s V_10
IL_dcc2: ldloc.s V_7
IL_dcc4: call string [mscorlib]System.Convert::ToString(int32)
IL_dcc9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dcce: stloc.s V_9
IL_dcd0: ldloc.s V_10
IL_dcd2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dcd7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dcdc: stloc.s V_10
IL_dcde: br.s IL_dd26
IL_dce0: ldloc.s V_9
IL_dce2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dce7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dcec: stloc.s V_8
IL_dcee: ldloc.s V_7
IL_dcf0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dcf5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dcfa: stloc.s V_7
IL_dcfc: ldloc.s V_8
IL_dcfe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_dd03: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dd08: stloc.s V_7
IL_dd0a: ldloc.s V_9
IL_dd0c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd11: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd16: stloc.s V_7
IL_dd18: ldloc.s V_7
IL_dd1a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd1f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd24: stloc.s V_6
IL_dd26: ldloc.s V_8
IL_dd28: ldloc.s V_6
IL_dd2a: bge.s IL_dd74
IL_dd2c: ldloc.s V_7
IL_dd2e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd33: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd38: stloc.s V_8
IL_dd3a: ldloc.s V_9
IL_dd3c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd41: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd46: stloc.s V_9
IL_dd48: ldloc.s V_9
IL_dd4a: call string [mscorlib]System.Convert::ToString(int32)
IL_dd4f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dd54: stloc.s V_7
IL_dd56: ldloc.s V_9
IL_dd58: call string [mscorlib]System.Convert::ToString(int32)
IL_dd5d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dd62: stloc.s V_6
IL_dd64: ldloc.s V_8
IL_dd66: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dd6b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dd70: stloc.s V_7
IL_dd72: br.s IL_ddba
IL_dd74: ldloc.s V_10
IL_dd76: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dd7b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dd80: stloc.s V_6
IL_dd82: ldloc.s V_10
IL_dd84: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dd89: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dd8e: stloc.s V_7
IL_dd90: ldloc.s V_6
IL_dd92: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dd97: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dd9c: stloc.s V_9
IL_dd9e: ldloc.s V_7
IL_dda0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dda5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ddaa: stloc.s V_6
IL_ddac: ldloc.s V_8
IL_ddae: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ddb3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ddb8: stloc.s V_6
IL_ddba: ldloc.s V_7
IL_ddbc: ldloc.s V_6
IL_ddbe: ble.s IL_de08
IL_ddc0: ldloc.s V_9
IL_ddc2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_ddc7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_ddcc: stloc.s V_6
IL_ddce: ldloc.s V_7
IL_ddd0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_ddd5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_ddda: stloc.s V_9
IL_dddc: ldloc.s V_6
IL_ddde: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dde3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dde8: stloc.s V_10
IL_ddea: ldloc.s V_7
IL_ddec: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ddf1: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_ddf6: stloc.s V_8
IL_ddf8: ldloc.s V_9
IL_ddfa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_ddff: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de04: stloc.s V_10
IL_de06: br.s IL_de4e
IL_de08: ldloc.s V_9
IL_de0a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_de0f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_de14: stloc.s V_6
IL_de16: ldloc.s V_7
IL_de18: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_de1d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_de22: stloc.s V_8
IL_de24: ldloc.s V_9
IL_de26: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_de2b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_de30: stloc.s V_7
IL_de32: ldloc.s V_9
IL_de34: call string [mscorlib]System.Convert::ToString(int32)
IL_de39: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_de3e: stloc.s V_6
IL_de40: ldloc.s V_9
IL_de42: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de47: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de4c: stloc.s V_7
IL_de4e: ldloc.s V_10
IL_de50: ldloc.s V_7
IL_de52: blt.s IL_de9c
IL_de54: ldloc.s V_6
IL_de56: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de5b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de60: stloc.s V_9
IL_de62: ldloc.s V_8
IL_de64: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_de69: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_de6e: stloc.s V_9
IL_de70: ldloc.s V_6
IL_de72: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_de77: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_de7c: stloc.s V_9
IL_de7e: ldloc.s V_6
IL_de80: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de85: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de8a: stloc.s V_9
IL_de8c: ldloc.s V_7
IL_de8e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_de93: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_de98: stloc.s V_10
IL_de9a: br.s IL_dee2
IL_de9c: ldloc.s V_10
IL_de9e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dea3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dea8: stloc.s V_9
IL_deaa: ldloc.s V_8
IL_deac: call string [mscorlib]System.Convert::ToString(int32)
IL_deb1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_deb6: stloc.s V_10
IL_deb8: ldloc.s V_8
IL_deba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_debf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_dec4: stloc.s V_9
IL_dec6: ldloc.s V_7
IL_dec8: call string [mscorlib]System.Convert::ToString(int32)
IL_decd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_ded2: stloc.s V_6
IL_ded4: ldloc.s V_6
IL_ded6: call string [mscorlib]System.Convert::ToString(int32)
IL_dedb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dee0: stloc.s V_8
IL_dee2: ldloc.s V_7
IL_dee4: ldloc.s V_6
IL_dee6: blt.s IL_df30
IL_dee8: ldloc.s V_10
IL_deea: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_deef: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_def4: stloc.s V_10
IL_def6: ldloc.s V_8
IL_def8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_defd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_df02: stloc.s V_9
IL_df04: ldloc.s V_8
IL_df06: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df0b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df10: stloc.s V_6
IL_df12: ldloc.s V_9
IL_df14: call string [mscorlib]System.Convert::ToString(int32)
IL_df19: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_df1e: stloc.s V_7
IL_df20: ldloc.s V_8
IL_df22: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_df27: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_df2c: stloc.s V_9
IL_df2e: br.s IL_df76
IL_df30: ldloc.s V_6
IL_df32: call string [mscorlib]System.Convert::ToString(int32)
IL_df37: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_df3c: stloc.s V_7
IL_df3e: ldloc.s V_7
IL_df40: call string [mscorlib]System.Convert::ToString(int32)
IL_df45: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_df4a: stloc.s V_10
IL_df4c: ldloc.s V_7
IL_df4e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df53: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df58: stloc.s V_10
IL_df5a: ldloc.s V_9
IL_df5c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df61: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df66: stloc.s V_8
IL_df68: ldloc.s V_9
IL_df6a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_df6f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_df74: stloc.s V_7
IL_df76: ldloc.s V_6
IL_df78: ldloc.s V_10
IL_df7a: ble.s IL_dfc4
IL_df7c: ldloc.s V_9
IL_df7e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df83: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df88: stloc.s V_10
IL_df8a: ldloc.s V_9
IL_df8c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_df91: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_df96: stloc.s V_8
IL_df98: ldloc.s V_9
IL_df9a: call string [mscorlib]System.Convert::ToString(int32)
IL_df9f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dfa4: stloc.s V_8
IL_dfa6: ldloc.s V_7
IL_dfa8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dfad: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dfb2: stloc.s V_6
IL_dfb4: ldloc.s V_7
IL_dfb6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_dfbb: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_dfc0: stloc.s V_9
IL_dfc2: br.s IL_e00a
IL_dfc4: ldloc.s V_10
IL_dfc6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dfcb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dfd0: stloc.s V_9
IL_dfd2: ldloc.s V_9
IL_dfd4: call string [mscorlib]System.Convert::ToString(int32)
IL_dfd9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_dfde: stloc.s V_10
IL_dfe0: ldloc.s V_7
IL_dfe2: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dfe7: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dfec: stloc.s V_9
IL_dfee: ldloc.s V_9
IL_dff0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_dff5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_dffa: stloc.s V_9
IL_dffc: ldloc.s V_9
IL_dffe: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e003: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e008: stloc.s V_9
IL_e00a: ldloc.s V_7
IL_e00c: ldloc.s V_8
IL_e00e: bne.un.s IL_e058
IL_e010: ldloc.s V_8
IL_e012: call string [mscorlib]System.Convert::ToString(int32)
IL_e017: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e01c: stloc.s V_10
IL_e01e: ldloc.s V_10
IL_e020: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e025: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e02a: stloc.s V_9
IL_e02c: ldloc.s V_9
IL_e02e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e033: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e038: stloc.s V_8
IL_e03a: ldloc.s V_9
IL_e03c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e041: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e046: stloc.s V_9
IL_e048: ldloc.s V_7
IL_e04a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e04f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e054: stloc.s V_10
IL_e056: br.s IL_e09e
IL_e058: ldloc.s V_6
IL_e05a: call string [mscorlib]System.Convert::ToString(int32)
IL_e05f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e064: stloc.s V_8
IL_e066: ldloc.s V_8
IL_e068: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e06d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e072: stloc.s V_10
IL_e074: ldloc.s V_10
IL_e076: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e07b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e080: stloc.s V_6
IL_e082: ldloc.s V_9
IL_e084: call string [mscorlib]System.Convert::ToString(int32)
IL_e089: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e08e: stloc.s V_8
IL_e090: ldloc.s V_10
IL_e092: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e097: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e09c: stloc.s V_10
IL_e09e: ldloc.s V_7
IL_e0a0: ldloc.s V_10
IL_e0a2: ble.s IL_e0ec
IL_e0a4: ldloc.s V_9
IL_e0a6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e0ab: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e0b0: stloc.s V_9
IL_e0b2: ldloc.s V_6
IL_e0b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e0b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e0be: stloc.s V_10
IL_e0c0: ldloc.s V_7
IL_e0c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e0c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e0cc: stloc.s V_6
IL_e0ce: ldloc.s V_7
IL_e0d0: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e0d5: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e0da: stloc.s V_10
IL_e0dc: ldloc.s V_7
IL_e0de: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e0e3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e0e8: stloc.s V_9
IL_e0ea: br.s IL_e132
IL_e0ec: ldloc.s V_7
IL_e0ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e0f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e0f8: stloc.s V_7
IL_e0fa: ldloc.s V_7
IL_e0fc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e101: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e106: stloc.s V_9
IL_e108: ldloc.s V_8
IL_e10a: call string [mscorlib]System.Convert::ToString(int32)
IL_e10f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e114: stloc.s V_10
IL_e116: ldloc.s V_7
IL_e118: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e11d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e122: stloc.s V_9
IL_e124: ldloc.s V_8
IL_e126: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e12b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e130: stloc.s V_6
IL_e132: ldloc.s V_8
IL_e134: ldloc.s V_8
IL_e136: beq.s IL_e180
IL_e138: ldloc.s V_10
IL_e13a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e13f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e144: stloc.s V_10
IL_e146: ldloc.s V_8
IL_e148: call string [mscorlib]System.Convert::ToString(int32)
IL_e14d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e152: stloc.s V_9
IL_e154: ldloc.s V_9
IL_e156: call string [mscorlib]System.Convert::ToString(int32)
IL_e15b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e160: stloc.s V_10
IL_e162: ldloc.s V_10
IL_e164: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e169: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e16e: stloc.s V_7
IL_e170: ldloc.s V_10
IL_e172: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e177: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e17c: stloc.s V_8
IL_e17e: br.s IL_e1c6
IL_e180: ldloc.s V_9
IL_e182: call string [mscorlib]System.Convert::ToString(int32)
IL_e187: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e18c: stloc.s V_7
IL_e18e: ldloc.s V_8
IL_e190: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e195: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e19a: stloc.s V_9
IL_e19c: ldloc.s V_6
IL_e19e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1a3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1a8: stloc.s V_9
IL_e1aa: ldloc.s V_9
IL_e1ac: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e1b1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e1b6: stloc.s V_6
IL_e1b8: ldloc.s V_10
IL_e1ba: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1bf: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1c4: stloc.s V_10
IL_e1c6: ldloc.s V_6
IL_e1c8: ldloc.s V_8
IL_e1ca: bne.un.s IL_e214
IL_e1cc: ldloc.s V_9
IL_e1ce: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1d3: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1d8: stloc.s V_10
IL_e1da: ldloc.s V_9
IL_e1dc: call string [mscorlib]System.Convert::ToString(int32)
IL_e1e1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e1e6: stloc.s V_7
IL_e1e8: ldloc.s V_6
IL_e1ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e1ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e1f4: stloc.s V_9
IL_e1f6: ldloc.s V_8
IL_e1f8: call string [mscorlib]System.Convert::ToString(int32)
IL_e1fd: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e202: stloc.s V_9
IL_e204: ldloc.s V_8
IL_e206: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e20b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e210: stloc.s V_8
IL_e212: br.s IL_e25a
IL_e214: ldloc.s V_9
IL_e216: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e21b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e220: stloc.s V_7
IL_e222: ldloc.s V_7
IL_e224: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e229: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e22e: stloc.s V_10
IL_e230: ldloc.s V_7
IL_e232: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e237: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e23c: stloc.s V_10
IL_e23e: ldloc.s V_7
IL_e240: call string [mscorlib]System.Convert::ToString(int32)
IL_e245: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e24a: stloc.s V_10
IL_e24c: ldloc.s V_9
IL_e24e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e253: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e258: stloc.s V_10
IL_e25a: ldloc.s V_9
IL_e25c: ldloc.s V_6
IL_e25e: bgt.s IL_e2a8
IL_e260: ldloc.s V_6
IL_e262: call string [mscorlib]System.Convert::ToString(int32)
IL_e267: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e26c: stloc.s V_8
IL_e26e: ldloc.s V_6
IL_e270: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e275: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e27a: stloc.s V_7
IL_e27c: ldloc.s V_9
IL_e27e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e283: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e288: stloc.s V_6
IL_e28a: ldloc.s V_7
IL_e28c: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e291: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e296: stloc.s V_7
IL_e298: ldloc.s V_7
IL_e29a: call string [mscorlib]System.Convert::ToString(int32)
IL_e29f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2a4: stloc.s V_9
IL_e2a6: br.s IL_e2ee
IL_e2a8: ldloc.s V_6
IL_e2aa: call string [mscorlib]System.Convert::ToString(int32)
IL_e2af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2b4: stloc.s V_6
IL_e2b6: ldloc.s V_10
IL_e2b8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e2bd: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e2c2: stloc.s V_7
IL_e2c4: ldloc.s V_8
IL_e2c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e2cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e2d0: stloc.s V_7
IL_e2d2: ldloc.s V_6
IL_e2d4: call string [mscorlib]System.Convert::ToString(int32)
IL_e2d9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2de: stloc.s V_7
IL_e2e0: ldloc.s V_9
IL_e2e2: call string [mscorlib]System.Convert::ToString(int32)
IL_e2e7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e2ec: stloc.s V_7
IL_e2ee: ldloc.s V_10
IL_e2f0: ldloc.s V_10
IL_e2f2: blt.s IL_e33c
IL_e2f4: ldloc.s V_7
IL_e2f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e2fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e300: stloc.s V_7
IL_e302: ldloc.s V_6
IL_e304: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e309: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e30e: stloc.s V_8
IL_e310: ldloc.s V_6
IL_e312: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e317: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e31c: stloc.s V_9
IL_e31e: ldloc.s V_7
IL_e320: call string [mscorlib]System.Convert::ToString(int32)
IL_e325: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e32a: stloc.s V_8
IL_e32c: ldloc.s V_10
IL_e32e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e333: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e338: stloc.s V_6
IL_e33a: br.s IL_e382
IL_e33c: ldloc.s V_8
IL_e33e: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e343: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e348: stloc.s V_6
IL_e34a: ldloc.s V_10
IL_e34c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e351: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e356: stloc.s V_9
IL_e358: ldloc.s V_10
IL_e35a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e35f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e364: stloc.s V_7
IL_e366: ldloc.s V_7
IL_e368: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e36d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e372: stloc.s V_8
IL_e374: ldloc.s V_7
IL_e376: call string [mscorlib]System.Convert::ToString(int32)
IL_e37b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e380: stloc.s V_6
IL_e382: ldloc.s V_10
IL_e384: ldloc.s V_10
IL_e386: beq.s IL_e3d0
IL_e388: ldloc.s V_8
IL_e38a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e38f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e394: stloc.s V_7
IL_e396: ldloc.s V_8
IL_e398: call string [mscorlib]System.Convert::ToString(int32)
IL_e39d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e3a2: stloc.s V_10
IL_e3a4: ldloc.s V_10
IL_e3a6: call string [mscorlib]System.Convert::ToString(int32)
IL_e3ab: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e3b0: stloc.s V_10
IL_e3b2: ldloc.s V_6
IL_e3b4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e3b9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e3be: stloc.s V_10
IL_e3c0: ldloc.s V_7
IL_e3c2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e3c7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e3cc: stloc.s V_7
IL_e3ce: br.s IL_e416
IL_e3d0: ldloc.s V_10
IL_e3d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e3d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e3dc: stloc.s V_6
IL_e3de: ldloc.s V_8
IL_e3e0: call string [mscorlib]System.Convert::ToString(int32)
IL_e3e5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e3ea: stloc.s V_7
IL_e3ec: ldloc.s V_6
IL_e3ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e3f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e3f8: stloc.s V_6
IL_e3fa: ldloc.s V_6
IL_e3fc: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e401: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e406: stloc.s V_8
IL_e408: ldloc.s V_7
IL_e40a: call string [mscorlib]System.Convert::ToString(int32)
IL_e40f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e414: stloc.s V_9
IL_e416: ldloc.s V_9
IL_e418: ldloc.s V_10
IL_e41a: bne.un.s IL_e464
IL_e41c: ldloc.s V_6
IL_e41e: call string [mscorlib]System.Convert::ToString(int32)
IL_e423: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e428: stloc.s V_7
IL_e42a: ldloc.s V_7
IL_e42c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e431: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e436: stloc.s V_8
IL_e438: ldloc.s V_10
IL_e43a: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e43f: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e444: stloc.s V_10
IL_e446: ldloc.s V_7
IL_e448: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e44d: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e452: stloc.s V_6
IL_e454: ldloc.s V_9
IL_e456: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e45b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e460: stloc.s V_9
IL_e462: br.s IL_e4aa
IL_e464: ldloc.s V_8
IL_e466: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e46b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e470: stloc.s V_6
IL_e472: ldloc.s V_7
IL_e474: call string [mscorlib]System.Convert::ToString(int32)
IL_e479: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e47e: stloc.s V_8
IL_e480: ldloc.s V_6
IL_e482: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e487: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e48c: stloc.s V_8
IL_e48e: ldloc.s V_8
IL_e490: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e495: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e49a: stloc.s V_8
IL_e49c: ldloc.s V_10
IL_e49e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e4a3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e4a8: stloc.s V_8
IL_e4aa: ldloc.s V_6
IL_e4ac: ldloc.s V_6
IL_e4ae: bgt.s IL_e4f8
IL_e4b0: ldloc.s V_9
IL_e4b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e4b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e4bc: stloc.s V_7
IL_e4be: ldloc.s V_6
IL_e4c0: call string [mscorlib]System.Convert::ToString(int32)
IL_e4c5: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e4ca: stloc.s V_7
IL_e4cc: ldloc.s V_10
IL_e4ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e4d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e4d8: stloc.s V_8
IL_e4da: ldloc.s V_9
IL_e4dc: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e4e1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e4e6: stloc.s V_9
IL_e4e8: ldloc.s V_10
IL_e4ea: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e4ef: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e4f4: stloc.s V_9
IL_e4f6: br.s IL_e53e
IL_e4f8: ldloc.s V_9
IL_e4fa: call string [mscorlib]System.Convert::ToString(int32)
IL_e4ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e504: stloc.s V_7
IL_e506: ldloc.s V_6
IL_e508: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e50d: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e512: stloc.s V_10
IL_e514: ldloc.s V_7
IL_e516: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e51b: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e520: stloc.s V_9
IL_e522: ldloc.s V_10
IL_e524: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e529: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e52e: stloc.s V_10
IL_e530: ldloc.s V_8
IL_e532: call string [mscorlib]System.Convert::ToString(int32)
IL_e537: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e53c: stloc.s V_9
IL_e53e: ldloc.s V_8
IL_e540: ldloc.s V_6
IL_e542: beq.s IL_e58c
IL_e544: ldloc.s V_7
IL_e546: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e54b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e550: stloc.s V_6
IL_e552: ldloc.s V_6
IL_e554: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e559: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e55e: stloc.s V_6
IL_e560: ldloc.s V_6
IL_e562: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e567: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e56c: stloc.s V_7
IL_e56e: ldloc.s V_7
IL_e570: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e575: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e57a: stloc.s V_7
IL_e57c: ldloc.s V_8
IL_e57e: call string [mscorlib]System.Convert::ToString(int32)
IL_e583: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e588: stloc.s V_7
IL_e58a: br.s IL_e5d2
IL_e58c: ldloc.s V_10
IL_e58e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e593: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e598: stloc.s V_9
IL_e59a: ldloc.s V_10
IL_e59c: call string [mscorlib]System.Convert::ToString(int32)
IL_e5a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e5a6: stloc.s V_7
IL_e5a8: ldloc.s V_6
IL_e5aa: call string [mscorlib]System.Convert::ToString(int32)
IL_e5af: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e5b4: stloc.s V_10
IL_e5b6: ldloc.s V_9
IL_e5b8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e5bd: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e5c2: stloc.s V_7
IL_e5c4: ldloc.s V_10
IL_e5c6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e5cb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e5d0: stloc.s V_7
IL_e5d2: ldloc.s V_9
IL_e5d4: ldloc.s V_8
IL_e5d6: blt.s IL_e620
IL_e5d8: ldloc.s V_7
IL_e5da: call string [mscorlib]System.Convert::ToString(int32)
IL_e5df: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e5e4: stloc.s V_9
IL_e5e6: ldloc.s V_8
IL_e5e8: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e5ed: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e5f2: stloc.s V_8
IL_e5f4: ldloc.s V_7
IL_e5f6: call string [mscorlib]System.Convert::ToString(int32)
IL_e5fb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e600: stloc.s V_8
IL_e602: ldloc.s V_6
IL_e604: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e609: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e60e: stloc.s V_6
IL_e610: ldloc.s V_7
IL_e612: call string [mscorlib]System.Convert::ToString(int32)
IL_e617: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e61c: stloc.s V_10
IL_e61e: br.s IL_e666
IL_e620: ldloc.s V_8
IL_e622: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e627: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e62c: stloc.s V_7
IL_e62e: ldloc.s V_10
IL_e630: call string [mscorlib]System.Convert::ToString(int32)
IL_e635: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e63a: stloc.s V_8
IL_e63c: ldloc.s V_9
IL_e63e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e643: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e648: stloc.s V_6
IL_e64a: ldloc.s V_8
IL_e64c: call string [mscorlib]System.Convert::ToString(int32)
IL_e651: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e656: stloc.s V_6
IL_e658: ldloc.s V_6
IL_e65a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e65f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e664: stloc.s V_8
IL_e666: ldloc.s V_10
IL_e668: ldloc.s V_6
IL_e66a: bge.s IL_e6b4
IL_e66c: ldloc.s V_6
IL_e66e: call string [mscorlib]System.Convert::ToString(int32)
IL_e673: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e678: stloc.s V_10
IL_e67a: ldloc.s V_10
IL_e67c: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e681: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e686: stloc.s V_7
IL_e688: ldloc.s V_6
IL_e68a: call string [mscorlib]System.Convert::ToString(int32)
IL_e68f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e694: stloc.s V_7
IL_e696: ldloc.s V_8
IL_e698: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e69d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e6a2: stloc.s V_9
IL_e6a4: ldloc.s V_10
IL_e6a6: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e6ab: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e6b0: stloc.s V_6
IL_e6b2: br.s IL_e6fa
IL_e6b4: ldloc.s V_10
IL_e6b6: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e6bb: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e6c0: stloc.s V_7
IL_e6c2: ldloc.s V_10
IL_e6c4: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e6c9: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e6ce: stloc.s V_8
IL_e6d0: ldloc.s V_7
IL_e6d2: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e6d7: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e6dc: stloc.s V_8
IL_e6de: ldloc.s V_8
IL_e6e0: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e6e5: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e6ea: stloc.s V_9
IL_e6ec: ldloc.s V_7
IL_e6ee: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e6f3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e6f8: stloc.s V_6
IL_e6fa: ldloc.s V_9
IL_e6fc: ldloc.s V_8
IL_e6fe: bge.s IL_e748
IL_e700: ldloc.s V_9
IL_e702: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e707: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e70c: stloc.s V_10
IL_e70e: ldloc.s V_10
IL_e710: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e715: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e71a: stloc.s V_7
IL_e71c: ldloc.s V_6
IL_e71e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e723: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e728: stloc.s V_8
IL_e72a: ldloc.s V_7
IL_e72c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e731: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e736: stloc.s V_9
IL_e738: ldloc.s V_7
IL_e73a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e73f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e744: stloc.s V_7
IL_e746: br.s IL_e78e
IL_e748: ldloc.s V_6
IL_e74a: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e74f: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e754: stloc.s V_9
IL_e756: ldloc.s V_10
IL_e758: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e75d: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e762: stloc.s V_7
IL_e764: ldloc.s V_7
IL_e766: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e76b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e770: stloc.s V_6
IL_e772: ldloc.s V_9
IL_e774: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e779: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e77e: stloc.s V_9
IL_e780: ldloc.s V_8
IL_e782: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e787: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e78c: stloc.s V_7
IL_e78e: ldloc.s V_8
IL_e790: ldloc.s V_7
IL_e792: bne.un.s IL_e7dc
IL_e794: ldloc.s V_8
IL_e796: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e79b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e7a0: stloc.s V_10
IL_e7a2: ldloc.s V_10
IL_e7a4: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e7a9: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e7ae: stloc.s V_6
IL_e7b0: ldloc.s V_8
IL_e7b2: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e7b7: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e7bc: stloc.s V_6
IL_e7be: ldloc.s V_10
IL_e7c0: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e7c5: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e7ca: stloc.s V_10
IL_e7cc: ldloc.s V_7
IL_e7ce: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e7d3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e7d8: stloc.s V_6
IL_e7da: br.s IL_e822
IL_e7dc: ldloc.s V_6
IL_e7de: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e7e3: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e7e8: stloc.s V_7
IL_e7ea: ldloc.s V_10
IL_e7ec: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e7f1: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e7f6: stloc.s V_6
IL_e7f8: ldloc.s V_9
IL_e7fa: call string [mscorlib]System.Convert::ToString(int32)
IL_e7ff: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e804: stloc.s V_9
IL_e806: ldloc.s V_8
IL_e808: call string [mscorlib]System.Convert::ToString(int32)
IL_e80d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e812: stloc.s V_8
IL_e814: ldloc.s V_6
IL_e816: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e81b: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e820: stloc.s V_6
IL_e822: ldloc.s V_10
IL_e824: ldloc.s V_10
IL_e826: bgt.s IL_e870
IL_e828: ldloc.s V_10
IL_e82a: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e82f: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e834: stloc.s V_6
IL_e836: ldloc.s V_10
IL_e838: call string [mscorlib]System.Convert::ToString(int32)
IL_e83d: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e842: stloc.s V_9
IL_e844: ldloc.s V_10
IL_e846: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e84b: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e850: stloc.s V_7
IL_e852: ldloc.s V_8
IL_e854: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e859: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e85e: stloc.s V_7
IL_e860: ldloc.s V_10
IL_e862: call string [mscorlib]System.Convert::ToString(int32)
IL_e867: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e86c: stloc.s V_7
IL_e86e: br.s IL_e8b6
IL_e870: ldloc.s V_9
IL_e872: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e877: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e87c: stloc.s V_8
IL_e87e: ldloc.s V_8
IL_e880: call string [mscorlib]System.Convert::ToString(int32)
IL_e885: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e88a: stloc.s V_8
IL_e88c: ldloc.s V_8
IL_e88e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e893: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e898: stloc.s V_7
IL_e89a: ldloc.s V_8
IL_e89c: call string [mscorlib]System.Convert::ToString(int32)
IL_e8a1: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e8a6: stloc.s V_10
IL_e8a8: ldloc.s V_9
IL_e8aa: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8af: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e8b4: stloc.s V_7
IL_e8b6: ldloc.s V_7
IL_e8b8: ldloc.s V_6
IL_e8ba: blt.s IL_e904
IL_e8bc: ldloc.s V_6
IL_e8be: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8c3: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e8c8: stloc.s V_6
IL_e8ca: ldloc.s V_10
IL_e8cc: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e8d1: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e8d6: stloc.s V_7
IL_e8d8: ldloc.s V_10
IL_e8da: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e8df: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e8e4: stloc.s V_6
IL_e8e6: ldloc.s V_7
IL_e8e8: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8ed: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e8f2: stloc.s V_6
IL_e8f4: ldloc.s V_10
IL_e8f6: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e8fb: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e900: stloc.s V_6
IL_e902: br.s IL_e94a
IL_e904: ldloc.s V_7
IL_e906: call string [mscorlib]System.Convert::ToString(int32)
IL_e90b: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e910: stloc.s V_9
IL_e912: ldloc.s V_7
IL_e914: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e919: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e91e: stloc.s V_8
IL_e920: ldloc.s V_6
IL_e922: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e927: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e92c: stloc.s V_7
IL_e92e: ldloc.s V_10
IL_e930: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e935: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e93a: stloc.s V_8
IL_e93c: ldloc.s V_6
IL_e93e: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e943: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e948: stloc.s V_7
IL_e94a: ldloc.s V_6
IL_e94c: ldloc.s V_6
IL_e94e: bge.s IL_e998
IL_e950: ldloc.s V_8
IL_e952: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e957: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e95c: stloc.s V_7
IL_e95e: ldloc.s V_8
IL_e960: call float32 [mscorlib]System.Convert::ToSingle(int32)
IL_e965: call int32 [mscorlib]System.Convert::ToInt32(float32)
IL_e96a: stloc.s V_10
IL_e96c: ldloc.s V_9
IL_e96e: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e973: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e978: stloc.s V_10
IL_e97a: ldloc.s V_6
IL_e97c: call float64 [mscorlib]System.Convert::ToDouble(int32)
IL_e981: call int32 [mscorlib]System.Convert::ToInt32(float64)
IL_e986: stloc.s V_9
IL_e988: ldloc.s V_8
IL_e98a: call string [mscorlib]System.Convert::ToString(int32)
IL_e98f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e994: stloc.s V_6
IL_e996: br.s IL_e9de
IL_e998: ldloc.s V_8
IL_e99a: call string [mscorlib]System.Convert::ToString(int32)
IL_e99f: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9a4: stloc.s V_9
IL_e9a6: ldloc.s V_6
IL_e9a8: call int64 [mscorlib]System.Convert::ToInt64(int32)
IL_e9ad: call int32 [mscorlib]System.Convert::ToInt32(int64)
IL_e9b2: stloc.s V_7
IL_e9b4: ldloc.s V_7
IL_e9b6: call string [mscorlib]System.Convert::ToString(int32)
IL_e9bb: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9c0: stloc.s V_9
IL_e9c2: ldloc.s V_8
IL_e9c4: call string [mscorlib]System.Convert::ToString(int32)
IL_e9c9: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9ce: stloc.s V_6
IL_e9d0: ldloc.s V_10
IL_e9d2: call string [mscorlib]System.Convert::ToString(int32)
IL_e9d7: call int32 [mscorlib]System.Convert::ToInt32(string)
IL_e9dc: stloc.s V_10
IL_e9de: ldstr "a is: "
IL_e9e3: ldloc.s V_6
IL_e9e5: ldloc.0
IL_e9e6: add
IL_e9e7: box [mscorlib]System.Int32
IL_e9ec: call string [mscorlib]System.String::Concat(object,
object)
IL_e9f1: call void [System.Console]System.Console::WriteLine(string)
IL_e9f6: ldstr "b is: "
IL_e9fb: ldloc.s V_7
IL_e9fd: ldloc.1
IL_e9fe: add
IL_e9ff: box [mscorlib]System.Int32
IL_ea04: call string [mscorlib]System.String::Concat(object,
object)
IL_ea09: call void [System.Console]System.Console::WriteLine(string)
IL_ea0e: ldstr "c is: "
IL_ea13: ldloc.s V_8
IL_ea15: ldloc.2
IL_ea16: add
IL_ea17: box [mscorlib]System.Int32
IL_ea1c: call string [mscorlib]System.String::Concat(object,
object)
IL_ea21: call void [System.Console]System.Console::WriteLine(string)
IL_ea26: ldstr "d is: "
IL_ea2b: ldloc.s V_9
IL_ea2d: ldloc V_3
IL_ea2e: add
IL_ea2f: box [mscorlib]System.Int32
IL_ea34: call string [mscorlib]System.String::Concat(object,
object)
IL_ea39: call void [System.Console]System.Console::WriteLine(string)
IL_ea3e: ldstr "e is: "
IL_ea43: ldloc.s V_10
IL_ea45: ldloc.s V_4
IL_ea47: add
IL_ea48: ldc.i4.1
IL_ea49: add
IL_ea4a: box [mscorlib]System.Int32
IL_ea4f: call string [mscorlib]System.String::Concat(object,
object)
IL_ea54: call void [System.Console]System.Console::WriteLine(string)
IL_ea59: ldc.i4.s 100
IL_ea5b: stloc.s V_11
IL_ea5f: ldloc.s V_11
IL_ea61: ret
} // end of method CodeSize1::Main
.method public hidebysig specialname rtspecialname
instance void .ctor() cil managed
{
// Code size 7 (0x7)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [mscorlib]System.Object::.ctor()
IL_0006: ret
} // end of method CodeSize1::.ctor
}
| -1 |
dotnet/runtime | 66,312 | Fix ConditionalFactAttribute instances in ILPROJ tests | I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | trylek | 2022-03-07T20:19:21Z | 2022-03-08T01:22:09Z | 145b67782ae1630c04c3706af03f720583a28bdc | bc822868822f0206a1fa1f01c61f9b2d78bc9ac0 | Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect -
the Roslyn XUnit wrapper source generator started failing with
a nullref. I have experimentally identified that I can fix this problem
by explicitly specifying public key tokens of the System.Runtime
and Microsoft.DotNet.XUnitExtensions assembly references and
by adding a reference to the TestLibrary.
As I had to update System.Runtime references in all affected modules,
I also put back the System.Runtime assembly as the home for
System.Type as was the original state I copied from a C# compilation
disassembly, I changed them to mscorlib because I didn't know
I would need to specify the System.Runtime reference.
Thanks
Tomas | ./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1447/Generated1447.il | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated1447 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1919`1<T0>
extends class G2_C836`2<class BaseClass1,!T0>
implements class IBase2`2<!T0,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1919::Method7.18712<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,class BaseClass1>::Method7<[1]>()
ldstr "G3_C1919::Method7.MI.18713<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod5235() cil managed noinlining {
ldstr "G3_C1919::ClassMethod5235.18714()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod5236<M0>() cil managed noinlining {
ldstr "G3_C1919::ClassMethod5236.18715<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod5237<M0>() cil managed noinlining {
ldstr "G3_C1919::ClassMethod5237.18716<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C836`2<class BaseClass1,!T0>::.ctor()
ret
}
}
.class public G2_C836`2<T0, T1>
extends class G1_C15`2<class BaseClass1,!T0>
implements class IBase1`1<!T1>, class IBase2`2<!T1,class BaseClass1>
{
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G2_C836::Method4.12676()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T1>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<!T1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G2_C836::Method5.12678()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C836::Method6.12679<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C836::Method7.12680<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3050() cil managed noinlining {
ldstr "G2_C836::ClassMethod3050.12681()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3051<M0>() cil managed noinlining {
ldstr "G2_C836::ClassMethod3051.12682<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C15`2<class BaseClass1,!T0>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public abstract G1_C15`2<T0, T1>
implements class IBase2`2<!T1,!T1>, class IBase1`1<class BaseClass0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C15::Method7.4885<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T1,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T1,!T1>::Method7<[1]>()
ldstr "G1_C15::Method7.MI.4886<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G1_C15::Method4.4887()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C15::Method4.MI.4888()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G1_C15::Method5.4889()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method5'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C15::Method5.MI.4890()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C15::Method6.4891<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G1_C15::Method6.MI.4892<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated1447 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1919.T<T0,(class G3_C1919`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1919.T<T0,(class G3_C1919`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod5235()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod5236<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod5237<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1919.A<(class G3_C1919`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1919.A<(class G3_C1919`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5235()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5236<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5237<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1919.B<(class G3_C1919`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1919.B<(class G3_C1919`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5235()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5236<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5237<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.T.T<T0,T1,(class G2_C836`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.T.T<T0,T1,(class G2_C836`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.A.T<T1,(class G2_C836`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.A.T<T1,(class G2_C836`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.A.A<(class G2_C836`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.A.A<(class G2_C836`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.A.B<(class G2_C836`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.A.B<(class G2_C836`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.B.T<T1,(class G2_C836`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.B.T<T1,(class G2_C836`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.B.A<(class G2_C836`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.B.A<(class G2_C836`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.B.B<(class G2_C836`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.B.B<(class G2_C836`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1919`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5237<object>()
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5236<object>()
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5235()
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1919`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5237<object>()
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5236<object>()
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5235()
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1919`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.A<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.T<class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.A<class G3_C1919`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1919`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass0,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.A<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.A<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.A<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1919`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod5237<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod5236<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod5235()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1919`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod5237<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod5236<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod5235()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated1447::MethodCallingTest()
call void Generated1447::ConstrainedCallsTest()
call void Generated1447::StructConstrainedInterfaceCallsTest()
call void Generated1447::CalliTest()
ldc.i4 100
ret
}
}
| // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 }
.assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) }
//TYPES IN FORWARDER ASSEMBLIES:
//TEST ASSEMBLY:
.assembly Generated1447 { .hash algorithm 0x00008004 }
.assembly extern xunit.core {}
.class public BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class public BaseClass1
extends BaseClass0
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void BaseClass0::.ctor()
ret
}
}
.class public G3_C1919`1<T0>
extends class G2_C836`2<class BaseClass1,!T0>
implements class IBase2`2<!T0,class BaseClass1>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G3_C1919::Method7.18712<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T0,class BaseClass1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T0,class BaseClass1>::Method7<[1]>()
ldstr "G3_C1919::Method7.MI.18713<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod5235() cil managed noinlining {
ldstr "G3_C1919::ClassMethod5235.18714()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod5236<M0>() cil managed noinlining {
ldstr "G3_C1919::ClassMethod5236.18715<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod5237<M0>() cil managed noinlining {
ldstr "G3_C1919::ClassMethod5237.18716<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G2_C836`2<class BaseClass1,!T0>::.ctor()
ret
}
}
.class public G2_C836`2<T0, T1>
extends class G1_C15`2<class BaseClass1,!T0>
implements class IBase1`1<!T1>, class IBase2`2<!T1,class BaseClass1>
{
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G2_C836::Method4.12676()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<T1>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<!T1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G2_C836::Method5.12678()"
ret
}
.method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G2_C836::Method6.12679<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G2_C836::Method7.12680<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3050() cil managed noinlining {
ldstr "G2_C836::ClassMethod3050.12681()"
ret
}
.method public hidebysig newslot virtual instance string ClassMethod3051<M0>() cil managed noinlining {
ldstr "G2_C836::ClassMethod3051.12682<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void class G1_C15`2<class BaseClass1,!T0>::.ctor()
ret
}
}
.class interface public abstract IBase2`2<+T0, -T1>
{
.method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { }
}
.class public abstract G1_C15`2<T0, T1>
implements class IBase2`2<!T1,!T1>, class IBase1`1<class BaseClass0>
{
.method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining {
ldstr "G1_C15::Method7.4885<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase2<T1,T1>.Method7'<M0>() cil managed noinlining {
.override method instance string class IBase2`2<!T1,!T1>::Method7<[1]>()
ldstr "G1_C15::Method7.MI.4886<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig virtual instance string Method4() cil managed noinlining {
ldstr "G1_C15::Method4.4887()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method4'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G1_C15::Method4.MI.4888()"
ret
}
.method public hidebysig virtual instance string Method5() cil managed noinlining {
ldstr "G1_C15::Method5.4889()"
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method5'() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G1_C15::Method5.MI.4890()"
ret
}
.method public hidebysig virtual instance string Method6<M0>() cil managed noinlining {
ldstr "G1_C15::Method6.4891<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining {
.override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>()
ldstr "G1_C15::Method6.MI.4892<"
ldtoken !!M0
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call string [mscorlib]System.String::Concat(object,object)
ldstr ">()"
call string [mscorlib]System.String::Concat(object,object)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class interface public abstract IBase1`1<+T0>
{
.method public hidebysig newslot abstract virtual instance string Method4() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method5() cil managed { }
.method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { }
}
.class public auto ansi beforefieldinit Generated1447 {
.method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed {
.maxstack 5
.locals init (string[] actualResults)
ldc.i4.s 0
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)"
ldc.i4.s 0
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1919.T<T0,(class G3_C1919`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1919.T<T0,(class G3_C1919`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod5235()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod5236<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::ClassMethod5237<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<!!T0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1919.A<(class G3_C1919`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1919.A<(class G3_C1919`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5235()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5236<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5237<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G3_C1919.B<(class G3_C1919`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 14
.locals init (string[] actualResults)
ldc.i4.s 9
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G3_C1919.B<(class G3_C1919`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 9
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5235()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5236<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5237<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 6
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 7
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 8
ldarga.s 0
constrained. !!W
callvirt instance string class G3_C1919`1<class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.T.T<T0,T1,(class G2_C836`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.T.T<T0,T1,(class G2_C836`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.A.T<T1,(class G2_C836`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.A.T<T1,(class G2_C836`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.A.A<(class G2_C836`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.A.A<(class G2_C836`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.A.B<(class G2_C836`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.A.B<(class G2_C836`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.B.T<T1,(class G2_C836`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.B.T<T1,(class G2_C836`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.B.A<(class G2_C836`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.B.A<(class G2_C836`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G2_C836.B.B<(class G2_C836`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 11
.locals init (string[] actualResults)
ldc.i4.s 6
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G2_C836.B.B<(class G2_C836`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 6
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 4
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 5
ldarga.s 0
constrained. !!W
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 6
.locals init (string[] actualResults)
ldc.i4.s 1
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 1
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<!!T0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 9
.locals init (string[] actualResults)
ldc.i4.s 4
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 4
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
ldc.i4.s 3
ldarga.s 0
constrained. !!W
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<!!T0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed {
.maxstack 8
.locals init (string[] actualResults)
ldc.i4.s 3
newarr string
stloc.s actualResults
ldarg.1
ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)"
ldc.i4.s 3
ldloc.s actualResults
ldc.i4.s 0
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
stelem.ref
ldloc.s actualResults
ldc.i4.s 1
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
stelem.ref
ldloc.s actualResults
ldc.i4.s 2
ldarga.s 0
constrained. !!W
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
stelem.ref
ldloc.s actualResults
call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[])
ret
}
.method public hidebysig static void MethodCallingTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calling Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1919`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5237<object>()
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5236<object>()
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod5235()
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method7<object>()
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass0>
callvirt instance string class G3_C1919`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G3_C1919`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5237<object>()
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5236<object>()
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod5235()
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method7<object>()
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G3_C1919`1<class BaseClass1>
callvirt instance string class G3_C1919`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
callvirt instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldloc.0
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method4()
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method5()
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
dup
callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>()
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
pop
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void ConstrainedCallsTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Constrained Calls Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1919`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.A<class G3_C1919`1<class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.T<class BaseClass0,class G3_C1919`1<class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.A<class G3_C1919`1<class BaseClass0>>(!!0,string)
newobj instance void class G3_C1919`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G3_C1919::Method7.MI.18713<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.T<class BaseClass1,class G3_C1919`1<class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G3_C1919::ClassMethod5235.18714()#G3_C1919::ClassMethod5236.18715<System.Object>()#G3_C1919::ClassMethod5237.18716<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G3_C1919::Method7.18712<System.Object>()#"
call void Generated1447::M.G3_C1919.B<class G3_C1919`1<class BaseClass1>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass0,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.A<class G2_C836`2<class BaseClass0,class BaseClass0>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.A<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.A.A<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.A.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G2_C836`2<class BaseClass0,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G2_C836`2<class BaseClass0,class BaseClass1>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G1_C15::Method7.MI.4886<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass0>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.A<class G2_C836`2<class BaseClass1,class BaseClass0>>(!!0,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.12676()#G2_C836::Method5.12678()#G1_C15::Method6.4891<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G1_C15.B.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.B.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass0,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.A<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.IBase2.A.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.T.T<class BaseClass1,class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!2,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::ClassMethod3050.12681()#G2_C836::ClassMethod3051.12682<System.Object>()#G2_C836::Method4.12676()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#G2_C836::Method7.12680<System.Object>()#"
call void Generated1447::M.G2_C836.B.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.T<class BaseClass1,class G2_C836`2<class BaseClass1,class BaseClass1>>(!!1,string)
ldloc.0
ldstr "G2_C836::Method4.MI.12677()#G2_C836::Method5.12678()#G2_C836::Method6.12679<System.Object>()#"
call void Generated1447::M.IBase1.B<class G2_C836`2<class BaseClass1,class BaseClass1>>(!!0,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed
{
.maxstack 10
ldstr "===================== Struct Constrained Interface Calls Test ====================="
call void [mscorlib]System.Console::WriteLine(string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static void CalliTest() cil managed
{
.maxstack 10
.locals init (object V_0)
ldstr "========================== Method Calli Test =========================="
call void [mscorlib]System.Console::WriteLine(string)
newobj instance void class G3_C1919`1<class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod5237<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod5236<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod5235()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass0>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass0> on type class G3_C1919`1<class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G3_C1919`1<class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::Method7.MI.18713<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod5237<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::ClassMethod5237.18716<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod5236<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::ClassMethod5236.18715<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod5235()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::ClassMethod5235.18714()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method7<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G3_C1919::Method7.18712<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod3051<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::ClassMethod3050()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method6<object>()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method5()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G3_C1919`1<class BaseClass1>
ldloc.0
ldvirtftn instance string class G3_C1919`1<class BaseClass1>::Method4()
calli default string(class G3_C1919`1<class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G3_C1919`1<class BaseClass1> on type class G3_C1919`1<class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass0,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass0,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass0,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass0,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass0,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass0>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G1_C15::Method7.MI.4886<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass0>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass0>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass0>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
newobj instance void class G2_C836`2<class BaseClass1,class BaseClass1>::.ctor()
stloc.0
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G1_C15::Method6.4891<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G1_C15`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G1_C15`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass0> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3051<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::ClassMethod3051.12682<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::ClassMethod3050()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::ClassMethod3050.12681()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method7<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method7.12680<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
castclass class G2_C836`2<class BaseClass1,class BaseClass1>
ldloc.0
ldvirtftn instance string class G2_C836`2<class BaseClass1,class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.12676()"
ldstr "class G2_C836`2<class BaseClass1,class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method4.MI.12677()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method5.12678()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldloc.0
ldloc.0
ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>()
calli default string(class G2_C836`2<class BaseClass1,class BaseClass1>)
ldstr "G2_C836::Method6.12679<System.Object>()"
ldstr "class IBase1`1<class BaseClass1> on type class G2_C836`2<class BaseClass1,class BaseClass1>"
call void [TestFramework]TestFramework::MethodCallTest(string,string,string)
ldstr "========================================================================\n\n"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
.method public hidebysig static int32 Main() cil managed
{
.custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = (
01 00 00 00
)
.entrypoint
.maxstack 10
call void Generated1447::MethodCallingTest()
call void Generated1447::ConstrainedCallsTest()
call void Generated1447::StructConstrainedInterfaceCallsTest()
call void Generated1447::CalliTest()
ldc.i4 100
ret
}
}
| -1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.